/* =========================================
   ADDITIONS (SAFE FILE) - NO REFACTOR
   ========================================= */

/* ---------- Home Staff Cluster ---------- */
.staff-cluster {
    display: grid;
    grid-template-rows: auto auto;
    gap: 28px;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.staff-feature {
    width: min(520px, 100%);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.staff-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 26px;
    width: min(760px, 100%);
    align-items: stretch;
}

.staff-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    min-height: 260px;
}

.staff-card__img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.staff-feature .staff-card__img {
    min-height: 320px;
}

.staff-card__name {
    position: absolute;
    inset-inline-start: 14px;
    inset-inline-end: 14px;
    bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hover: subtle, premium */
.staff-card:hover,
.staff-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 164, 92, 0.6);
    /* Gold Hover */
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

/* Mobile: Ibrahim first then vertical */
@media (max-width:768px) {
    .staff-row {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .staff-feature {
        width: 100%;
    }
}

/* ---------- About Staff Grid ---------- */
.about-staff-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
}

@media (max-width:992px) {
    .about-staff-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width:600px) {
    .about-staff-grid {
        grid-template-columns: 1fr;
    }
}

.profile-card {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 164, 92, 0.6);
    /* Gold Hover */
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.profile-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.profile-card__body {
    padding: 14px;
}

.profile-card__title {
    font-weight: 700;
    margin-bottom: 6px;
}

.profile-card__desc {
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ---------- Place Photos Grid ---------- */
.place-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 18px;
}

@media (max-width:992px) {
    .place-photos-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width:600px) {
    .place-photos-grid {
        grid-template-columns: 1fr;
    }
}

.photo-slot {
    border-radius: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    height: 220px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 16px;
    transition: transform 220ms ease, border-color 220ms ease;
}

.photo-slot:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 164, 92, 0.5);
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 22px;
    align-items: start;
}

@media (max-width:992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.map-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    min-height: 520px;
}

.map-frame iframe {
    width: 100%;
    height: 520px;
    border: 0;
    display: block;
}

.info-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    padding: 18px;
    margin-bottom: 16px;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.40);
}

/* ---------- Language Toggle ---------- */
.lang-toggle {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    transition: transform 220ms ease, border-color 220ms ease;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
}

.lang-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.20);
}

/* =========================================
   DIRECTION 2 — PROFESSIONAL + DYNAMIC STAFF CARDS
   Visual polish for Home staff cluster + About page staff grid
   ========================================= */

/* --- 1) Gradient overlay on images for depth & text readability --- */
.staff-card::after,
.staff-feature::after,
.profile-card::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 280ms ease;
}

.profile-card::before {
    height: 40%;
}

/* --- 2) Accent line above name (animates in on hover) --- */
.staff-card__name::before,
.profile-card__body::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    transition: transform 280ms ease;
    transform-origin: center;
}

/* RTL fix for accent line */
[dir="rtl"] .staff-card__name::before,
[dir="rtl"] .profile-card__body::before {
    transform: translateX(50%) scaleX(0);
}

.profile-card__body {
    position: relative;
}

.profile-card__body::before {
    top: 0;
    inset-inline-start: 14px;
    inset-inline-end: 14px;
    width: auto;
    transform: scaleX(0);
}

/* --- 3) Hover interactions (desktop only) --- */
@media (hover: hover) and (pointer: fine) {

    /* Card lift & shadow deepen */
    .staff-card:hover,
    .staff-feature:hover,
    .profile-card:hover {
        transform: translateY(-6px);
        border-color: rgba(201, 164, 92, 0.6);
        /* Gold Hover Border */
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
    }

    /* Subtle image zoom */
    .staff-card__img,
    .profile-card img {
        transition: transform 320ms ease;
    }

    .staff-card:hover .staff-card__img,
    .staff-feature:hover .staff-card__img,
    .profile-card:hover img {
        transform: scale(1.04);
    }

    /* Accent line reveal on hover */
    .staff-card:hover .staff-card__name::before,
    .staff-feature:hover .staff-card__name::before {
        transform: translateX(-50%) scaleX(1);
    }

    [dir="rtl"] .staff-card:hover .staff-card__name::before,
    [dir="rtl"] .staff-feature:hover .staff-card__name::before {
        transform: translateX(50%) scaleX(1);
    }

    .profile-card:hover .profile-card__body::before {
        transform: scaleX(1);
    }

    /* Gradient intensifies slightly on hover */
    .staff-card:hover::after,
    .staff-feature:hover::after,
    .profile-card:hover::before {
        opacity: 0.85;
    }

    /* Description opacity increase on hover */
    .profile-card:hover .profile-card__desc {
        opacity: 1;
    }
}

/* --- 4) Typography refinement --- */
.staff-card__name {
    font-weight: 700;
    letter-spacing: 0.6px;
    z-index: 2;
}

.staff-feature .staff-card__name {
    font-size: 1.1rem;
    font-weight: 700;
}

.profile-card__title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.profile-card__desc {
    opacity: 0.65;
    transition: opacity 280ms ease;
}

/* --- 5) Ensure image container clips zoom properly --- */
.staff-card,
.staff-feature,
.profile-card {
    overflow: hidden;
}

/* --- 6) Touch devices: disable hover transforms --- */
@media (hover: none) {

    .staff-card:hover,
    .staff-feature:hover,
    .profile-card:hover {
        transform: none;
        box-shadow: none;
    }

    .staff-card:hover .staff-card__img,
    .staff-feature:hover .staff-card__img,
    .profile-card:hover img {
        transform: none;
    }

    .staff-card:hover .staff-card__name::before,
    .staff-feature:hover .staff-card__name::before,
    .profile-card:hover .profile-card__body::before {
        transform: scaleX(0);
    }
}

/* =========================================
   COVERFLOW-STYLE 3D CAROUSEL
   Salon Photos section on About page
   Center card elevated, side cards tilted
   ========================================= */

/* --- Carousel wrapper --- */
.place-carousel-wrapper {
    position: relative;
    width: 100%;
    padding-block: 40px 60px;
    perspective: 1200px;
}

/* --- Horizontal scroll container --- */
.place-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: visible;
    position: relative;
    min-height: 380px;
}

/* --- Individual photo card --- */
.place-card {
    position: absolute;
    width: min(340px, 70vw);
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 400ms ease,
        box-shadow 400ms ease,
        z-index 0ms;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Gradient overlay */
.place-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    border-radius: inherit;
}

/* --- Card positions --- */
/* Center (active) card */
.place-card[data-position="0"] {
    position: relative;
    z-index: 10;
    transform: translateZ(0) scale(1);
    opacity: 1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

/* Left cards */
.place-card[data-position="-1"] {
    z-index: 5;
    transform: translateX(-70%) rotateY(25deg) scale(0.85);
    opacity: 0.7;
}

.place-card[data-position="-2"] {
    z-index: 2;
    transform: translateX(-130%) rotateY(35deg) scale(0.7);
    opacity: 0.4;
}

/* Right cards */
.place-card[data-position="1"] {
    z-index: 5;
    transform: translateX(70%) rotateY(-25deg) scale(0.85);
    opacity: 0.7;
}

.place-card[data-position="2"] {
    z-index: 2;
    transform: translateX(130%) rotateY(-35deg) scale(0.7);
    opacity: 0.4;
}

/* Hidden cards */
.place-card[data-position="hidden"] {
    opacity: 0;
    pointer-events: none;
    transform: translateX(200%) scale(0.5);
}

/* --- Navigation arrows --- */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.carousel-arrow--prev {
    inset-inline-start: 5%;
}

.carousel-arrow--next {
    inset-inline-end: 5%;
}

/* --- Dot indicators --- */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: background 200ms ease, transform 200ms ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* --- Mobile adjustments --- */
@media (max-width: 768px) {
    .place-carousel-wrapper {
        padding-block: 30px 50px;
    }

    .place-card {
        width: min(260px, 65vw);
    }

    .place-card[data-position="-1"] {
        transform: translateX(-55%) rotateY(20deg) scale(0.8);
    }

    .place-card[data-position="1"] {
        transform: translateX(55%) rotateY(-20deg) scale(0.8);
    }

    .place-card[data-position="-2"],
    .place-card[data-position="2"] {
        opacity: 0;
        pointer-events: none;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .carousel-arrow--prev {
        inset-inline-start: 2%;
    }

    .carousel-arrow--next {
        inset-inline-end: 2%;
    }
}

/* =========================================
   PRODUCT CARD VISUAL POLISH
   Fixing padding, edge proximity, and layout
   ========================================= */

/* Fix main container layout */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #141414;
    /* Slightly lighter than pure black for contrast */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Fix image container (matching mismatched class names) */
.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Fix text padding (Crucial fix for "too close to edge") */
.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Typography & Spacing */
.product-category-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.product-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
    /* Pushes footer down */
}

/* Footer & Button */
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.product-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Placeholder icon styling override */
.product-image>div {
    font-size: 50px !important;
    /* Make icons larger */
    color: rgba(255, 255, 255, 0.2) !important;
}

/* =========================================
   GLOBAL GOLD HIGHLIGHTS (STRICT #C9A45C)
   Enforcing gold interactive states everywhere
   "Everything that highlights when I touch"
   ========================================= */

/* 1. Navigation Highlights */
.nav-menu a:hover,
.nav-menu a.active {
    color: #C9A45C !important;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    background: #C9A45C !important;
    width: 100% !important;
}

/* 2. Global Selection Highlight */
::selection {
    background: #C9A45C !important;
    color: #000 !important;
    text-shadow: none !important;
}

/* 3. Booking Selection (Services, Dates, Times) */
/* Service Cards */
.service-option:hover {
    border-color: rgba(201, 164, 92, 0.5) !important;
    background: rgba(201, 164, 92, 0.02) !important;
}

.service-option.selected {
    border-color: #C9A45C !important;
    background: rgba(201, 164, 92, 0.08) !important;
}

.service-option.selected .service-check {
    background: #C9A45C !important;
    border-color: #C9A45C !important;
    color: #000 !important;
    opacity: 1 !important;
}

/* Date & Time Picker */
.date-option:hover,
.time-slot:hover {
    border-color: #C9A45C !important;
    color: #C9A45C !important;
}

.date-option.selected,
.time-slot.selected {
    background: #C9A45C !important;
    border-color: #C9A45C !important;
    color: #000 !important;
}

.date-option.selected .date-day,
.date-option.selected .date-month {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* 4. Global Button Hover Overrides */
/* Outline Buttons: Gold Text & Border */
.btn-outline:hover,
button.btn-outline:hover {
    border-color: #C9A45C !important;
    color: #C9A45C !important;
    background: rgba(201, 164, 92, 0.1) !important;
}

/* Primary Buttons: Gold Shadow or Border on Hover? */
/* User asked for highlights. A white button turning gold might be too much, 
   but a subtle gold border/shadow is good. */
.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(201, 164, 92, 0.3) !important;
    transform: translateY(-3px);
}

/* 5. Sidebar Highlights (Booking) */
.sidebar-card.highlight {
    border-color: #C9A45C !important;
}

.sidebar-card.highlight .sidebar-icon {
    color: #C9A45C !important;
}

/* 6. Form Inputs Focus */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #C9A45C !important;
}

.input-group input:focus~.input-line,
.input-group textarea:focus~.input-line {
    background: #C9A45C !important;
}

/* 7. Scrollbar (Optional Polish) */
::-webkit-scrollbar-thumb:hover {
    background: #C9A45C !important;
}

/* =========================================
   SERVICES — SECTION (STRICT LUXURY #C9A45C)
   Transformation of service list to grid
   ========================================= */



/* Service Card Container */
.service-card-pro {
    background: #1A1A1A;
    /* Elevated Surface */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Default Border */
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Subtle depth */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Hover Effects (Desktop Only) */
@media (hover: hover) and (pointer: fine) {
    .service-card-pro:hover {
        transform: translateY(-6px);
        border-color: rgba(201, 164, 92, 0.6);
        /* Gold Hover Border */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    }

    .service-card-pro:hover .btn-service-book {
        /* No solid white fill allowed */
        background: rgba(201, 164, 92, 0.08);
        color: #C9A45C;
        border-color: #C9A45C;
    }
}

/* Mobile: No hover transform */
@media (hover: none) {
    .service-card-pro:hover {
        transform: none;
    }
}

/* Card Content Area */
.service-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Icon Box */
.service-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Typography */
.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F5F5F5;
    /* Primary Text */
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.95rem;
    color: #B0B0B0;
    /* Secondary Text */
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Meta Row (Duration & Price) */
.service-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

/* Duration Chip */
.service-duration-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #B0B0B0;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 12px;
    border-radius: 100px;
    font-weight: 500;
}

.service-duration-chip svg {
    opacity: 0.7;
}

/* Price Box */
.service-price-box {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F5F5F5;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.service-price-box small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #7A7A7A;
    /* Tertiary Text */
    text-transform: uppercase;
}

/* Action Row (Button) */
.service-action-row {
    margin-top: 0;
}

.btn-service-book {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #F5F5F5;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* RTL Support for Flex layout */
html[dir="rtl"] .service-card-pro {
    text-align: right;
}

html[dir="rtl"] .service-icon-box {
    margin-left: 0;
}


/* =========================================
   PRODUCTS — DIRECTION 2 (PROFESSIONAL + DYNAMIC)
   STRICT LUXURY EDITORIAL (Gold #C9A45C)
   ========================================= */

/* Filter Tabs Styling */
.products-filter {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #B0B0B0;
    /* Secondary Text */
    padding: 10px 28px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: rgba(201, 164, 92, 0.4);
    /* Gold hint */
    color: #F5F5F5;
}

.filter-btn.active {
    background: rgba(201, 164, 92, 0.08);
    /* Minimal tint */
    color: #C9A45C;
    /* Luxury Gold */
    border-color: #C9A45C;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(201, 164, 92, 0.1);
}

/* Product Card Container */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    background: #1A1A1A;
    /* Elevated Surface */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Default Border */
    border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        border-color: rgba(201, 164, 92, 0.6);
        /* Hover Border rule */
    }
}

/* Image Spotlight & Gold Effect (Restrained) */
.product-image {
    position: relative;
    /* Subtle Gold Spotlight #C9A45C */
    background: radial-gradient(circle at center bottom, rgba(201, 164, 92, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-bottom: none;
}

/* Placeholder Centering */
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    transition: transform 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover .product-placeholder {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Category Tag - Overlay Position */
.product-category-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    /* LTR default */
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    backdrop-filter: blur(4px);
}

html[dir="rtl"] .product-category-tag {
    left: auto;
    right: 16px;
}

/* Info Section Layout */
.product-info {
    padding: 24px;
    background: #1A1A1A;
    /* Match Card Surface */
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #F5F5F5;
    /* Primary Text */
    margin-bottom: 6px;
    font-weight: 700;
}

.product-info p {
    font-size: 0.9rem;
    color: #B0B0B0;
    /* Secondary Text */
    margin-bottom: 24px;
}

/* Footer (Price + Details Button) */
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: auto;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F5F5F5;
    letter-spacing: 0.5px;
}

/* Button Styling Rules (Strict) */
.product-btn {
    padding: 8px 24px;
    background: transparent;
    /* Default Transparent */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Default Border */
    color: #F5F5F5;
    /* Default Text */
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.product-btn:hover {
    background: rgba(201, 164, 92, 0.08);
    /* Hover Background tint */
    color: #C9A45C;
    /* Hover Text */
    border-color: #C9A45C;
    /* Hover Border */
}

/* =========================================
   OFFER CARD VISUAL POLISH (STRICT #C9A45C)
   Fixing padding, headers, and buttons
   ========================================= */

/* Main Container */
.offer-card-pro {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #1A1A1A;
    /* Elevated Surface */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Default Border */
}

/* Dark Editorial Header */
.offer-card-header {
    background: rgba(255, 255, 255, 0.02);
    /* Very subtle tint */
    color: #C9A45C;
    /* Gold Accent Text */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-badge {
    color: #F5F5F5 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-weight: 700;
    font-size: 1.1rem !important;
    /* Increased from 0.6rem */
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Subtle depth */
}

.offer-discount {
    color: #C9A45C;
    font-weight: 800;
    font-size: 1.25rem;
    /* Explicitly matching scale */
    letter-spacing: 2px;
}

/* Body Content */
.offer-card-body {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

/* RTL Support for text alignment */
html[dir="rtl"] .offer-card-body {
    text-align: right;
}

/* Typography */
.offer-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #F5F5F5;
    margin-bottom: 12px;
}

.offer-card-body p {
    font-size: 0.95rem;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Footer layout */
.offer-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
}

/* Price Styling */
.offer-price {
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.offer-price .old {
    text-decoration: line-through;
    color: #7A7A7A;
    font-size: 0.9rem;
}

.offer-price .new {
    color: #F5F5F5;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Button Styling (Premium Outline) */
.btn-offer {
    padding: 8px 0;
    background: transparent;
    color: #F5F5F5;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-offer:hover {
    padding-inline-start: 10px;
    border-color: #C9A45C;
    color: #C9A45C;
}

/* =========================================
   GLOBAL GOLD HIGHLIGHTS (STRICT #C9A45C)
   Enforcing gold interactive states everywhere
   ========================================= */

/* 1. Navigation Highlights */
.nav-menu a:hover,
.nav-menu a.active {
    color: #C9A45C !important;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    background: #C9A45C !important;
    width: 100% !important;
}

/* 2. Global Selection Highlight */
::selection {
    background: #C9A45C !important;
    color: #000 !important;
    text-shadow: none !important;
}

/* 3. Booking Selection */
.service-option:hover {
    border-color: rgba(201, 164, 92, 0.5) !important;
    background: rgba(201, 164, 92, 0.02) !important;
}

.service-option.selected {
    border-color: #C9A45C !important;
    background: rgba(201, 164, 92, 0.08) !important;
}

.service-option.selected .service-check {
    background: #C9A45C !important;
    border-color: #C9A45C !important;
    color: #000 !important;
    opacity: 1 !important;
}

/* Date/Time Picker */
.date-option:hover,
.time-slot:hover {
    border-color: #C9A45C !important;
    color: #C9A45C !important;
}

.date-option.selected,
.time-slot.selected {
    background: #C9A45C !important;
    border-color: #C9A45C !important;
    color: #000 !important;
}

.date-option.selected .date-day,
.date-option.selected .date-month {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* 4. Global Button Hover */
.btn-outline:hover,
button.btn-outline:hover {
    border-color: #C9A45C !important;
    color: #C9A45C !important;
    background: rgba(201, 164, 92, 0.1) !important;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(201, 164, 92, 0.3) !important;
    transform: translateY(-3px);
}

/* 5. Sidebar Highlights */
.sidebar-card.highlight {
    border-color: #C9A45C !important;
}

.sidebar-card.highlight .sidebar-icon {
    color: #C9A45C !important;
}

/* 6. Form Inputs */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #C9A45C !important;
}

.input-group input:focus~.input-line,
.input-group textarea:focus~.input-line {
    background: #C9A45C !important;
}

/* 7. Scrollbar */
::-webkit-scrollbar-thumb:hover {
    background: #C9A45C !important;
}

/* =========================================
   PREMIUM SOCIAL MEDIA ICONS
   Modern circular icons with brand colors on hover
   ========================================= */

.footer-social {
    text-align: center;
}

.footer-social h3 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Instagram gradient */
.social-link:has(.fa-instagram):hover {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    border-color: transparent;
    color: #fff;
}

/* Facebook blue */
.social-link:has(.fa-facebook-f):hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

/* TikTok gradient */
.social-link:has(.fa-tiktok):hover {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    border-color: transparent;
    color: #fff;
}

/* WhatsApp green */
.social-link:has(.fa-whatsapp):hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

/* Fallback for browsers that don't support :has() */
@supports not selector(:has(*)) {
    .social-link:hover {
        background: #C9A45C;
        border-color: #C9A45C;
        color: #000;
    }
}

/* =========================================
   PREMIUM FOOTER LAYOUT
   Proper vertical alignment with headings above content
   ========================================= */

.footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Main Grid Container matches HTML class 'footer-content' */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    border: none !important;
}

/* Brand Section matches HTML class 'footer-logo' */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo .logo {
    margin-bottom: 0;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 320px;
}

/* Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h3,
.footer-social h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: normal;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #C9A45C;
    transform: translateX(5px);
}

[dir="rtl"] .footer-links ul li a:hover {
    transform: translateX(-5px);
}

/* Social Section */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 !important;
    padding-top: 0 !important;
}

/* .footer-social h3 style merged above */
.footer-social h3 {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Footer Bottom - Single line only */
.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

.footer-bottom::before,
.footer-bottom::after {
    display: none !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Forcefully remove any other container pseudo-elements */
.footer .container::before,
.footer .container::after,
.footer-content::before,
.footer-content::after {
    content: none !important;
    display: none !important;
    border: none !important;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links h3,
    .footer-social h3 {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links ul li a:hover {
        transform: none;
    }
}