/* Gallery Section Styles */
.gallery-section-custom {
    background: #fafafc;
    padding: 5rem 0;
    overflow: hidden;
}

.gallery-header-wrapper {
    text-align: center;
    margin-bottom: 3.5rem;
}

.gallery-location-tag {
    background: rgba(79, 70, 229, 0.06);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(79, 70, 229, 0.12);
    margin-bottom: 1rem;
}

.gallery-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 1rem 0;
    font-family: var(--font-heading);
}

.gallery-subtitle {
    font-size: 1.05rem;
    color: var(--dark-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.gallery-nav-btn {
    position: absolute;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.25rem;
    font-weight: bold;
    outline: none;
    user-select: none;
}

.gallery-nav-btn.prev {
    left: -1.5rem;
}

.gallery-nav-btn.next {
    right: -1.5rem;
}

.gallery-track-container {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0.25rem 1.5rem 0.25rem;
    -webkit-overflow-scrolling: touch;
    outline: none;
}

.gallery-dots-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Form Styles */
.summary-discount-row-custom {
    color: #0d9488;
    font-weight: 700;
    font-size: 0.9rem;
    border-top: 1px dashed rgba(15,23,42,0.08);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.coupon-group {
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.coupon-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
}

.coupon-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.coupon-input {
    flex-grow: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(15,23,42,0.15);
    border-radius: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    outline: none;
}

.coupon-apply-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid rgba(15,23,42,0.15);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.coupon-message-text {
    font-size: 0.75rem;
    display: block;
    margin-top: 0.35rem;
    font-weight: 600;
    text-align: left;
}

/* Footer Styles */
.footer-legal-links-custom {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.footer-legal-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: #fff;
}

.footer-copyright {
    margin-bottom: 1.5rem;
}

.footer-version {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.footer-legal-badges-custom {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.footer-badge-link {
    display: inline-block;
}

.footer-badge-img {
    max-height: 45px;
    width: auto;
    border-radius: 6px;
    filter: grayscale(1) contrast(1.1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-badge-img:hover {
    filter: none;
    opacity: 1;
}
