/* Reset and Base Styles - Elegant Light Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #C5A028;
    --gold-secondary: #D4B483;
    --gold-light: #F5E8C8;
    --gold-dark: #8B6914;
    --ivory: #F7F3E9;
    --cream: #FFFEF2;
    --off-white: #FAF9F6;
    --warm-gray: #8C8C8C;
    --charcoal: #333333;
    --taupe: #7C6E65;
    --light-taupe: #A89B91;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-gold: 0 10px 30px rgba(197, 160, 40, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--charcoal);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 90px;   /* same as header height */
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--charcoal);
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--taupe);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    font-weight: 300;
}

/* Buttons */
.btn-gold, .btn-outline {
    display: inline-block;
    padding: 15px 35px;
    color: var(--gold-primary);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
    box-shadow: var(--box-shadow-gold);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 160, 40, 0.25);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
    box-shadow: var(--box-shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 160, 40, 0.25);
}

.btn-outline1 a{
    text-decoration: none;
}
.btn-outline1  {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-outline2 {
    display: inline-block;
    padding: 15px 35px;
    color: var(--gold-primary);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
    box-shadow: var(--box-shadow-gold);
}

.btn-outline2:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 160, 40, 0.25);
}

.btn-outline1 {
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-outline1:hover {
    background-color: rgba(197, 160, 40, 0.05);
    transform: translateY(-3px);
}

/* Header Styles */
.header {
    background-color: var(--ivory);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 40, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--charcoal);
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-right: 12px;
    margin-top: 5%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.logo-main {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: bolder;
    line-height: 1.2;
}
.logo-main:hover, .logo-main:active {
    color: var(--gold-primary);
}

.logo-tagline {
    font-size: 1.0rem;
    font-weight: 500;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin: 0 12px;
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 700;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.main-nav a i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-primary);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
    bottom: 0;
    left: 0;
}

/* updated one */

/* added */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--ivory);
    min-width: 220px;
    box-shadow: var(--box-shadow);
    z-index: 1;
    border-radius: var(--border-radius);
    top: 100%;
    left: 0;
    padding: 10px 0;
    border: 1px solid rgba(197, 160, 40, 0.1);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;              /* controls space between icon & text */
    padding: 12px 14px;
}

.dropdown-content a i {
    margin-right: 10px;
    color: var(--gold-primary);
}

.dropdown-content a:hover {
    background-color: rgba(197, 160, 40, 0.05);
    color: var(--gold-primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 20px;
}

.header-icons button,
.header-icons a {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.header-icons button:hover,
.header-icons a:hover {
    color: var(--gold-primary);
}

.cart-icon {
    position: relative;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--gold-primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 243, 233, 0.98);
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    font-size: 1.2rem;
    border: 1px solid var(--gold-light);
    border-radius: 50px;
    background-color: white;
    color: var(--charcoal);
    box-shadow: var(--box-shadow);
}

.search-close,
.search-submit {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover,
.search-submit:hover {
    color: var(--gold-primary);
}

.search-close {
    right: 70px;
}

.search-submit {
    right: 30px;
}

/* ===== HEADER LAYOUT FOR TABLET & MOBILE (≤ 1024px) ===== */
@media (max-width: 1024px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px 15px;
        gap: 10px;
    }
    
    /* Logo on left - first row */
    .logo {
        order: 1;
        flex: 1;
        min-width: auto;
        display: flex;
        align-items: center;
    }
    
    /* Hamburger on right - first row */
    .hamburger-btn {
        order: 2;
        margin-left: auto;
        display: flex !important;
    }
    
    /* Header icons in second row */
    .header-icons {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        border-top: 1px solid rgba(197, 160, 40, 0.1);
        padding-top: 10px;
        display: flex;
        gap: 25px;
    }
    
    /* Hide main nav by default */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, var(--ivory) 0%, #fcf8f0 100%);
        backdrop-filter: blur(10px);
        padding: 80px 30px 40px;
        z-index: 1001;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(197, 160, 40, 0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 5px;
    }
    
    .main-nav li {
        margin: 0;
        border-bottom: 1px solid rgba(197, 160, 40, 0.1);
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        padding: 18px 0;
        font-size: 1.1rem;
        color: var(--charcoal);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        color: var(--gold-primary);
        background: none;
        transform: translateX(5px);
    }
    
    /* Logo text adjustments */
    .logo-text {
        text-align:center;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-tagline {
        font-size: 0.9rem;
    }
    
    /* Price ticker adjustments */
    .price-ticker {
        font-size: 11px;
        
    }
    
    /* Body padding for header */
    body {
        padding-top: 120px;
    }
    
    /* Dropdown styles for mobile */
    .dropdown-toggle .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.9);
        border-radius: var(--border-radius);
        margin: 10px 0;
        padding: 10px 0;
        border: 1px solid var(--gold-light);
        box-shadow: none;
        animation: slideDown 0.3s ease;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--taupe);
        border-bottom: 1px solid rgba(197, 160, 40, 0.05);
    }
    
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    
    .dropdown-content a:hover {
        background: rgba(197, 160, 40, 0.05);
        color: var(--gold-primary);
        transform: none;
    }
    
    .dropdown-content a i {
        width: 25px;
        text-align: center;
        margin-right: 10px;
        font-size: 1rem;
    }
    
    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        z-index: 999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
    }
    
    /* Animation for dropdown */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Adjust hero padding for mobile header */
    .hero {
        padding-top: 140px !important;
    }
}

/* ===== DESKTOP VERSION (≥ 1025px) ===== */
@media (min-width: 1025px) {
    /* Reset header layout for desktop */
    .header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 15px 0;
    }
    
    .logo {
        order: 1;
        flex: 0 1 auto;
    }
    
    .main-nav {
        order: 2;
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        box-shadow: none;
        display: block !important;
        right: 0 !important;
    }
    
    .main-nav ul {
        flex-direction: row;
    }
    
    .main-nav li {
        margin: 0 12px;
        border-bottom: none;
    }
    
    .main-nav a {
        padding: 8px 0;
        font-size: 1rem;
    }
    
    .header-icons {
        order: 3;
        width: auto;
        margin-top: 0;
        border-top: none;
        padding-top: 0;
        justify-content: flex-end;
    }
    
    .hamburger-btn {
        display: none !important;
    }
    
    body {
        padding-top: 90px;
    }
    
    .hero {
        padding-top: 150px !important;
    }
}

/* ===== FOR VERY SMALL SCREENS (≤ 360px) ENHANCEMENTS ===== */
@media (max-width: 360px) {
    .logo-icon img {
        width: 60px;
        height: 60px;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.8rem;
    }
    
    .header-icons {
        gap: 20px;
    }
    
    .header-icons button,
    .header-icons a {
        font-size: 1.1rem;
    }
    
    .logo-text {
        margin-left: 5px;
    }
}

/* ===== PROFESSIONAL HAMBURGER MENU ===== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform-origin: center;
}

.hamburger-btn:hover .hamburger-line {
    background-color: var(--gold-primary);
}

/* Hamburger animation when active */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* For very small mobile screens */
@media (max-width: 480px) {
    .main-nav {
        width: 100%;
        max-width: none;
    }
    
    .main-nav a {
        font-size: 1.05rem;
        padding: 18px 0;
    }
    
    .dropdown-content a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* For very small screens */
@media (max-width: 360px) {
    .main-nav {
        padding: 80px 20px 40px;
    }
    
    .main-nav a {
        font-size: 1rem;
    }
    
    .hamburger-btn {
        width: 28px;
        height: 22px;
    }
}

/* ===== TABLET SPECIFIC ADJUSTMENTS (768px to 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-icons {
        gap: 30px;
    }
    
    .header-icons button,
    .header-icons a {
        font-size: 1.3rem;
    }
    
    .logo-main {
        font-size: 1.4rem;
    }
    
    .logo-tagline {
        font-size: 1rem;
    }
    
    .logo-icon img {
        width: 70px;
        height: 70px;
    }
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(197, 160, 40, 0.05) 0%, transparent 70%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--charcoal);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--taupe);
    margin-bottom: 30px;
    max-width: 500px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--taupe);
}

.feature i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-gold);
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--gold-light);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--gold-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--box-shadow-gold);
}

/* Collections Section */
.collections {
    padding: 100px 0;
    background-color: var(--off-white);
}

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

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

.collection-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 25px;
    border: 1px solid var(--gold-light);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.collection-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 243, 233, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.view-collection {
    background-color: var(--gold-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.view-collection:hover {
    background-color: var(--gold-secondary);
    transform: scale(1.05);
}

.collection-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: var(--charcoal);
}

.collection-card p {
    color: var(--taupe);
    padding: 0 15px;
}

/* Metals & Pricing Section */
.metals-pricing {
    padding: 100px 0;
    background-color: var(--ivory);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gold-light);
}

.pricing-card.featured {
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
}

.pricing-header {
    background-color: var(--gold-light);
    padding: 25px;
    border-bottom: 1px solid rgba(197, 160, 40, 0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.purity {
    display: inline-block;
    background-color: var(--gold-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-body {
    padding: 25px;
}

.current-price {
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.unit {
    color: var(--taupe);
    font-size: 1rem;
}

.price-change {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.price-change.positive {
    color: #4CAF50;
}

.price-change.negative {
    color: #F44336;
}

.price-description {
    color: var(--taupe);
    font-size: 0.95rem;
}

.pricing-info {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    border-left: 4px solid var(--gold-primary);
    box-shadow: var(--box-shadow);
}

.pricing-info i {
    color: var(--gold-primary);
    margin-right: 10px;
}

.pricing-info p {
    color: var(--taupe);
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
    background-color: var(--off-white);
}

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

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gold-light);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gold-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--charcoal);
}

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

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.original-price {
    font-size: 1rem;
    color: var(--taupe);
    text-decoration: line-through;
}

.product-rating {
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.product-weight {
    color: var(--taupe);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background-color: var(--gold-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background-color: var(--gold-secondary);
}

/* ===== ENHANCED ABOUT US SECTION ===== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--ivory) 0%, #fef9f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A028' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-container {
    position: relative;
    z-index: 2;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-title {
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.about-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-tagline {
    font-size: 1.3rem;
    color: var(--taupe);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* About Content Layout */
.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

/* Left Column - Text Content */
.about-story {
    padding-right: 40px;
}

.story-highlight {
    font-size: 1.8rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    font-style: italic;
    border-left: 4px solid var(--gold-primary);
    padding-left: 25px;
}

.story-text {
    font-size: 1.15rem;
    color: var(--taupe);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.story-text strong {
    color: var(--gold-dark);
    font-weight: 600;
}

/* Right Column - Image & Stats */
.about-visual {
    position: relative;
}

.about-main-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-gold);
    border: 1px solid var(--gold-light);
    position: relative;
}

.about-main-image img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-main-image:hover img {
    transform: scale(1.05);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gold-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--taupe);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    opacity: 0.7;
}

/* Values Section */
.about-values {
    margin: 80px 0;
}

.values-title {
    text-align: center;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 50px;
}

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

.value-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    border: 1px solid var(--gold-light);
    transition: var(--transition);
    position: relative;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--box-shadow-gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(197, 160, 40, 0.1), rgba(212, 180, 131, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--gold-primary);
    font-size: 2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
    transform: scale(1.1);
}

.value-title {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.value-description {
    color: var(--taupe);
    line-height: 1.7;
    font-size: 1rem;
}

/* Timeline */
.about-timeline {
    margin: 100px 0;
    position: relative;
}

.timeline-title {
    text-align: center;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-primary), var(--gold-light));
}

.timeline-item {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gold-light);
    position: relative;
}

.timeline-content:nth-child(odd) {
    margin-right: auto;
    margin-left: 5%;
}

.timeline-content:nth-child(even) {
    margin-left: auto;
    margin-right: 5%;
}

.timeline-year {
    position: absolute;
    top: -15px;
    background: var(--gold-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--box-shadow-gold);
}

.timeline-content:nth-child(odd) .timeline-year {
    right: -60px;
}

.timeline-content:nth-child(even) .timeline-year {
    left: -60px;
}

.timeline-content h4 {
    color: var(--charcoal);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--taupe);
    line-height: 1.6;
}

/* Craftsmanship Showcase */
.craftsmanship-showcase {
    background: white;
    border-radius: var(--border-radius);
    padding: 60px;
    margin: 80px;
    margin-left: 5%;
    margin-right: 5%;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gold-light);
    text-align: center;
}

.showcase-title {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 40px;
}

.craftsmanship-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.craft-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--box-shadow-gold);
}

.step-title {
    color: var(--charcoal);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-description {
    color: var(--taupe);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Call to Action */
.about-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(245, 232, 200, 0.8) 100%);
    border-radius: var(--border-radius);
    margin-top: 80px;
    margin-left: 5%;
    margin-right: 5%;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23C5A028' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-title {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--taupe);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.pulse-gold {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-content-wrapper {
        gap: 40px;
    }

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

@media (max-width: 992px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
    }

    .about-story {
        padding-right: 0;
        text-align: center;
    }

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

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

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

    .timeline::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .timeline-content:nth-child(odd) .timeline-year,
    .timeline-content:nth-child(even) .timeline-year {
        left: -70px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

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

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

    .craftsmanship-steps {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .craftsmanship-showcase {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .about-tagline {
        font-size: 1.1rem;
    }

    .story-highlight {
        font-size: 1.4rem;
        padding-left: 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .timeline-content {
        padding: 20px;
    }
}

/* Responsive Updates */
@media (max-width: 992px) {
    .about-stats {
        justify-content: center;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-text h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .founder-quote p {
        font-size: 1.1rem;
    }
    
    .about-image-container img {
        height: 300px;
    }
    
    .years-badge {
        width: 100px;
        height: 100px;
        padding: 20px;
    }
    
    .years-badge span:first-child {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--gold-light);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .founder-quote {
        padding: 20px;
    }
    
    .founder-quote p {
        padding-left: 10px;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--gold-light);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.contact-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.contact-card h4 {
    color: var(--charcoal);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--taupe);
    line-height: 1.8;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--gold-light);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--off-white);
    border: 1px solid var(--gold-light);
    border-radius: var(--border-radius);
    color: var(--charcoal);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background-color: white;
}

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

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--ivory);
    z-index: 1200;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--gold-light);
}

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

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1100;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--gold-light);
    background-color: white;
}

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

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--taupe);
    cursor: pointer;
    transition: var(--transition);
}

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

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

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gold-light);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 15px;
    border: 1px solid var(--gold-light);
}

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

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

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--charcoal);
}

.cart-item-price {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--gold-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--charcoal);
}

.quantity-btn:hover {
    background-color: var(--gold-primary);
    color: white;
}

.quantity {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    color: var(--charcoal);
}

.remove-item {
    background: none;
    border: none;
    color: var(--taupe);
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    color: var(--gold-primary);
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--gold-light);
    background-color: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
}

.total-price {
    color: var(--gold-primary);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-luxury {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #C5A028, #8B6914);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(197,160,40,0.35);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-luxury:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(197,160,40,0.55);
}

/* Footer */
.footer {
    background-color: var(--ivory);
    padding: 60px 0 30px;
    border-top: 1px solid var(--gold-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--charcoal);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--gold-primary);
    bottom: 0;
    left: 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--taupe);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-description {
    color: var(--taupe);
    margin: 15px 0 20px;
    line-height: 1.7;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(197, 160, 40, 0.1);
    border-radius: 50%;
    color: var(--gold-primary);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--gold-primary);
    color: white;
    transform: translateY(-5px);
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    background-color: white;
    border: 1px solid var(--gold-light);
    border-radius: var(--border-radius);
    color: var(--charcoal);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
}

.newsletter-form input::placeholder {
    color: var(--light-taupe);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--gold-light);
    color: var(--taupe);
    font-size: 0.9rem;
}

.lion-logo {
    border-radius: 10px;
}

.footer-bottom p {
    color: var(--taupe);
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .about-feature {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Wishlist Icon on Product Cards */
.product-image {
    position: relative;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    color: var(--taupe);
}

.wishlist-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.wishlist-btn.active {
    color: #ff4757;
    border-color: #ff4757;
    background-color: rgba(255, 71, 87, 0.1);
}

.wishlist-btn i {
    font-size: 1.2rem;
}

/* Wishlist Sidebar */
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--ivory);
    z-index: 1200;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--gold-light);
}

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

.wishlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1100;
    display: none;
}

.wishlist-overlay.active {
    display: block;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--gold-light);
    background-color: white;
}

.wishlist-header h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
}

.wishlist-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--taupe);
    cursor: pointer;
    transition: var(--transition);
}

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

.wishlist-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.wishlist-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gold-light);
    position: relative;
}

.wishlist-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 15px;
    border: 1px solid var(--gold-light);
}

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

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

.wishlist-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--charcoal);
    font-size: 1rem;
}

.wishlist-item-price {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.wishlist-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.remove-wishlist-item {
    position: absolute;
    top: 15px;
    right: 0;
    background: none;
    border: none;
    color: var(--taupe);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.remove-wishlist-item:hover {
    color: #ff4757;
}

.wishlist-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--taupe);
}

.wishlist-empty i {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.wishlist-empty p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.wishlist-footer {
    padding: 25px;
    border-top: 1px solid var(--gold-light);
    background-color: white;
}

/* Wishlist page indicator on header */
.wishlist-icon {
    position: relative;
    text-decoration: none;
}

.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Collection Card Wishlist Button */
.collection-image {
    position: relative;
}

.collection-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    color: var(--taupe);
    opacity: 0;
    transform: translateY(-10px);
}

.collection-card:hover .collection-wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}

.collection-wishlist-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.collection-wishlist-btn.active {
    color: #ff4757;
    border-color: #ff4757;
    background-color: rgba(255, 71, 87, 0.1);
}

/* Animation for wishlist heart */
@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.wishlist-btn.heart-beat {
    animation: heartBeat 0.5s ease;
}

/* Collection cards wishlist */
.collection-wishlist-btn.heart-beat {
    animation: heartBeat 0.5s ease;
}

.collection-wishlist-btn {
    display: none !important;
}

/*ticker*/
/* ===== LIVE PRICE TICKER ===== */
.price-ticker {
    background: linear-gradient(90deg, #8B6914, #C5A028); /* Gold gradient */
    color: white;
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
    z-index: 1001; /* Above header */
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: tickerMove 30s linear infinite;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 50px;
}

.metal-name { font-weight: 700; text-transform: uppercase; }
.metal-price { color: #FFF; font-weight: 700; }
.metal-change.up { color: #d4ffda; }
.metal-change.down { color: #ffcccc; }

/* Pricing Card Enhancements */
.location-badge {
    background: var(--gold-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: inline-block;
}

/* Add this to the .header-icons section in main.css */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Update the existing .header-icons a and button styles if needed */
.header-icons button,
.header-icons a {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add specific styles for profile icon */
.profile-icon {
    font-size: 1.3rem;
}

.profile-icon:hover {
    color: var(--gold-primary);
}

/* ===== TESTIMONIALS SLIDER SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23C5A028' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-header .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonials-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.testimonials-header p {
    font-size: 1.1rem;
    color: var(--taupe);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Testimonials Slider Container */
.testimonials-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 50px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    max-width: 900px;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gold-light);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 140px;
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    opacity: 0.2;
    line-height: 1;
    font-weight: 700;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.testimonial-quote {
    font-size: 1.25rem;
    color: var(--charcoal);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 300;
    padding-left: 20px;
    border-left: 3px solid var(--gold-primary);
}

.testimonial-rating {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-rating .fa-star {
    margin-right: 5px;
}

.rating-value {
    font-weight: 600;
    margin-left: 10px;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 5px 15px rgba(197, 160, 40, 0.2);
    position: relative;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
}

.author-city {
    font-size: 1rem;
    color: var(--taupe);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-city i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.testimonial-jewellery {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Slider Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.testimonial-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
}

.testimonial-nav-btn:hover {
    background: var(--gold-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--box-shadow-gold);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
    border-color: var(--gold-dark);
}

.testimonial-dot:hover {
    background: var(--gold-primary);
    transform: scale(1.1);
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gold-light);
    position: relative;
    z-index: 2;
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: var(--taupe);
    margin-bottom: 25px;
    font-weight: 300;
}

/* Animation for slide change */
@keyframes fadeIn {
    from {
        opacity: 0.5;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-slide.active {
    animation: fadeIn 0.5s ease;
}

/* Review Modal Styles */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.review-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.review-modal-container {
    background: var(--ivory);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.review-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--taupe);
    cursor: pointer;
    transition: var(--transition);
}

.review-modal-close:hover {
    color: var(--gold-primary);
    transform: rotate(90deg);
}

.review-header {
    text-align: center;
    margin-bottom: 30px;
}

.review-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse; /* Reverses order so 5 stars is on right but CSS selects preceding */
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: var(--gold-primary);
}

/* ================================================
   MOBILE SCROLLING FIXES
   ================================================ */

/* Fix for iOS Safari 100vh issue */
.auth-overlay,
.account-panel,
.cart-sidebar,
.wishlist-sidebar {
    height: 100vh;
    height: -webkit-fill-available;
}

/* Mobile-specific fixes */
@media (max-width: 1024px) {
    /* Ensure body is scrollable by default */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Fix for modals/panels */
    .auth-overlay.active,
    .account-panel.active,
    .cart-sidebar.active,
    .wishlist-sidebar.active {
        position: fixed;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ensure body behind panels is not scrollable when panel is open */
    body.panel-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Smooth scrolling for all anchor links */
    html {
        scroll-behavior: smooth;
    }
    
    /* Fix for position fixed elements on mobile */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
}

/* Desktop fixes */
@media (min-width: 1025px) {
    /* Ensure panels close properly */
    .account-panel:not(.active) {
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
    }
}

/* Fix for body scrolling restoration */
body {
    transition: overflow 0.3s ease;
}

/* Force scrolling when needed */
.scroll-enabled {
    overflow-y: auto !important;
    position: static !important;
}

/* FIX dropdown item spacing */
.dropdown-content a {
    display: flex;
    align-items: center;
    justify-content: flex-start;   /* 🔥 important */
    gap: 12px;                     /* space between icon & text */
    padding: 14px 16px;
}

/* Icon sizing */
.dropdown-content a i {
    min-width: 22px;               /* keeps all icons aligned */
    text-align: center;
    font-size: 18px;
    color: #C5A028;
}

/* Text fix */
.dropdown-content a span,
.dropdown-content a {
    text-align: left;
}

.dropdown-content a {
    gap: 10px;
}





