/* Premium Diamond & Champagne Theme */
:root {
    --primary-color: #8D7B68;
    /* Warm Champagne Gold */
    --secondary-color: #FDFBF7;
    /* Radiant White Background */
    --accent-color: #D4AF37;
    /* Rich Gold Accent */
    --accent-glow: rgba(212, 175, 55, 0.4);
    /* Gold Glow */
    --light-green: #F5EFEB;
    /* Soft Rosy-Gold Block Base */
    --bg-color: #FCFAFA;
    /* Pearlescent White */
    --text-dark: #3A312B;
    /* Deep Brown/Gold Text */
    --text-light: #7A695C;
    /* Muted Champagne Text */
    --text-gold: #B68D40;
    /* Solid Gold Text */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations Core */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(253, 251, 247, 0.98);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-text span {
    font-weight: 400;
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1599643478514-4a4e062fde1f?auto=format&fit=crop&q=80');
    /* Darker dramatic jewelry aesthetic */
    background-size: cover;
    background-position: center 30%;
    z-index: 1;
    transform: scale(1.05);
    /* Soft scale for parallax feel inside */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(253, 251, 247, 0.5) 0%, rgba(253, 251, 247, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    padding: 0 2rem;
}

.eyebrow {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 1px solid transparent;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px var(--accent-glow);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    box-shadow: 0 5px 35px var(--accent-glow);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.disclaimer-chip {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    background: rgba(212, 175, 55, 0.05);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.disclaimer-chip i {
    color: var(--accent-color);
}

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    color: var(--primary-color);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 5px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Floating Leaves */
.floating-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.leaf {
    position: absolute;
    color: var(--accent-color);
    opacity: 0.2;
    animation: drift 20s linear infinite;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    font-size: 2rem;
    animation-duration: 25s;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.leaf-2 {
    top: 60%;
    right: 15%;
    font-size: 3rem;
    animation-duration: 35s;
    animation-direction: reverse;
    color: var(--accent-color);
    opacity: 0.3;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.leaf-3 {
    top: 80%;
    left: 30%;
    font-size: 1.5rem;
    animation-duration: 18s;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

/* Additional Jewels */
.leaf-4 {
    top: 15%;
    right: 25%;
    font-size: 1.2rem;
    animation-duration: 22s;
    animation-delay: -5s;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    opacity: 0.4;
}

.leaf-5 {
    top: 45%;
    left: 5%;
    font-size: 2.5rem;
    animation-duration: 40s;
    animation-direction: reverse;
    color: var(--accent-color);
    opacity: 0.15;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.leaf-6 {
    top: 75%;
    right: 5%;
    font-size: 2rem;
    animation-duration: 28s;
    animation-delay: -12s;
    filter: drop-shadow(0 0 12px var(--accent-glow));
    opacity: 0.25;
}

.leaf-7 {
    top: 35%;
    left: 45%;
    font-size: 1rem;
    animation-duration: 15s;
    color: var(--accent-color);
    opacity: 0.5;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.leaf-8 {
    top: 90%;
    left: 15%;
    font-size: 1.8rem;
    animation-duration: 32s;
    animation-direction: reverse;
    filter: drop-shadow(0 0 10px var(--accent-glow));
    opacity: 0.2;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, -100px) rotate(240deg);
    }

    100% {
        transform: translate(0, -150px) rotate(360deg);
    }
}

/* CSS Hero Intro Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: cssFadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes cssFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quote Section */
.quote-section {
    padding: 8rem 2rem;
    background-color: var(--light-green);
    /* Sage green wrap */
    text-align: center;
    position: relative;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-gold);
    margin-bottom: 1.5rem;
}

.quote-author {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Shop Section */
.shop-section {
    padding: 8rem 2rem 5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle-badge {
    display: inline-block;
    background: rgba(193, 154, 107, 0.1);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 15px rgba(212, 175, 55, 0.1);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.floral-divider {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 1.5rem;
    opacity: 0.6;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding-bottom: 1.5rem;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px var(--accent-glow);
    border-color: rgba(212, 175, 55, 0.3);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-color);
    color: var(--text-dark);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.product-details {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.price-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.offer {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.7;
}

.btn-order-now {
    display: inline-block;
    background: linear-gradient(135deg, #fff, #fdfbf7);
    color: var(--text-dark);
    border: 1px solid var(--accent-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.btn-order-now:hover {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 5px 20px var(--accent-glow);
}

/* Features Block */
.features-section {
    padding: 5rem 2rem;
    background: var(--bg-color);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    text-align: center;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-green);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--accent-glow);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer Section */
footer {
    background: #FDFBF7;
    color: var(--text-dark);
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-logo span {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-color);
}

.footer-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--accent-glow);
}

.footer-links h3,
.footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a i {
    font-size: 0.7rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--text-dark);
}

.footer-links ul li a:hover i {
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.made-with i {
    color: var(--accent-color);
}

/* Loading Box Overrides */
.loading-box {
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--light-green);
    color: var(--primary-color);
    gap: 15px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(47, 79, 47, 0.1);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--accent-color);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: #fff;
    transform: scale(1.1);
}


/* Media Queries */

/* Tablet & iPad Pro 12.9" */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

/* Standard Tablet & Large Mobile */
@media (max-width: 900px) {

    .features-grid,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .quote-text {
        font-size: 1.8rem;
    }

    .product-image {
        height: 340px;
    }
}

/* strictly Mobile Phones */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        min-height: 600px;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        /* Stack 1 column on phone */
    }

    .shop-section {
        padding: 5rem 1.5rem 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}