:root {
    --gold: #c5a059;
    --dark-bg: #050505;
    --card-bg: #0e0e0e;
    --text-gray: rgba(255, 255, 255, 0.7);
    --transition: 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    height: 80px;
    display: flex;
    align-items: center;
    /* position: absolute; */
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    
     position: fixed;
  
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-icon .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
/* User */
.user-icon {
    color:white;

    font-size: 18px;
    
}

.user-icon:hover {
    color: var(--gold);

    
}


/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .sub-title {
    color: var(--gold);
    letter-spacing: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(45px, 7vw, 80px);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    transition: var(--transition);
    border: none;
}

.btn-explore:hover {
    background: #fff;
    transform: translateY(-5px);
}

.gold-text {
    color: var(--gold);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 50px;
    align-items: stretch;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img {
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card:hover {
    transform: scale(1.1);
    border: var(--gold) solid 1px;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
}

.add-to-cart:hover {
    background: var(--gold);
    color: #000;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: #0c0c0c;
    z-index: 2000;
    padding: 30px;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}

.cart-drawer.open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

#close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    border-bottom: 1px solid #111;
    padding-bottom: 15px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.cart-footer {
    border-top: 1px solid #222;
    padding-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* Sections Styling */
.section-header {
    text-align: center;
    padding-top: 80px;
    margin-bottom: 40px;
}

.sub-heading {
    color: var(--gold);
    letter-spacing: 5px;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
}

/* Heritage Banner */
.heritage-banner {
    position: relative;
    height: 600px;
    margin-top: 80px;
    background: url('images/luxury-jewellery-display.webp') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.heritage-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}

.banner-sub {
    color: var(--gold);
    letter-spacing: 6px;
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(35px, 6vw, 65px);
    color: #fff;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2;
}

.banner-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    transition: all 0.4s ease;
    background: transparent;
}

.banner-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.btn-arrow {
    margin-left: 15px;
    transition: 0.3s;
}

/* Testimonials */
.testimonials {
    background: #050505;
    padding: 120px 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #0e0e0e;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.1;
}

.stars {
    color: var(--gold);
    margin-bottom: 25px;
    letter-spacing: 5px;
    font-size: 14px;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.client-name {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
}

.client-name::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 10px auto 0;
    opacity: 0.5;
}

/* Footer */
footer {
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0e0e0e;
}

.newsletter-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 400;
}

.newsletter-desc {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 30px;
    font-weight: 300;
}

.subscribe-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    border-bottom: 1px solid var(--gold);
}

.subscribe-form input {
    flex: 1;
    padding: 15px 0;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.subscribe-form button {
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-form button:hover {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-top: 20px;
    max-width: 280px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    font-size: 20px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Shop Page */
.shop-page header {
    position: fixed;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.shop-page main {
    padding-top: 50px;
    padding-bottom: 100px;
}

.shop-page .section-header {
    margin-bottom: 60px;
    text-align: center;
}

.shop-page .main-heading {
    font-size: 48px;
    letter-spacing: 2px;
    margin-top: 10px;
}

.shop-page .product-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.shop-page .product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#products-container p {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.shop-page .add-to-cart {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    letter-spacing: 2px;
    font-size: 12px;
    padding: 15px;
}

.shop-page .add-to-cart:hover {
    background: var(--gold);
    color: #000;
}


