/* ============================================
   JEWEL NIDHI - Traditional Jewelry Website
   CSS Stylesheet
   ============================================ */

/* CSS Variables - Traditional Jewelry Colors */
:root {
    --primary-gold: #d4af37;
    --deep-gold: #b8860b;
    --rich-burgundy: #722f37;
    --cream: #f5f5dc;
    --dark-bg: #1a1a1a;
    --pure-black: #000000;
    --pure-white: #ffffff;
    --text-gray: #888888;
    --light-gray: #e0e0e0;

    /* Animation Easings */
    --custom-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --liquid-gold: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--pure-black);
    color: var(--pure-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================
   ELEGANT DIAMOND LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pure-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.diamond-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.diamond-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.diamond-path,
.inner-diamond {
    fill: none;
    stroke: var(--primary-gold);
    stroke-width: 1.5;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawDiamond 3s ease forwards;
}

.inner-diamond {
    stroke-width: 1;
    animation-delay: 0.5s;
    opacity: 0.8;
}

@keyframes drawDiamond {
    to {
        stroke-dashoffset: 0;
    }
}

.shine-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: shimmer 2s ease-in-out infinite 2s;
}

@keyframes shimmer {

    0%,
    100% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    50% {
        width: 100px;
        height: 100px;
        opacity: 0.5;
    }
}

.text-container {
    text-align: center;
    overflow: hidden;
}

.loader-brand {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 1s;
}

.loader-tagline {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 1.5s;
}

.loading-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: var(--primary-gold);
    animation: loadProgress 2.5s ease-out forwards 2s;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ============================================
   GOLD DUST PARTICLES
   ============================================ */
.gold-dust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

/* ============================================
   NAVIGATION
   ============================================ */
/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 1000;
    padding: 0.8rem 2.5rem;
    transition: all 0.4s var(--custom-expo);
    background: #000000;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 2.5rem;
    top: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 92%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pure-white);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: all 0.3s var(--custom-expo);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.icon-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--primary-gold);
    color: var(--pure-black);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.admin-btn:hover {
    background: var(--primary-gold);
    color: var(--pure-black);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--pure-white);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transition: right 0.5s var(--custom-expo);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--pure-white);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-gold);
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.5s var(--custom-expo);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.close-btn {
    color: var(--pure-white);
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-gold);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--pure-white);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-remove {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #ff4444;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-gray);
}

.empty-cart svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cart-total span:last-child {
    color: var(--primary-gold);
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-gold);
    color: var(--pure-black);
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.checkout-btn:hover {
    background: var(--deep-gold);
    transform: translateY(-2px);
}

.whatsapp-btn {
    width: 100%;
    padding: 1rem;
    background: #25D366;
    color: var(--pure-white);
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1;
    color: var(--pure-white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(100%);
}

.title-line:nth-child(1) {
    animation: revealText 1s var(--custom-expo) forwards 0.8s;
}

.title-line:nth-child(2) {
    animation: revealText 1s var(--custom-expo) forwards 1s;
    color: var(--primary-gold);
}

.title-line:nth-child(3) {
    animation: revealText 1s var(--custom-expo) forwards 1.2s;
}

@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.5s;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    transition: all 0.4s var(--custom-expo);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.8s;
}

.hero-cta:hover {
    background: var(--primary-gold);
    color: var(--pure-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2.2s;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   GOLD RATE BAR
   ============================================ */
.gold-rate-bar {
    background: linear-gradient(90deg, var(--deep-gold), var(--primary-gold), var(--deep-gold));
    padding: 0.75rem 2rem;
    position: relative;
    z-index: 10;
}

.rate-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.rate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.rate-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.7);
}

.rate-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--pure-black);
}

.rate-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '◆';
    margin: 0 1rem;
    font-size: 0.5rem;
    vertical-align: middle;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
    padding: 8rem 2rem;
    position: relative;
}

.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transform-style: preserve-3d;
    transition: transform 0.5s var(--custom-expo);
}

.category-card:nth-child(4),
.category-card:nth-child(5),
.category-card:nth-child(6) {
    grid-column: span 1;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--custom-expo);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    transition: background 0.5s ease;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
}

.category-content h3 {
    font-size: 1.75rem;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.category-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.category-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s var(--custom-expo);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.5) 60%,
            rgba(0, 0, 0, 0.2) 100%);
}

.category-card:hover .category-content h3 {
    color: var(--primary-gold);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, var(--pure-black), rgba(212, 175, 55, 0.03));
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s var(--custom-expo);
    position: relative;
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--custom-expo);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn {
    padding: 0.875rem 1.5rem;
    background: var(--primary-gold);
    color: var(--pure-black);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--custom-expo);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart-btn:hover {
    background: var(--deep-gold);
    transform: translateY(0) scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .add-to-cart-btn {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   GIFT HAMPERS SECTION
   ============================================ */
.gift-hampers {
    padding: 8rem 2rem;
    overflow: hidden;
}

.gift-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gift-content {
    padding-right: 2rem;
}

.gift-content .section-tag {
    margin-bottom: 1.5rem;
}

.gift-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--pure-white);
    margin-bottom: 1.5rem;
}

.gift-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.gift-features {
    margin-bottom: 2.5rem;
}

.gift-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.gift-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary-gold);
    color: var(--pure-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.4s var(--custom-expo);
}

.gift-cta:hover {
    background: var(--deep-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gift-image-wrapper {
    position: relative;
}

.gift-image-mask {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.gift-image {
    width: 100%;
    height: auto;
    transition: transform 0.8s var(--custom-expo);
}

.gift-image-wrapper:hover .gift-image {
    transform: scale(1.05);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.03), var(--pure-black));
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.about-content .section-title {
    margin-bottom: 2rem;
}

.about-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.4s var(--custom-expo);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.feature-card h4 {
    font-size: 1.1rem;
    color: var(--pure-white);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 8rem 2rem;
    overflow: hidden;
}

.testimonials-marquee {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-row {
    display: flex;
    gap: 2rem;
    width: fit-content;
}

.row-1 {
    animation: marqueeLeft 40s linear infinite;
}

.row-2 {
    animation: marqueeRight 40s linear infinite;
}

.testimonials-row:hover {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 400px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.4s var(--custom-expo);
}

.testimonial-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--pure-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.testimonial-card:hover {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 8rem 2rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-title {
    margin-bottom: 1.5rem;
}

.contact-desc {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--pure-white);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--pure-white);
    transition: all 0.4s var(--custom-expo);
}

.social-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--pure-black);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--pure-white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.03);
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: var(--pure-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.4s var(--custom-expo);
}

.submit-btn:hover {
    background: var(--deep-gold);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    padding: 6rem 2rem 2rem;
    background: var(--pure-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.footer-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 15vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo:hover .logo-image {
    transform: scale(1.05);
}

.footer-brand p {
    color: var(--text-gray);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
    position: relative;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: all 0.3s var(--custom-expo);
    transform: translateX(-50%);
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 1.5rem 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--custom-expo);
    animation: whatsappPulse 2s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ============================================
   PAYMENT MODAL
   ============================================ */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.payment-modal.active {
    opacity: 1;
    visibility: visible;
}

.payment-content {
    background: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s var(--custom-expo);
}

.payment-modal.active .payment-content {
    transform: scale(1);
}

.payment-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-gold);
}

.payment-content .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.payment-options {
    display: grid;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s var(--custom-expo);
}

.payment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.payment-option span {
    font-weight: 500;
    color: var(--pure-white);
}

.payment-option:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(10px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gift-container {
        grid-template-columns: 1fr;
    }

    .gift-image-wrapper {
        order: -1;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        aspect-ratio: 16/9;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .rate-container {
        flex-direction: column;
        gap: 1rem;
    }

    .rate-divider {
        width: 60px;
        height: 1px;
    }

    .testimonial-card {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .cart-sidebar {
        max-width: 100%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }


}

/* View Details Button */
.view-details-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.view-details-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.product-overlay {
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Product Card Footer & Icon View Button */
.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.product-price {
    margin-bottom: 0 !important;
    /* Override existing margin */
}

.view-details-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.view-details-icon-btn:hover {
    background: #d4af37;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.add-to-cart-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
    border-radius: 50px;
    background: #d4af37;
    color: #000;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    background: #f4d03f;
}

/* ============================================
   RESPONSIVE GRID SYSTEM
   ============================================ */

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem;
    }

    .category-layout {
        grid-template-columns: 1fr !important;
    }

    .filters-sidebar {
        /* Allow pages.css to handle layout (grid) */
        position: static;
        width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .category-hero {
        height: 50vh;
        min-height: 400px;
    }

    .category-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }

    .category-hero-content h1 {
        font-size: 2rem;
    }
}