/* ---------- CSS VARIABLES (STRICT DESIGN SYSTEM) ---------- */
:root {
    --primary: #00254E;
    --secondary: #667C95;
    --accent: #D1E8F1;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --container-max: 1200px;
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--primary);
    line-height: 1.4;
    overflow-x: hidden;
}

/* container utility */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- 1. TOP STRIP (MARQUEE BAR) ---------- */
.top-strip {
    background-color: var(--primary);
    color: var(--white);
    padding: 0 20px;
    height: 34px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.top-strip::-webkit-scrollbar {
    display: none;
}

.top-strip-left,
.top-strip-center,
.top-strip-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-strip-left i,
.top-strip-right i {
    margin-right: 5px;
    font-size: 11px;
}

.top-strip-center {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-strip a {
    color: var(--white);
    text-decoration: none;
}

/* ---------- 2. NAVBAR (3-COLUMN LAYOUT) ---------- */
.navbar-main {
    background: var(--white);
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 37, 78, 0.05);
}

.nav-desktop {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LEFT: Search input */
.nav-left {
    flex: 1;
}

.search-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--secondary);
    border-radius: 2px;
    width: 100%;
    max-width: 240px;
    background: var(--white);
    transition: var(--transition);
}

.search-wrapper i {
    color: var(--secondary);
    padding: 0 10px;
    font-size: 14px;
}

.search-wrapper input {
    border: none;
    padding: 8px 0;
    font-size: 13px;
    font-family: var(--font-body);
    background: transparent;
    width: 100%;
    outline: none;
    color: var(--primary);
}

.search-wrapper input::placeholder {
    color: var(--secondary);
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* CENTER: Logo */
.nav-center {
    text-align: center;
    flex-shrink: 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary);
    line-height: 1.2;
    text-decoration: none;
    display: inline-block;
}

.logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--secondary);
    margin-top: 2px;
}

/* RIGHT: currency + icons */
.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

/* currency dropdown (critical) */
.currency-selector {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    background: transparent;
    padding: 6px 0;
}

.currency-selector i {
    font-size: 12px;
    color: var(--secondary);
}

.currency-dropdown {
    position: absolute;
    top: 32px;
    right: 0;
    background: var(--white);
    border: 1px solid var(--accent);
    border-radius: 2px;
    min-width: 100px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.02);
    z-index: 200;
    display: none;
    overflow: hidden;
}

.currency-selector.active .currency-dropdown {
    display: block;
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    transition: background 0.2s;
    cursor: pointer;
}

.currency-option:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.currency-option img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 1px;
}

.icon-link {
    color: var(--primary);
    font-size: 18px;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.icon-link:hover {
    color: var(--secondary);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- 3. MENU BAR (HORIZONTAL) ---------- */
.menu-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 37, 78, 0.06);
}

.menu-desktop {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 42px;
    padding: 12px 20px;
    flex-wrap: wrap;
}

.menu-desktop a {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary);
    transition: var(--transition);
}

.menu-desktop a:hover {
    color: var(--secondary);
}

/* ---------- HAMBURGER + MOBILE ELEMENTS (hidden desktop) ---------- */
.mobile-hamburger,
.mobile-icons {
    display: none;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.03);
    transition: left 0.3s ease;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-right: 1px solid var(--accent);
}

.mobile-drawer.open {
    left: 0;
}

.drawer-close {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

.drawer-menu a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--accent);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.drawer-overlay.active {
    display: block;
}

/* ---------- 4. HERO SECTION (DESKTOP SPLIT) ---------- */
.hero {
    background: var(--white);
    padding: 0;
}

.hero-desktop-layout {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 540px;
    background: var(--white);
}

.hero-left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 32px 48px 20px;
}

.hero-tag {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.hero-sub {
    font-size: 16px;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 32px;
}

.btn-cta {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 3px;
    transition: var(--transition);
    width: fit-content;
}

.btn-cta:hover {
    background-color: var(--secondary);
}

.hero-right {
    flex: 0 0 60%;
   background-image: url('../img/homepage/hero-sec-optimized.webp');
    background-size: cover;
    background-position: center 30%;
    min-height: 540px;
}

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.connect-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--secondary);
    text-transform: uppercase;
    border-right: 1px solid var(--accent);
    padding-right: 16px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    color: var(--primary);
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 18px;
}

/* Hide mobile logo on desktop */
.mobile-logo {
    display: none;
}

/* SECTION 2: SHOP BY CATEGORY */
.shop-categories {
    padding: 60px 20px;
    background: var(--white);
}

.container-categories {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ROW 1: 3-column layout (DESKTOP) */
.categories-row-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    align-items: stretch;
}

/* Large category cards (Desktop only) */
.category-card-lg {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card-lg:hover {
    transform: scale(1.02);
}

.category-card-lg .card-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--accent);
}

.category-card-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card-lg:hover img {
    transform: scale(1.05);
}

/* Center Content Block */
.content-block {
    background: var(--accent);
    padding: 48px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-mini {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* Card Label (shared) */
.card-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
}

/* ROW 2: 6 equal cards (Mobile + Desktop) */
.categories-row-2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-card .card-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--accent);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

/* Hide desktop-only elements on mobile */
.desktop-only {
    display: block;
}

/* Desktop: Show 6 cards in one row */
@media (min-width: 769px) and (max-width: 1200px) {
    .categories-row-2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Large desktop: 6 cards in row */
@media (min-width: 1201px) {
    .categories-row-2 {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Hide duplicate Engagement & Wedding rings from row 2 on desktop */
@media (min-width: 769px) {

    .categories-row-2 .category-card[data-category="engagement"],
    .categories-row-2 .category-card[data-category="wedding"] {
        display: none !important;
    }
}

/* Fix desktop row 2 to show only 4 cards */
@media (min-width: 769px) and (max-width: 1200px) {
    .categories-row-2 {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
}

/* Large desktop: 4 cards in row */
@media (min-width: 1201px) {
    .categories-row-2 {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
}

/* SECTION 3: PROMO STRIP + SPLIT CTA */
.section-3 {
    padding: 60px 20px;
    background: var(--white);
}

.container-s3 {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* PART 1: PROMO STRIP */
.promo-strip {
    background: var(--primary);
    border-radius: 4px;
    padding: 28px 40px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.promo-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-content {
    text-align: left;
}

.promo-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 8px;
}

.promo-text {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--white);
    opacity: 0.92;
}

/* PART 2: SPLIT CTA SECTION */
.split-cta {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--white);
}

.split-video {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background: var(--accent);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.split-content {
    flex: 1;
    padding: 20px 0 20px 20px;
}

.split-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.split-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 36px;
    max-width: 420px;
}

.btn-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* SECTION 4: ATELIER RINGS COLLECTION */
.section-4 {
    padding: 60px 20px 70px 20px;
    background: var(--white);
}

.container-s4 {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* SLIDER CONTAINER */
.slider-container {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    cursor: grab;
    user-select: none;
}

.slider-container:active {
    cursor: grabbing;
}

.slider-container::-webkit-scrollbar {
    height: 4px;
}

.slider-container::-webkit-scrollbar-track {
    background: var(--accent);
    border-radius: 4px;
}

.slider-container::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

.product-slider {
    display: flex;
    gap: 20px;
    padding: 8px 20px 20px 20px;
    max-width: var(--container-max);
    margin: 0 auto;
}

/* PRODUCT CARD */
.product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 260px;
    background: var(--white);
    transition: transform 0.3s ease;
}

.card-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--accent);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image-wrapper img {
    transform: scale(1.03);
}

/* BADGES */
.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 2;
}

.wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.wishlist-icon i {
    color: var(--primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.wishlist-icon:hover {
    background: var(--primary);
}

.wishlist-icon:hover i {
    color: var(--white);
}

/* CARD INFO */
.card-info {
    padding: 16px 8px 8px 8px;
    text-align: center;
}

.product-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.current-price {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.old-price {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary);
    text-decoration: line-through;
}

/* CTA BUTTON */
.cta-wrapper {
    text-align: center;
    margin-top: 48px;
}

.btn-shop-all {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-shop-all:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* SECTION 5: GIFTS SECTION */
.section-5 {
    padding: 60px 20px;
    background: var(--white);
}

.container-s5 {
    max-width: var(--container-max);
    margin: 0 auto;
}

.gifts-header {
    text-align: center;
    margin-bottom: 48px;
}

.gifts-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

/* DESKTOP GRID */
.gifts-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gift-card {
    cursor: pointer;
    overflow: hidden;
}

.gift-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.gift-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gift-card:hover .gift-image-wrapper img {
    transform: scale(1.03);
}

/* Overlay Content */
.gift-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gift-card:hover .gift-overlay {
    opacity: 1;
}

.gift-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.gift-cta {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* MOBILE SLIDER - Hidden on desktop */
.mobile-slider {
    display: none;
}

.gifts-slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.gifts-slider-container::-webkit-scrollbar {
    display: none;
}

.gifts-slider-container:active {
    cursor: grabbing;
}

.gifts-slider {
    display: flex;
    gap: 12px;
    padding: 8px 0 20px 0;
}

.gift-card-slide {
    flex-shrink: 0;
    scroll-snap-align: center;
    cursor: pointer;
}

.gift-card-slide .gift-image-wrapper {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.gift-card-slide .gift-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dot Indicators */
.dot-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    width: 24px;
    border-radius: 12px;
    background: var(--primary);
}

/* SECTION 6: OUR PROMISE TO YOU */
.section-6 {
    padding: 60px 20px;
    background: var(--white);
}

.container-s6 {
    max-width: var(--container-max);
    margin: 0 auto;
}

.promise-header {
    text-align: center;
    margin-bottom: 48px;
}

.promise-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

/* DESKTOP GRID - 5 COLUMNS */
.promise-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.promise-card {
    background: var(--accent);
    padding: 32px 20px;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-4px);
}

.promise-icon {
    margin-bottom: 20px;
}

.promise-icon i {
    font-size: 32px;
    color: var(--primary);
}

.promise-card-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.promise-card-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary);
    line-height: 1.5;
}

/* MOBILE SLIDER - Hidden on desktop */
.mobile-promise-slider {
    display: none;
}

.promise-slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.promise-slider-container::-webkit-scrollbar {
    display: none;
}

.promise-slider-container:active {
    cursor: grabbing;
}

.promise-slider {
    display: flex;
    gap: 12px;
    padding: 8px 0 20px 0;
}

.promise-card-slide {
    flex-shrink: 0;
    scroll-snap-align: center;
    background: var(--accent);
    padding: 28px 20px;
    text-align: center;
    border-radius: 4px;
}

.promise-card-slide .promise-icon i {
    font-size: 32px;
    color: var(--primary);
}

.promise-card-slide .promise-card-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.promise-card-slide .promise-card-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary);
    line-height: 1.5;
}

/* Dot Indicators */
.promise-dot-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.promise-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.promise-dot.active {
    width: 24px;
    border-radius: 12px;
    background: var(--primary);
    opacity: 1;
}

/* SECTION 7: BRAND STORY / LAB GROWN MESSAGE */
.section-7 {
    padding: 60px 20px;
    background: var(--white);
}

.container-s7 {
    max-width: var(--container-max);
    margin: 0 auto;
}

.story-split {
    display: flex;
    align-items: center;
    gap: 50px;
    background: transparent;
}

/* LEFT SIDE: IMAGE */
.story-image {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    min-height: 500px;
}

.story-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.story-image:hover img {
    transform: scale(1.02);
}

/* RIGHT SIDE: CONTENT BOX */
.story-content {
    flex: 1;
    background: var(--accent);
    padding: 48px 40px;
    text-align: center;
    border-radius: 4px;
}

.story-icon {
    margin-bottom: 24px;
}

.story-icon i {
    font-size: 36px;
    color: var(--primary);
}

.story-heading {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.story-text {
    max-width: 420px;
    margin: 0 auto 32px auto;
}

.story-text p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 16px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* SECTION 8: CUSTOMER REVIEWS / TESTIMONIALS */
.section-8 {
    padding: 60px 20px;
    background: var(--white);
}

.container-s8 {
    max-width: var(--container-max);
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.reviews-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

/* DESKTOP GRID - 4 COLUMNS */
.reviews-grid {
    max-width: var(--container-max);
    margin: 0 auto 48px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 18px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 16px;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.review-stars i {
    font-size: 12px;
    color: var(--primary);
}

.review-customer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.customer-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.verified-badge {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.review-text {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: var(--secondary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-date {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--secondary);
    opacity: 0.7;
}

/* MOBILE SLIDER - Hidden on desktop */
.mobile-reviews-slider {
    display: none;
}

.reviews-slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    margin-bottom: 32px;
}

.reviews-slider-container::-webkit-scrollbar {
    display: none;
}

.reviews-slider-container:active {
    cursor: grabbing;
}

.reviews-slider {
    display: flex;
    gap: 12px;
    padding: 8px 0 8px 0;
}

.review-card-slide {
    flex-shrink: 0;
    scroll-snap-align: center;
    background: var(--white);
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 16px;
}

.review-card-slide .review-image {
    margin-bottom: 14px;
}

.review-card-slide .review-stars {
    margin-bottom: 10px;
}

.review-card-slide .review-customer {
    margin-bottom: 10px;
}

.review-card-slide .review-text {
    font-size: 12px;
    margin-bottom: 10px;
}

/* BOTTOM AREA */
.reviews-footer {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
    padding-top: 16px;
}

.rating-summary {
    margin-bottom: 24px;
}

.rating-stars {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.rating-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary);
    margin-left: 6px;
}

.reviews-cta {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.reviews-cta:hover {
    background: var(--primary);
    color: var(--white);
}

/* SECTION 9: FOOTER */
.footer {
    background: var(--accent);
    padding: 50px 20px 30px 20px;
    margin-top: 0;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* TOP STRIP */
.footer-top-strip {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 37, 78, 0.1);
    margin-bottom: 40px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--secondary);
}

/* MAIN FOOTER */
.footer-main {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

/* CIRCULAR LOGO (Desktop) */
.footer-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer-circular-logo {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.footer-logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
}

/* FOOTER COLUMNS */
.footer-columns {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-col-title h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
}

.accordion-icon {
    display: none;
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* SOCIAL + SUBSCRIBE COLUMN */
.social-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.social-icons-footer {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.social-icon-footer {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon-footer i {
    color: var(--white);
    font-size: 16px;
}

.social-icon-footer:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.subscribe-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--secondary);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 13px;
    background: var(--white);
    color: var(--primary);
    outline: none;
}

.subscribe-input::placeholder {
    color: var(--secondary);
}

.subscribe-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--secondary);
}

/* PAYMENT ICONS */
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px 0 20px 0;
    border-top: 1px solid rgba(0, 37, 78, 0.1);
    margin-bottom: 20px;
}

.payment-icons i {
    font-size: 32px;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary);
}

/* COPYRIGHT */
.copyright {
    text-align: center;
}

.copyright p {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--secondary);
}

/* ---------- 1. TOP STRIP (MARQUEE BAR) ---------- */
.top-strip {
    background-color: var(--primary);
    color: var(--white);
    padding: 0 20px;
    height: 38px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 48px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.marquee-content i {
    font-size: 12px;
    opacity: 0.9;
}

.marquee-content .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.top-strip-left,
.top-strip-center,
.top-strip-right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.top-strip a {
    color: var(--white);
    text-decoration: none;
}

/* ========== MEGA MENU - PREMIUM DROPDOWN ========== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Column Headings */
.mega-heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--accent);
}

/* Column 1 & 3 Links */
.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links li {
    margin-bottom: 14px;
}

.mega-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-links a:hover {
    color: var(--secondary);
}

.mega-icon {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.mega-links a:hover .mega-icon {
    stroke: var(--secondary);
}

/* Shop All Link */
.shop-all-link {
    display: inline-block;
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.shop-all-link:hover {
    color: var(--secondary);
}

/* Column 2 - Diamond Shapes Grid */
.shape-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}

.shape-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shape-link:hover {
    color: var(--secondary);
}

.shape-icon {
    width: 18px;
    height: 18px;
    stroke: var(--secondary);
    flex-shrink: 0;
}

.shape-link:hover .shape-icon {
    stroke: var(--primary);
}

/* Column 3 - Featured Links with Badge */
.featured-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.new-badge {
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

/* Column 4 - Featured Image */
.mega-featured-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
}

.featured-image {
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.featured-image-wrapper:hover .featured-image {
    transform: scale(1.02);
}

.featured-cta {
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
    display: block;
}

.featured-cta:hover {
    color: var(--secondary);
}

/* ========== DESKTOP TRIGGER ========== */
.menu-desktop a[href="#"]:first-child,
.menu-desktop a:contains("ENGAGEMENT RINGS") {
    position: relative;
}

/* ========== MOBILE MEGA MENU (ACCORDION) ========== */
@media (max-width: 768px) {
    .mega-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-top: none;
        box-shadow: none;
        background: transparent;
    }
    
    .mega-menu.active {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .mega-menu-container {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        gap: 24px;
    }
    
    .mega-heading {
        font-size: 13px;
        margin-bottom: 16px;
        padding-bottom: 8px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .mega-heading::after {
        content: '+';
        font-size: 18px;
        font-weight: 400;
        transition: transform 0.2s ease;
    }
    
    .mega-col.active .mega-heading::after {
        content: '−';
    }
    
    /* Hide content by default on mobile */
    .mega-links,
    .shape-grid,
    .shop-all-link,
    .featured-links,
    .mega-featured-col .featured-image-wrapper,
    .mega-featured-col .featured-cta {
        display: none;
    }
    
    .mega-col.active .mega-links,
    .mega-col.active .shape-grid,
    .mega-col.active .shop-all-link,
    .mega-col.active .featured-links,
    .mega-col.active .featured-image-wrapper,
    .mega-col.active .featured-cta {
        display: block;
    }
    
    .mega-col.active .shape-grid {
        display: grid;
    }
    
    .mega-col.active .featured-image-wrapper {
        display: block;
    }
    
    /* Show content when active */
    .mega-links {
        margin-top: 12px;
    }
    
    .mega-links li {
        margin-bottom: 12px;
    }
    
    .shape-grid {
        margin-top: 12px;
        gap: 12px;
    }
    
    .featured-image-wrapper {
        margin-top: 12px;
    }
    
    .featured-image {
        min-height: 220px;
    }
    
    .featured-cta {
        margin-top: 12px;
    }
    
    .shop-all-link {
        margin-top: 16px;
    }
    
    /* Mobile Drawer Menu adjustments */
    .drawer-menu {
        margin-bottom: 0;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .mega-menu-container {
        gap: 30px;
        padding: 40px 30px;
    }
    
    .shape-grid {
        gap: 10px;
    }
    
    .shape-link {
        font-size: 12px;
    }
}

/* Ensure mega menu is visible on hover */
.menu-bar {
    position: relative;
    z-index: 100;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========== MOBILE MEGA MENU ENHANCEMENTS ========== */
@media (max-width: 768px) {
    /* Mega menu inside drawer */
    .mega-menu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
        margin: 0;
        background: transparent;
        box-shadow: none;
        border-top: none;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none;
    }
    
    .mega-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mega menu container */
    .mega-menu-container {
        padding: 16px 12px 20px 20px;
        gap: 16px;
    }
    
    /* Column headings - touch friendly */
    .mega-heading {
        font-size: 14px;
        padding: 12px 0;
        margin-bottom: 0;
        cursor: pointer;
        user-select: none;
        transition: all 0.2s ease;
    }
    
    .mega-heading:active {
        opacity: 0.7;
    }
    
    /* Accordion content */
    .mega-links,
    .shape-grid,
    .shop-all-link,
    .featured-links,
    .mega-featured-col .featured-image-wrapper,
    .mega-featured-col .featured-cta {
        display: none;
        animation: fadeIn 0.25s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .mega-col.active .mega-links,
    .mega-col.active .shape-grid,
    .mega-col.active .shop-all-link,
    .mega-col.active .featured-links,
    .mega-col.active .featured-image-wrapper,
    .mega-col.active .featured-cta {
        display: block;
    }
    
    .mega-col.active .shape-grid {
        display: grid;
    }
    
    /* Links styling for mobile */
    .mega-links li {
        margin-bottom: 12px;
    }
    
    .mega-links a {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .mega-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Shape grid for mobile */
    .shape-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 16px;
        margin-top: 8px;
    }
    
    .shape-link {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .shape-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Featured image for mobile */
    .featured-image {
        min-height: 200px;
        border-radius: 4px;
    }
    
    .featured-cta {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .shop-all-link {
        margin-top: 12px;
        font-size: 13px;
    }
    
    /* New badge on mobile */
    .new-badge {
        font-size: 9px;
        padding: 2px 10px;
    }
    
    /* Smooth scrolling for mobile drawer */
    .mobile-drawer {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .mega-menu-container {
        padding: 12px 8px 16px 16px;
        gap: 12px;
    }
    
    .mega-heading {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .mega-links a {
        font-size: 13px;
    }
    
    .shape-grid {
        gap: 10px 12px;
    }
    
    .shape-link {
        font-size: 12px;
    }
    
    .featured-image {
        min-height: 160px;
    }
}

/* ========== PRECISION LUXURY DIAMOND CUT ICONS ========== */
.shape-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 28px;
}

.shape-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

.shape-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: stroke 0.25s ease;
}

.shape-link:hover {
    color: var(--secondary);
}

.shape-link:hover .shape-icon {
    stroke: var(--secondary);
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .shape-grid {
        gap: 14px 22px;
    }
    .shape-link {
        font-size: 12px;
        gap: 10px;
    }
    .shape-icon {
        width: 20px;
        height: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .shape-grid {
        gap: 12px 20px;
    }
    .shape-link {
        font-size: 12px;
        gap: 10px;
    }
    .shape-icon {
        width: 20px;
        height: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .shape-grid {
        gap: 10px 16px;
    }
    .shape-link {
        font-size: 11px;
        gap: 8px;
    }
    .shape-icon {
        width: 18px;
        height: 18px;
    }
}

/* ========== WEDDING RINGS MEGA MENU ========== */
.mega-menu-wedding {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.mega-menu-wedding.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Bottom CTA Bar */
.mega-bottom-cta {
    background: var(--accent);
    text-align: center;
    padding: 14px 20px;
    border-top: 1px solid rgba(0, 37, 78, 0.05);
    margin-top: 0;
}

.bottom-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.bottom-cta-link:hover {
    color: var(--secondary);
}

.bottom-cta-icon {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    transition: stroke 0.2s ease;
}

.bottom-cta-link:hover .bottom-cta-icon {
    stroke: var(--secondary);
}

/* ========== WEDDING RINGS MOBILE STYLES ========== */
@media (max-width: 768px) {
    .mega-menu-wedding {
        position: relative;
        top: auto;
        left: auto;
        display: none;
        border-top: none;
        box-shadow: none;
        background: transparent;
    }
    
    .mega-menu-wedding.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    .mega-menu-wedding .mega-menu-container {
        grid-template-columns: 1fr;
        padding: 16px 12px 0 20px;
        gap: 16px;
    }
    
    .mega-menu-wedding .mega-bottom-cta {
        margin-top: 16px;
        border-radius: 0;
        background: var(--accent);
    }
    
    /* Accordion for Women and Men columns */
    .mega-menu-wedding .mega-col {
        border-bottom: none;
    }
    
    .mega-menu-wedding .mega-heading {
        cursor: pointer;
        position: relative;
        margin-bottom: 0;
        padding: 12px 0;
    }
    
    .mega-menu-wedding .mega-heading::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        font-weight: 400;
        transition: transform 0.2s ease;
    }
    
    .mega-menu-wedding .mega-col.active .mega-heading::after {
        content: '−';
    }
    
    .mega-menu-wedding .mega-links {
        display: none;
        padding-bottom: 12px;
    }
    
    .mega-menu-wedding .mega-col.active .mega-links {
        display: block;
        animation: fadeIn 0.25s ease;
    }
    
    .mega-menu-wedding .featured-links {
        display: block;
    }
    
    /* Featured section on mobile - always visible */
    .mega-menu-wedding .mega-col:nth-child(3) .mega-links {
        display: block;
    }
    
    .mega-menu-wedding .mega-col:nth-child(3) .mega-heading::after {
        display: none;
    }
    
    /* Featured image on mobile */
    .mega-menu-wedding .featured-image {
        min-height: 200px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .mega-menu-wedding .mega-menu-container {
        padding: 12px 8px 0 16px;
    }
    
    .bottom-cta-link {
        font-size: 11px;
        gap: 8px;
    }
    
    .bottom-cta-icon {
        width: 14px;
        height: 14px;
    }
}

/* ========== MOBILE RESPONSIVE MEGA MENUS ========== */
@media (max-width: 768px) {
    
    /* Both mega menus in mobile drawer */
    .mega-menu,
    .mega-menu-wedding {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-top: none;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none;
    }
    
    .mega-menu.active,
    .mega-menu-wedding.active {
        display: block;
        animation: mobileSlideDown 0.3s ease;
    }
    
    @keyframes mobileSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mega menu container */
    .mega-menu-container {
        display: flex;
        flex-direction: column;
        padding: 16px 12px 20px 20px !important;
        gap: 20px !important;
    }
    
    /* Each column as accordion */
    .mega-col {
        border-bottom: 1px solid rgba(0, 37, 78, 0.08);
        margin-bottom: 0;
    }
    
    .mega-col:last-child {
        border-bottom: none;
    }
    
    /* Headings as tap targets */
    .mega-heading {
        font-size: 14px !important;
        font-weight: 600 !important;
        letter-spacing: 1px !important;
        padding: 14px 0 !important;
        margin: 0 !important;
        cursor: pointer;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: relative;
        background: transparent;
        border-bottom: none;
    }
    
    .mega-heading::after {
        content: '+';
        font-size: 18px;
        font-weight: 400;
        color: var(--primary);
        transition: transform 0.2s ease;
    }
    
    .mega-col.active .mega-heading::after {
        content: '−';
    }
    
    /* Hide content by default */
    .mega-links,
    .shape-grid,
    .shop-all-link,
    .featured-links,
    .mega-featured-col .featured-image-wrapper,
    .mega-featured-col .featured-cta {
        display: none;
    }
    
    /* Show when active */
    .mega-col.active .mega-links,
    .mega-col.active .shape-grid,
    .mega-col.active .shop-all-link,
    .mega-col.active .featured-links,
    .mega-col.active .featured-image-wrapper,
    .mega-col.active .featured-cta {
        display: block;
    }
    
    .mega-col.active .shape-grid {
        display: grid;
    }
    
    .mega-col.active .featured-image-wrapper {
        display: block;
    }
    
    /* Links styling - touch friendly */
    .mega-links {
        padding: 8px 0 12px 0;
    }
    
    .mega-links li {
        margin-bottom: 12px;
    }
    
    .mega-links li:last-child {
        margin-bottom: 0;
    }
    
    .mega-links a {
        font-size: 14px !important;
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .mega-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Shop all link */
    .shop-all-link {
        margin: 8px 0 12px 0;
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
    }
    
    /* Diamond shapes grid - 2 columns */
    .shape-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px 20px !important;
        padding: 8px 0 12px 0;
    }
    
    .shape-link {
        font-size: 13px !important;
        padding: 6px 0;
        gap: 10px;
    }
    
    .shape-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Featured section - always visible? No, make it accordion too */
    .mega-col:nth-child(3) .mega-heading::after {
        display: block !important;
    }
    
    .mega-col:nth-child(3) .featured-links {
        display: none;
    }
    
    .mega-col:nth-child(3).active .featured-links {
        display: block;
    }
    
    /* New badge on mobile */
    .new-badge {
        font-size: 9px;
        padding: 3px 10px;
        margin-left: 8px;
    }
    
    /* Featured image */
    .mega-featured-col .featured-image-wrapper {
        margin: 8px 0 0 0;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .featured-image {
        width: 100%;
        height: auto;
        min-height: 180px;
        object-fit: cover;
    }
    
    .featured-cta {
        margin: 12px 0 8px 0;
        font-size: 13px;
        text-align: center;
        display: block;
    }
    
    /* WEDDING MEGA MENU SPECIFIC */
    .mega-menu-wedding .mega-bottom-cta {
        margin-top: 16px;
        padding: 14px 16px;
        background: var(--accent);
        border-radius: 4px;
        text-align: center;
    }
    
    .bottom-cta-link {
        font-size: 13px;
        font-weight: 600;
        gap: 10px;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }
    
    .bottom-cta-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Women and Men sections in wedding menu */
    .mega-menu-wedding .mega-col .mega-heading {
        font-size: 14px !important;
    }
    
    /* Ensure all columns work as accordion */
    .mega-menu-wedding .mega-col .mega-links {
        display: none;
    }
    
    .mega-menu-wedding .mega-col.active .mega-links {
        display: block;
    }
    
    /* Featured column in wedding menu */
    .mega-menu-wedding .mega-col:nth-child(3) .featured-links {
        display: none;
    }
    
    .mega-menu-wedding .mega-col:nth-child(3).active .featured-links {
        display: block;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .mega-menu-container {
        padding: 12px 8px 16px 16px !important;
        gap: 16px !important;
    }
    
    .mega-heading {
        font-size: 13px !important;
        padding: 12px 0 !important;
    }
    
    .mega-links a {
        font-size: 13px !important;
        padding: 6px 0;
    }
    
    .shape-grid {
        gap: 10px 16px !important;
    }
    
    .shape-link {
        font-size: 12px !important;
    }
    
    .shape-icon {
        width: 16px;
        height: 16px;
    }
    
    .featured-image {
        min-height: 150px;
    }
    
    .bottom-cta-link {
        font-size: 12px;
    }
}

/* ========== FINE JEWELRY MEGA MENU ========== */
.mega-menu-finejewelry {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 997;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.mega-menu-finejewelry.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Jewelry specific icon styles */
.jewelry-links .mega-icon {
    stroke: #667C95;
    transition: stroke 0.2s ease;
}

.jewelry-links a:hover .mega-icon {
    stroke: var(--primary);
}

/* Style links spacing */
.style-links li,
.gifts-links li {
    margin-bottom: 14px;
}

.style-links li:last-child,
.gifts-links li:last-child {
    margin-bottom: 0;
}

/* ========== FINE JEWELRY MOBILE STYLES ========== */
@media (max-width: 768px) {
    .mega-menu-finejewelry {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
        margin: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-top: none;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none;
    }
    
    .mega-menu-finejewelry.active {
        display: block;
        animation: mobileSlideDown 0.3s ease;
    }
    
    .mega-menu-finejewelry .mega-menu-container {
        flex-direction: column;
        padding: 16px 12px 20px 20px !important;
        gap: 20px !important;
    }
    
    .mega-menu-finejewelry .mega-col {
        border-bottom: 1px solid rgba(0, 37, 78, 0.08);
    }
    
    .mega-menu-finejewelry .mega-col:last-child {
        border-bottom: none;
    }
    
    .mega-menu-finejewelry .mega-heading {
        font-size: 14px !important;
        padding: 14px 0 !important;
        cursor: pointer;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
    
    .mega-menu-finejewelry .mega-heading::after {
        content: '+';
        font-size: 18px;
        font-weight: 400;
    }
    
    .mega-menu-finejewelry .mega-col.active .mega-heading::after {
        content: '−';
    }
    
    .mega-menu-finejewelry .mega-links,
    .mega-menu-finejewelry .featured-image-wrapper,
    .mega-menu-finejewelry .featured-cta,
    .mega-menu-finejewelry .mega-bottom-cta {
        display: none;
    }
    
    .mega-menu-finejewelry .mega-col.active .mega-links,
    .mega-menu-finejewelry .mega-col.active .featured-image-wrapper,
    .mega-menu-finejewelry .mega-col.active .featured-cta,
    .mega-menu-finejewelry .mega-col.active .mega-bottom-cta {
        display: block;
    }
    
    .mega-menu-finejewelry .featured-image {
        min-height: 180px;
        margin-top: 8px;
    }
    
    .mega-menu-finejewelry .mega-bottom-cta {
        margin-top: 8px;
        padding: 12px;
        background: var(--accent);
        border-radius: 4px;
        text-align: center;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .mega-menu-finejewelry .mega-menu-container {
        gap: 30px;
        padding: 40px 30px;
    }
}

/* ========== MOBILE RESPONSIVE FOR ALL MEGA MENUS ========== */
@media (max-width: 768px) {
    
    /* Make drawer scrollable */
    .mobile-drawer {
        overflow-y: auto;
        max-height: 100vh;
        padding-bottom: 30px;
    }
    
    .drawer-menu {
        flex: none;
        padding-bottom: 20px;
    }
    
    /* Reset all mega menus for mobile */
    .mega-menu,
    .mega-menu-wedding,
    .mega-menu-finejewelry {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
        margin: 0;
        margin-top: 8px;
        margin-bottom: 8px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-top: none;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none;
        z-index: 1;
    }
    
    .mega-menu.active,
    .mega-menu-wedding.active,
    .mega-menu-finejewelry.active {
        display: block;
        animation: mobileSlideDown 0.25s ease;
    }
    
    @keyframes mobileSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mega menu container */
    .mega-menu-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 12px 12px 16px 20px !important;
        gap: 16px !important;
    }
    
    /* Each column as accordion */
    .mega-col {
        border-bottom: 1px solid rgba(0, 37, 78, 0.08);
        margin-bottom: 0;
        overflow: hidden;
    }
    
    .mega-col:last-child {
        border-bottom: none;
    }
    
    /* Headings as tap targets */
    .mega-heading {
        font-size: 13px !important;
        font-weight: 600 !important;
        letter-spacing: 1px !important;
        padding: 12px 0 !important;
        margin: 0 !important;
        cursor: pointer;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: relative;
        background: transparent;
        border-bottom: none;
        color: var(--primary);
    }
    
    .mega-heading::after {
        content: '+';
        font-size: 16px;
        font-weight: 400;
        color: var(--primary);
        transition: transform 0.2s ease;
    }
    
    .mega-col.active .mega-heading::after {
        content: '−';
    }
    
    /* Hide content by default */
    .mega-links,
    .shape-grid,
    .shop-all-link,
    .featured-links,
    .style-links,
    .gifts-links,
    .jewelry-links,
    .mega-featured-col .featured-image-wrapper,
    .mega-featured-col .featured-cta,
    .mega-bottom-cta {
        display: none;
    }
    
    /* Show when active */
    .mega-col.active .mega-links,
    .mega-col.active .shape-grid,
    .mega-col.active .shop-all-link,
    .mega-col.active .featured-links,
    .mega-col.active .style-links,
    .mega-col.active .gifts-links,
    .mega-col.active .jewelry-links,
    .mega-col.active .featured-image-wrapper,
    .mega-col.active .featured-cta,
    .mega-col.active .mega-bottom-cta {
        display: block;
    }
    
    .mega-col.active .shape-grid {
        display: grid;
    }
    
    .mega-col.active .featured-image-wrapper {
        display: block;
    }
    
    /* Links styling - touch friendly */
    .mega-links {
        padding: 8px 0 12px 0;
    }
    
    .mega-links li {
        margin-bottom: 12px;
    }
    
    .mega-links li:last-child {
        margin-bottom: 0;
    }
    
    .mega-links a {
        font-size: 13px !important;
        padding: 6px 0;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--secondary);
    }
    
    .mega-links a:hover {
        color: var(--primary);
    }
    
    .mega-icon {
        width: 18px;
        height: 18px;
        stroke: var(--secondary);
    }
    
    .mega-links a:hover .mega-icon {
        stroke: var(--primary);
    }
    
    /* Shop all link */
    .shop-all-link {
        margin: 4px 0 12px 0;
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
    }
    
    /* Diamond shapes grid - 2 columns */
    .shape-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px 16px !important;
        padding: 8px 0 12px 0;
    }
    
    .shape-link {
        font-size: 12px !important;
        padding: 4px 0;
        gap: 8px;
        color: var(--secondary);
    }
    
    .shape-icon {
        width: 16px;
        height: 16px;
        stroke: var(--secondary);
    }
    
    .shape-link:hover {
        color: var(--primary);
    }
    
    .shape-link:hover .shape-icon {
        stroke: var(--primary);
    }
    
    /* New badge */
    .new-badge {
        font-size: 8px;
        padding: 2px 8px;
        margin-left: 8px;
        background: var(--primary);
        color: var(--white);
        border-radius: 12px;
    }
    
    /* Featured image */
    .featured-image-wrapper {
        margin: 8px 0 0 0;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .featured-image {
        width: 100%;
        height: auto;
        min-height: 160px;
        object-fit: cover;
    }
    
    .featured-cta {
        margin: 12px 0 8px 0;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        display: block;
        color: var(--primary);
    }
    
    /* Bottom CTA */
    .mega-bottom-cta {
        margin-top: 16px;
        margin-bottom: 8px;
        padding: 12px 16px;
        background: var(--accent);
        border-radius: 4px;
        text-align: center;
    }
    
    .bottom-cta-link {
        font-size: 12px;
        font-weight: 600;
        gap: 8px;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        color: var(--primary);
    }
    
    .bottom-cta-icon {
        width: 14px;
        height: 14px;
        stroke: var(--primary);
    }
    
    /* Specific styles for Wedding menu bottom CTA */
    .mega-menu-wedding .mega-bottom-cta {
        margin-top: 0;
    }
    
    /* Jewelry icons specific */
    .jewelry-links .mega-icon {
        stroke: var(--secondary);
    }
    
    .jewelry-links a:hover .mega-icon {
        stroke: var(--primary);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .mega-menu-container {
        padding: 10px 8px 12px 16px !important;
        gap: 12px !important;
    }
    
    .mega-heading {
        font-size: 12px !important;
        padding: 10px 0 !important;
    }
    
    .mega-links a {
        font-size: 12px !important;
        gap: 10px;
    }
    
    .mega-icon {
        width: 16px;
        height: 16px;
    }
    
    .shape-grid {
        gap: 8px 12px !important;
    }
    
    .shape-link {
        font-size: 11px !important;
    }
    
    .shape-icon {
        width: 14px;
        height: 14px;
    }
    
    .featured-image {
        min-height: 140px;
    }
    
    .bottom-cta-link {
        font-size: 11px;
    }
}


/* ========== FOOTER LOGO WITH ZOOM & RESPONSIVE ========== */

/* LEFT SIDE: CIRCULAR LOGO (Desktop & Mobile Centered) */
.footer-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

/* Circular Logo Container */
.footer-circular-logo {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
}

/* Zoom Effect on Hover */
.footer-circular-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 37, 78, 0.15);
}

/* Glowing Ring Animation */
.footer-circular-logo::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-circular-logo:hover::before {
    opacity: 1;
}

/* Logo Image */
.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* Image Zoom on Hover */
.footer-circular-logo:hover .footer-logo-img {
    transform: scale(1.1) rotate(-2deg);
}

/* Subtle Pulse Animation on Page Load */
@keyframes logoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.footer-circular-logo {
    animation: logoPulse 2s ease-in-out 1;
}

/* ========== RESPONSIVE SIZING ========== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .footer-circular-logo {
        width: 120px;
        height: 120px;
    }
    .footer-logo-img {
        width: 85px;
        height: 85px;
    }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .footer-circular-logo {
        width: 100px;
        height: 100px;
    }
    .footer-logo-img {
        width: 70px;
        height: 70px;
    }
}

/* Tablet (769px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .footer-circular-logo {
        width: 90px;
        height: 90px;
    }
    .footer-logo-img {
        width: 60px;
        height: 60px;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .footer-circular-logo {
        width: 110px;
        height: 110px;
    }
    .footer-logo-img {
        width: 75px;
        height: 75px;
    }
    .footer-circular-logo:hover {
        transform: scale(1.05);
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .footer-circular-logo {
        width: 100px;
        height: 100px;
    }
    .footer-logo-img {
        width: 65px;
        height: 65px;
    }
    .footer-circular-logo:hover {
        transform: scale(1.04);
    }
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
    .footer-circular-logo {
        width: 85px;
        height: 85px;
    }
    .footer-logo-img {
        width: 55px;
        height: 55px;
    }
}

/* ========== TOUCH DEVICE OPTIMIZATION ========== */
@media (hover: none) and (pointer: coarse) {
    .footer-circular-logo:active {
        transform: scale(0.95);
        box-shadow: 0 2px 10px rgba(0, 37, 78, 0.1);
    }
    
    .footer-circular-logo:active .footer-logo-img {
        transform: scale(0.95);
    }
    
    .footer-circular-logo::before {
        display: none;
    }
}

/* ========== REDUCED MOTION PREFERENCE ========== */
@media (prefers-reduced-motion: reduce) {
    .footer-circular-logo {
        animation: none;
        transition: none;
    }
    
    .footer-circular-logo:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .footer-circular-logo:hover .footer-logo-img {
        transform: none;
    }
    
    .footer-circular-logo::before {
        display: none;
    }
}

/* ========== DARK MODE SUPPORT ========== */
@media (prefers-color-scheme: dark) {
    .footer-circular-logo {
        background: #1a1a2e;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .footer-circular-logo:hover {
        box-shadow: 0 8px 30px rgba(0, 37, 78, 0.3);
    }
}