* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a227;
    --gold-light: #e8d48b;
    --gold-dark: #a68520;
    --black: #0d0d0d;
    --black-light: #1a1a1a;
    --black-card: #141414;
    --gray: #888;
    --gray-light: #ccc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #c9a227 0%, #e8d48b 50%, #c9a227 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    color: var(--gray-light);
    background: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(13, 13, 13, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.js-ready .logo-img {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.7));
}

.js-ready .logo-img.logo-animated {
    animation: logoEntrance 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js-ready .logo-img.logo-glow {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: logoPulse 2s ease-in-out infinite alternate;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
        filter: drop-shadow(0 0 0px rgba(201, 162, 39, 0));
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
        filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.8));
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.4));
    }
}

@keyframes logoPulse {
    0% {
        filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.7));
    }
}

.logo-img-footer {
    height: 110px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-light);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.nav-links a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-facebook {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-facebook:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.js-ready .hero-badge {
    opacity: 0;
}

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--gold);
    min-height: clamp(110px, 22vw, 210px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.js-ready .hero-title {
    opacity: 0;
}

.js-ready .hero-title.typing-active {
    opacity: 1;
}

.typing-text {
    display: inline;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: clamp(48px, 10vw, 96px);
    background: var(--gold);
    margin-left: 5px;
    vertical-align: middle;
    opacity: 0;
}

.typing-cursor.active {
    opacity: 1;
    animation: cursorBlink 0.7s infinite;
}

.typing-cursor.hide {
    animation: cursorFadeOut 0.5s ease forwards;
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes cursorFadeOut {
    to {
        opacity: 0;
    }
}

.hero-title.typing-complete {
    animation: titleGlow 2s ease-in-out forwards;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 0px rgba(201, 162, 39, 0));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(201, 162, 39, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.3));
    }
}

.hero-highlight {
    display: block;
    font-style: italic;
}

.hero-tagline-main {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 300;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--gold-light);
}

.js-ready .hero-tagline-main {
    opacity: 0;
}

.hero-desc {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 35px;
    color: var(--gray-light);
}

.js-ready .hero-desc {
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.js-ready .hero-btns {
    opacity: 0;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.js-ready .hero-stats {
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-light);
}

.stat-divider {
    width: 1px;
    background: rgba(201, 162, 39, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Marquee */
.marquee-section {
    background: var(--black-light);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.marquee {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    color: var(--gold-light);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.marquee-dot {
    color: var(--gold);
}

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

/* Collections */
.collections {
    padding: 80px 0;
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 8px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-desc {
    font-size: 18px;
    color: var(--gray);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
    border: 1px solid rgba(201, 162, 39, 0.1);
    will-change: transform;
}

.collection-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.3);
}

.card-large {
    grid-row: span 2;
}

.card-image {
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-content {
    text-align: center;
    color: var(--white);
    padding: 30px;
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--gold);
}

.card-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--gray-light);
}

.card-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.card-link:hover {
    background: var(--gold-light);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
}

/* Features */
.features {
    padding: 60px 0;
    background: var(--black-light);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid rgba(201, 162, 39, 0.1);
    background: var(--black-card);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(201, 162, 39, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
}

/* Products */
.products {
    padding: 80px 0;
    background: var(--black);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--black-card);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(201, 162, 39, 0.1);
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.1);
}

.product-image {
    height: 300px;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.2;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background: var(--gold);
    color: var(--black);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.new {
    background: var(--gold);
}

.product-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.product-action-btn {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-action-btn:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.product-category {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

.price-old {
    font-size: 16px;
    color: var(--gray);
    text-decoration: line-through;
}

.btn-order {
    display: block;
    text-align: center;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-order:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
}

.view-more {
    text-align: center;
}

/* About */
.about {
    padding: 80px 0;
    background: var(--black-light);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-left {
    text-align: left;
}

.about-text {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-light);
}

.about-feature i {
    color: var(--gold);
    font-size: 20px;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-card {
    background: var(--black-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(201, 162, 39, 0.1);
    will-change: transform;
}

.about-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.1);
}

.about-card:nth-child(1) {
    grid-column: span 2;
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
}

.about-card h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.about-card p {
    font-size: 14px;
    color: var(--gray);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

.cta-content h2 {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray-light);
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--gray-light);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
    display: inline-flex;
}

.footer-brand .logo-img-footer {
    height: 110px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s;
}

.footer-brand .logo:hover .logo-img-footer {
    filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.5));
    transform: scale(1.05);
}

.footer-tagline {
    font-style: italic;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    color: var(--gray);
    font-size: 14px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
/* Motion Animations */
.js-ready .motion-hidden {
    opacity: 0;
    transform: translateY(60px);
}

.js-ready .motion-hidden-left {
    opacity: 0;
    transform: translateX(-60px);
}

.js-ready .motion-hidden-right {
    opacity: 0;
    transform: translateX(60px);
}

.js-ready .motion-hidden-scale {
    opacity: 0;
    transform: scale(0.85);
}

.hero-badge,
.hero-title,
.hero-tagline-main,
.hero-desc,
.hero-btns,
.hero-stats {
    animation: none;
}

.hero-parallax-bg {
    will-change: transform;
}

.card-shine {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 162, 39, 0.08), transparent 40%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.collection-card:hover .card-shine,
.product-card:hover .card-shine,
.feature-card:hover .card-shine {
    opacity: 1;
}

.magnetic-btn {
    transition: transform 0.2s ease;
}

.golden-glow {
    position: relative;
}

.golden-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.4s;
}

.golden-glow:hover::before {
    opacity: 0.4;
}

.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
}

.section-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal {
    overflow: hidden;
    display: inline-block;
}

.text-reveal-inner {
    display: inline-block;
    transform: translateY(100%);
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--black);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s;
        border-top: 1px solid rgba(201, 162, 39, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

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

    .card-large {
        grid-row: span 1;
    }

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

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

@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-btns {
        flex-direction: column;
    }

    .cta-btns .btn {
        width: 100%;
    }
}