@import url(https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap);

/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --color-primary: #0F3D3E;
    /* Deep Forest Green */
    --color-primary-dark: #0A2A2B;
    --color-accent: #CFAA56;
    /* Luxurious Gold */
    --color-accent-light: #E6C87C;
    --color-bg: #F8FDF9;
    /* Very Light Mint/White */
    --color-surface: #FFFFFF;
    --color-text-main: #1A3C3D;
    /* Dark Green-Grey */
    --color-text-light: #6B8586;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-sm: 0 4px 6px rgba(15, 61, 62, 0.05);
    --shadow-md: 0 10px 30px rgba(15, 61, 62, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 61, 62, 0.15);

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* =========================================
   2. TYPOGRAPHY & UTILITIES
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.main-heading {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.sub-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 5px;
    /* Reduced margin */
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    /* Reduced from 60px */
}

.divider-wrapper {
    margin: 15px auto;
    width: 200px;
    /* Adjusted size */
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-accent);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(207, 170, 86, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-surface);
    transform: translateY(-2px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   3. ANIMATIONS
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* =========================================
   4. HEADER
   ========================================= */
/* =========================================
   4. HEADER
   ========================================= */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    /* Remove padding */
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 61, 62, 0.05);
}

.top-header {
    background: linear-gradient(to right, #05191a, #0F3D3E, #05191a);
    padding: 8px 0;
    color: var(--color-accent);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(207, 170, 86, 0.2);
}

.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    /* Aligns contact to left */
}

.top-center {
    flex: 2;
    text-align: center;
}

.shine-text {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    /* Shine Animation */
    background: linear-gradient(to right, #bf953f 0%, #fcf6ba 50%, #bf953f 100%);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.top-socials {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.top-social-icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.top-social-icon:hover {
    color: var(--color-accent);
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(207, 170, 86, 0.5));
}

.header-inner {
    padding: 10px 0;
    /* Reduced padding slightly */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /* Luxury Gold Border */
    border: 1px solid var(--color-accent);
    background: #fff;
    /* Gold Icon */
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(207, 170, 86, 0.2);
}

.action-btn:hover {
    background: var(--color-accent);
    color: #fff;
    /* White icon on gold bg */
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(207, 170, 86, 0.4);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}




.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    display: block;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-primary);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mega Menu Fixes */
.has-dropdown {
    position: static !important;
    /* Key for full width */
}

/* Add a bridge to prevent gap issues */
.main-nav>ul>li {
    position: relative;
    /* Clean implementation without layout hacks */
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    /* Positions exactly below the header container */
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    z-index: 1100;
    border-top: 3px solid var(--color-accent);
}

/* 
   ROBUST HOVER BRIDGE:
   Create an invisible area above the menu to catch the cursor 
   as it leaves the nav item. This bridges the gap caused by header padding.
*/
.mega-menu::before {
    content: '';
    position: absolute;
    top: -50px;
    /* Extends 50px upwards to catch the cursor */
    left: 0;
    width: 100%;
    height: 50px;
    background: transparent;
    z-index: 1101;
}

.main-nav li:hover .mega-menu {
    display: block;
    animation: fadeUp 0.3s ease-out forwards;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
}

.mega-heading {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

/* Category Grid */
.mega-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mega-cat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text-main) !important;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.mega-cat-item:hover {
    transform: translateX(5px);
    color: var(--color-accent) !important;
}

.cat-icon-small {
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

.mega-cat-item:hover .cat-icon-small {
    opacity: 1;
    filter: invert(56%) sepia(35%) saturate(632%) hue-rotate(359deg) brightness(92%) contrast(87%);
    /* approximate gold */
}

/* Latest Products Grid */
.mega-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.mega-prod-item {
    text-align: center;
}

.mega-prod-img {
    background: #F8FDF9;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.mega-prod-item:hover .mega-prod-img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.mega-prod-code {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
}

/* Featured Column */
.featured-column {
    height: 100%;
}

.mega-featured-img {
    position: relative;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
    border-radius: 4px;
}

.mega-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mega-featured-img:hover img {
    transform: scale(1.05);
}

.mega-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Gold Price Info */
.gold-price-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(207, 170, 86, 0.1);
    /* Light gold bg */
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid rgba(207, 170, 86, 0.3);
}

.price-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.date-label {
    font-size: 0.7rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.price-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    /* Background image moved to inline style in welcome.blade.php */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Green & Gold Gradient Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(15, 61, 62, 0.9) 0%,
            rgba(15, 61, 62, 0.7) 40%,
            rgba(15, 61, 62, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
    padding-left: 20px;
    /* Slight offset */
}

.hero-subtitle {
    display: block;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--color-accent);
    /* Highlight "Collection" or "Gold" */
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* =========================================
   6. SECTIONS COMMON
   ========================================= */
section {
    padding: 100px 0;
}

/* =========================================
   7. LATEST COLLECTIONS (Cards)
   ========================================= */
.collections-section {
    background-color: var(--color-bg);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.collection-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(15, 61, 62, 0.95), transparent);
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition);
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(15, 61, 62, 1), rgba(15, 61, 62, 0.6));
    transform: translateY(0);
}

.collection-logo .brand-name {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.collection-title {
    color: #fff;
    font-size: 2rem;
    margin: 10px 0;
}

.collection-subtitle {
    color: #ddd;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================================
   8. OUR JEWELLERY (Icon Grid)
   ========================================= */
.our-jewellery-section {
    background-color: #fff;
}

.jewellery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.category-card:hover {
    border-color: var(--color-accent);
    background-color: var(--color-bg);
    transform: translateY(-5px);
}

.category-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.category-card:hover .category-image {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent);
}

.category-image img {
    height: 60%;
    width: auto;
}

.category-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   9. SHOP SECTION (Modern Carousel)
   ========================================= */
.shop-section {
    background-color: var(--color-bg);
}

.shop-controls {
    position: relative;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shop-card {
    background: #fff;
    padding: 20px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(15, 61, 62, 0.05);
}

.shop-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: var(--color-accent);
}

.shop-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.shop-image img {
    max-height: 100%;
    transition: transform 0.6s ease;
}

.shop-card:hover .shop-image img {
    transform: scale(1.1);
}

.shop-info {
    text-align: center;
}

.product-code {
    display: block;
    color: var(--color-text-light);
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.view-more-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.shop-card:hover .view-more-btn {
    background-color: var(--color-primary);
    color: var(--color-accent);
}

/* Nav Buttons */
.shop-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    top: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-nav-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-accent);
}

.prev-btn {
    right: 60px;
}

.next-btn {
    right: 0;
}

.shop-pagination .dot {
    background-color: #ddd;
    width: 10px;
    height: 10px;
}

.shop-pagination .dot.active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

/* =========================================
   10. EDITORIAL SECTION
   ========================================= */
/* =========================================
   10. EDITORIAL SECTION (Modern & Vibrant)
   ========================================= */
.editorial-section {
    background-color: #fff;
    padding: 0;
    overflow: hidden;
}

.editorial-container {
    display: flex;
    min-height: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.editorial-content {
    flex: 1;
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Modern soft gradient background */
    background: linear-gradient(135deg, #FFF5F5 0%, #FFF0E6 50%, #fcfbf4 100%);
    position: relative;
    z-index: 2;
}

/* Decorative element */
.editorial-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(207, 170, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.editorial-label {
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    position: relative;
    padding-left: 50px;
}

.editorial-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.editorial-title {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    /* Gradient text effect */
    background: linear-gradient(45deg, var(--color-primary), #2c5e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.editorial-description {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.editorial-image {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.editorial-container:hover .editorial-image img {
    transform: scale(1.08);
}

/* Features with Animation */
.editorial-features {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(207, 170, 86, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: var(--color-accent);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon::after {
    opacity: 1;
    transform: scale(1);
}

.feature-icon img {
    width: 24px;
    height: 24px;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    background-color: var(--color-bg);
    width: 60px;
    /* Larger icons */
    height: 60px;
}

/* =========================================
   11. FOOTER (Dark Theme)
   ========================================= */
/* =========================================
   11. FOOTER (Premium Gold & Green)
   ========================================= */
.footer-section {
    background: linear-gradient(to bottom, #0F3D3E, #05191a);
    color: #fff;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Subtle Gold sheen overlay with movement */
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-accent) 50%,
            transparent 100%);
    background-size: 200% 100%;
    opacity: 0.8;
    animation: goldFlow 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes goldFlow {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.footer-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
}

.brand-col {
    flex: 1.5;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 45px;
}

.brand-icon {
    width: auto;
    height: 70px;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.brand-icon:hover {
    transform: scale(1.02);
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-tagline {
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
    border-left: 3px solid var(--color-accent);
    padding-left: 15px;
}

.footer-heading {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    letter-spacing: 2px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.footer-col:hover .footer-heading::after {
    width: 100%;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 15px;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(207, 170, 86, 0.3);
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -10px;
    opacity: 0;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-icon {
    display: block;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-icon:hover {
    color: var(--color-accent);
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(207, 170, 86, 0.6));
}



/* =========================================
   12. RESPONSIVENESS
   ========================================= */
/* =========================================
   12. RESPONSIVENESS
   ========================================= */
/* Mobile Menu Toggle (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-primary);
    cursor: pointer;
}

@media (max-width: 992px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: block;
        order: 1;
    }

    .logo {
        order: 2;
    }

    .header-contact {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .gold-price-info {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 15px;
        background: #fff;
        border-top: 2px solid var(--color-accent);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: var(--shadow-md);
        padding: 20px;
    }

    .main-nav.active {
        display: block;
        animation: fadeUp 0.3s forwards;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mega-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        border-top: none;
        padding-top: 10px;
    }

    .mega-menu::before {
        display: none;
        /* No bridge needed on mobile */
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .collections-grid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jewellery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .editorial-container {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
    }

    .brand-tagline {
        border-left: none;
        padding-left: 0;
        margin-top: 15px;
        border-top: 3px solid var(--color-accent);
        padding-top: 15px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }

    .footer-heading {
        margin-bottom: 20px;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }

    .payment-banner-container {
        align-items: center;
        margin-top: 20px;
    }

    .payment-banner-img {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .top-header-inner {
        flex-direction: column;
        gap: 5px;
    }

    .top-spacer {
        display: none;
    }

    .top-socials {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .collections-grid,
    .shop-grid,
    .jewellery-grid {
        grid-template-columns: 1fr;
    }

    .main-heading {
        font-size: 2rem;
    }
}

/* Refactored Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    /* Adjustable height */
    min-height: 500px;
    width: 100%;
    /* Placeholder for the user to replace with their Green Saree image */
    background-image: url('../images/editorial-spring.png');
    /* Fallback to existing nice image */
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align content to left */
    overflow: hidden;
}

/* Remove the previous gradient overlay */
.hero-section::before {
    display: none;
}

/* Ensure text is legible without a full overlay users prefer, 
   but maybe a subtle side gradient is needed if the image is busy. 
   User said "remove overlay", but text needs to be visible. 
   I will add a very subtle side shadow or rely on the image being dark enough/clear enough on the left.
   For now, strictly following "remove overlay" but adding text shadow.
*/

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
    z-index: 10;
}

.hero-text-content {
    max-width: 600px;
    /* Limit width */
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(207, 170, 86, 0.2);
    color: #F0E68C;
    /* Light Yellow */
    border: 1px solid #CFAA56;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: none;
    /* Reference shows standard case */
}

.highlight-text {
    font-family: 'Cinzel', serif;
    /* Use the elegant font for "Every Gem" */
    font-style: italic;
    color: #FFD700;
    /* Vibrant Gold/Yellow */
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn.bg-yellow {
    background-color: #FFD700;
    color: #000;
    border: none;
    font-weight: 700;
}

.btn.bg-yellow:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn.text-white {
    color: #fff;
    border-color: #fff;
}

.btn.text-white:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        justify-content: center;
        text-align: center;
    }

    .hero-text-content {
        text-align: center;
        background: rgba(0, 0, 0, 0.3);
        /* Slight visibility boost on mobile */
        padding: 20px;
        border-radius: 10px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }
}

/* Editorial Button - Modern Style */
.editorial-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--color-primary), #05191a);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
    cursor: pointer;
    border-radius: 30px;
    /* soft rounded */
}

.editorial-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-accent);
    z-index: -1;
    transition: width 0.4s ease;
}

.editorial-btn:hover {
    color: #fff;
    box-shadow: 0 10px 20px rgba(207, 170, 86, 0.3);
    transform: translateY(-3px);
}


.editorial-btn:hover::before {
    width: 100%;
}