/* 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: 180px;
}

.main{
    padding-top: 100px;
}


.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;
    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;
}

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

.add-to-wishlist-modal{
    margin-top: 10px;
}

.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-outline {
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-outline: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 20px;
}

.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;
    padding-top: 5%;
}

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

.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;
}

/* 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 {
    color: var(--charcoal);
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.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;
}

.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;
}

.menu-toggle {
    display: none;
}

/* 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;
}


/* 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: 9999;
    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;
    padding-top: 30px;
    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);
}

/* 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;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--ivory);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 100;
        border-top: 1px solid var(--gold-light);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .dropdown-content {
        position: static;
        background-color: transparent;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.7rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-gold, .btn-outline {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.8rem;
    }
    
    .years-badge {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    
    .years-badge span:first-child {
        font-size: 1.5rem;
    }
}


/* 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: relative;
    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;
}

/* ===== LAYOUT WITH SIDEBAR FILTERS ===== */
.main-content {
    display: flex;
    gap: 40px;
    padding: 60px 0;
    min-height: 80vh;
    margin: 0px;
}

/* Filters Sidebar */
.filters-sidebar {
    width: 300px;
    flex-shrink: 0;
    background: var(--ivory);
    padding: 3px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gold-light);
    height: fit-content;
    position: sticky;
    top: 50px;
}

.filters-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gold-light);
}

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

.filters-header p {
    color: var(--taupe);
    font-size: 0.9rem;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 25px;
}

.filter-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: var(--gold-primary);
    border-radius: 3px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    padding: 12px 15px;
    border: 1px solid var(--gold-light);
    border-radius: var(--border-radius);
    background: white;
    color: var(--charcoal);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-option:hover {
    border-color: var(--gold-primary);
    background-color: rgba(197, 160, 40, 0.05);
    transform: translateX(5px);
}

.filter-option.active {
    background-color: var(--gold-primary);
    color: white;
    border-color: var(--gold-primary);
    font-weight: 600;
}

.filter-option i {
    font-size: 0.9rem;
}

.filters-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Rings Content Area */
.rings-content {
    flex: 1;
}

.hero-section {
    margin-bottom: 50px;
}

.hero-section .section-subtitle {
    font-size: 1rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.hero-section .section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--charcoal);
    font-family: 'Cinzel', serif;
}

.hero-section .section-description {
    font-size: 1.2rem;
    color: var(--taupe);
    max-width: 600px;
    line-height: 1.7;
}

/* Active Filters */
.active-filters {
    background: rgba(197, 160, 40, 0.08);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--gold-primary);
}

.active-filters h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--charcoal);
    font-family: 'Cinzel', serif;
}

.active-filters-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.active-filter-tag {
    background: var(--gold-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.remove-filter {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Rings Grid Update */
.necklaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}



/* Results Count */
.results-count {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gold-light);

}

.results-count span {
    color: var(--taupe);
    font-size: 1rem;
    text-align: end;
}

.results-count strong {
    color: var(--gold-primary);
    font-weight: 600;
    text-align: end;
}


/* Search Status */
.search-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(197, 160, 40, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    margin-left: auto;
}

.search-status i {
    color: var(--gold-primary);
}

.clear-search-btn {
    background: none;
    border: none;
    color: var(--taupe);
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 15px;
    transition: var(--transition);
}

.clear-search-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--charcoal);
}


/* Mobile Responsive */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }
    
    .filters-sidebar {
        width: 100%;
        position: static;
    }
    
    .necklaces-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section .section-title {
        font-size: 2.2rem;
    }
    
    .necklaces-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .necklaces-grid {
        grid-template-columns: 1fr;
    }
    
    .results-count {
        flex-direction: column;
       
        gap: 15px;
    }
}

/* Add to rings.css */
.content-wrapper {
    display: flex;
    gap: 40px;
    position: relative;
}

.container {
   
    padding: 0 40px;
}



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

/* Make content wrapper more responsive */
.content-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
    position: relative;
}

/* Adjust filters sidebar for better fit */
.filters-sidebar {
    width: 280px; /* Slightly reduced */
    flex-shrink: 0;
    background: var(--ivory);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gold-light);
    height: fit-content;
    position: sticky;
    top: 120px; /* Adjusted for header */
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

/* Make rings grid more compact */
.necklaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

/* Adjust ring cards */
.ring-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gold-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ring-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ring-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.ring-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ring-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.3;
}

.ring-metal {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ring-description {
    font-size: 0.9rem;
    color: var(--taupe);
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

.ring-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.ring-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ring-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ring-current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Cinzel', serif;
}

.ring-original-price {
    font-size: 0.9rem;
    color: var(--taupe);
    text-decoration: line-through;
    display: block;
    margin-top: 3px;
}

.ring-weight {
    background: var(--gold-light);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 600;
}

.ring-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.ring-actions .btn-gold,
.ring-actions .btn-outline {
    flex: 1;
    padding: 12px 15px;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Badge styling */
.ring-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

/* Wishlist button for ring cards */
.ring-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: 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);
}

.ring-wishlist-btn:hover {
    background: white;
    color: #ff4757;
    border-color: #ff4757;
}

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

/* Fix header spacing */
.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);
}

/* Fix price ticker spacing */
.price-ticker {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}


  


/* Adjust for mobile */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .filters-sidebar {
        width: 100%;
        position: static;
        max-height: none;
        top: 0;
    }
    
    .necklaces-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .necklaces-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .ring-actions {
        flex-direction: column;
    }
    
    .ring-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .necklaces-grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        gap: 20px;
    }
}