/* Base Styles & Variables */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E4B6;
    --gold-dark: #B8860B;
    --brown: #8B4513;
    --brown-light: #A67B5B;
    --brown-dark: #5D4037;
    --beige: #F5F5DC;
    --beige-light: #FFF8E1;
    --beige-dark: #E6D7B8;
    --white: #FFFFFF;
    --black: #333333;
    --gray: #777777;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--beige-light);
    color: var(--black);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--brown-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

p {
    margin-bottom: 15px;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--brown-dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    color: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo i {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--white);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(93, 64, 55, 0.7)), url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 180px 0 100px;
    margin-top: 70px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--beige-light);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Categories Section */
.categories {
    background: var(--beige);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    margin-bottom: 10px;
    color: var(--brown-dark);
}

/* Featured Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    margin-bottom: 10px;
    color: var(--brown-dark);
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

/* About Section */
.about {
    background: var(--beige);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    background: url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover;
    box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
    color: var(--white);
}

.testimonials h2 {
    color: var(--white);
}

.testimonials h2:after {
    background: var(--gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--brown-dark);
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--beige-dark);
    border-radius: 5px;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--brown-dark), var(--black));
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--beige-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--beige-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-img {
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--brown-dark);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}









/* Base Styles & Variables */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E4B6;
    --gold-dark: #B8860B;
    --brown: #8B4513;
    --brown-light: #A67B5B;
    --brown-dark: #5D4037;
    --beige: #F5F5DC;
    --beige-light: #FFF8E1;
    --beige-dark: #E6D7B8;
    --white: #FFFFFF;
    --black: #333333;
    --gray: #777777;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--beige-light);
    color: var(--black);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--brown-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

p {
    margin-bottom: 15px;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--brown-dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    color: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo i {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--white);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

/* Enhanced Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--brown-dark);
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    z-index: 1002;
    transition: var(--transition);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-right: 10px;
}

.mobile-logo h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
}

.mobile-close {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-close:hover {
    background: var(--gold);
    color: var(--brown-dark);
}

.mobile-nav-links {
    list-style: none;
    padding: 30px 0;
    flex-grow: 1;
}

.mobile-nav-links li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-links a i {
    margin-right: 15px;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: var(--gold-light);
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    padding-left: 30px;
}

.mobile-nav-links a:hover i {
    color: var(--gold);
}

.mobile-nav-links a.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-right: 3px solid var(--gold);
}

.mobile-nav-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info {
    margin-bottom: 20px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--beige-light);
    font-size: 0.9rem;
}

.mobile-contact-item i {
    margin-right: 10px;
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.mobile-social-links a:hover {
    background: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-3px);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(93, 64, 55, 0.7)), url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 180px 0 100px;
    margin-top: 70px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--beige-light);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Categories Section */
.categories {
    background: var(--beige);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    margin-bottom: 10px;
    color: var(--brown-dark);
}

/* Featured Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    margin-bottom: 10px;
    color: var(--brown-dark);
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

/* About Section */
.about {
    background: var(--beige);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    background: url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover;
    box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
    color: var(--white);
}

.testimonials h2 {
    color: var(--white);
}

.testimonials h2:after {
    background: var(--gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--brown-dark);
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--beige-dark);
    border-radius: 5px;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--brown-dark), var(--black));
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--beige-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--beige-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-img {
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}




/* ... (all previous CSS remains the same) ... */

/* Categories Section - Updated for more items */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Featured Products - Updated for more items */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Footer - Removed customer service column */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* ... (rest of the CSS remains the same) ... */




/* Add these to your existing style.css */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow);
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--brown-dark);
}

/* Form Select Styles */
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--beige-dark);
    border-radius: 5px;
    background: var(--white);
    transition: var(--transition);
    font-size: 1rem;
}

.form-group select:focus {
    border-color: var(--gold);
    outline: none;
}

/* Loading Spinner */
.spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-content {
    text-align: center;
    color: var(--white);
}

.spinner-content i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.spinner-content p {
    color: var(--white);
    font-size: 1.1rem;
}

/* Hidden fields */
.hidden {
    display: none;
}

/* Success/Error Messages */
.message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Consultation Button in Hero */
.consultation-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--brown-dark);
}

.consultation-btn:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--brown));
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--brown-dark), var(--black));
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--beige-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--beige-light);
}

/* Footer Newsletter Form */
.footer-column .form-group {
    margin-bottom: 15px;
}

.footer-column input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--beige-dark);
    border-radius: 5px;
    background: var(--white);
    transition: var(--transition);
}

.footer-column input[type="email"]:focus {
    border-color: var(--gold);
    outline: none;
}

.footer-column .btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--gold);
    color: var(--brown-dark);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.footer-column .btn:hover {
    background: var(--gold-dark);
}




/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.badge i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-us {
    background: var(--beige);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Map Container */
.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}






/* Contact Section Enhancements */
.contact-section {
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--beige-dark);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.contact-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin: 10px 0 20px;
}

.contact-btn {
    width: 100%;
    margin-top: 15px;
}

/* Contact Content Layout */
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-details h3 {
    color: var(--brown-dark);
    margin-bottom: 30px;
}

/* Info Cards */
.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-header i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-right: 12px;
}

.info-header h4 {
    margin: 0;
    color: var(--brown-dark);
}

.timings {
    space-y: 10px;
}

.timing-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--beige-dark);
}

.timing-item:last-child {
    border-bottom: none;
}

.services-list {
    list-style: none;
}

.services-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray);
}

.services-list i {
    color: var(--gold);
    margin-right: 10px;
}

/* Form Styling */
.contact-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h3 {
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.elegant-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.elegant-form .form-group {
    margin-bottom: 25px;
}

.elegant-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--brown-dark);
}

.elegant-form input,
.elegant-form select,
.elegant-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--beige-dark);
    border-radius: 8px;
    background: var(--beige-light);
    transition: var(--transition);
    font-size: 1rem;
}

.elegant-form input:focus,
.elegant-form select:focus,
.elegant-form textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--brown));
}

/* Map Section */
.map-section {
    margin-top: 40px;
}

.map-section h4 {
    color: var(--brown-dark);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .elegant-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .contact-form-section {
        padding: 30px 25px;
    }
}


/* Logo Image Styles */
.logo-image {
    height: 50px; /* Adjust based on your logo size */
    width: auto;
    transition: var(--transition);
}

.mobile-logo .logo-image {
    height: 40px; /* Slightly smaller for mobile */
}

/* Hide text but keep for SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Update existing logo styles to center the image */
.logo {
    display: flex;
    align-items: center;
}

/* Remove the gem icon since we're using image logo */
.logo i {
    display: none;
}

.mobile-logo i {
    display: none;
}




/* Logo + Text Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px; /* Adjust based on your logo size */
    width: auto;
    transition: var(--transition);
}

.logo-text {
    margin: 0;
    font-size: 1.8rem;
    color: var(--white);
    margin-left: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile Logo */
.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo .logo-image {
    height: 40px; /* Slightly smaller for mobile */
}

.mobile-logo .logo-text {
    font-size: 1.4rem;
    margin-left: 10px;
    color: var(--white);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    height: 40px;
    margin-right: 12px;
}

.footer-logo h3 {
    color: var(--gold);
    margin: 0;
    font-size: 1.5rem;
}

/* Remove the gem icons since we're using image logo */
.logo i,
.mobile-logo i {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
        margin-left: 8px;
    }
    
    .mobile-logo .logo-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-image {
        height: 40px;
    }
}



/* Logo Styles - Bigger Logo Only */
.logo-image {
    height: 85px; /* Increased from 65px to 85px */
    width: auto;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Mobile Logo */
.mobile-logo .logo-image {
    height: 70px; /* Increased from 50px to 70px */
}

/* Footer Logo */
.footer-logo .logo-image {
    height: 75px; /* Increased from 60px to 75px */
    margin-right: 0;
}

/* Hide text but keep for SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Keep header padding the same - DON'T change these */
header {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    color: var(--white);
    padding: 15px 0; /* Keep this same */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Height will adjust automatically to fit bigger logo */
}

.logo {
    display: flex;
    align-items: center;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Remove all text elements */
.logo-text {
    display: none;
}

/* Responsive adjustments - only for logo */
@media (max-width: 768px) {
    .logo-image {
        height: 70px; /* Increased from 55px to 70px */
    }
    
    .mobile-logo .logo-image {
        height: 60px; /* Increased from 45px to 60px */
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 65px; /* Increased from 50px to 65px */
    }
    
    .mobile-logo .logo-image {
        height: 90px; /* Increased from 40px to 90px */
    }
}






/* Updated for img elements instead of background-image */
.category-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.product-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}



/* About Section Image - Proper Fit */
.about-img {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Change this to 'contain' for full image */
    transition: var(--transition);
}

/* Option 1: Show full image without cropping */
.about-img img {
    object-fit: contain; /* This shows entire image without cropping */
    background: var(--beige-light); /* Add background if image has transparency */
}

/* Option 2: If you want to maintain aspect ratio but fill space */
.about-img img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Option 3: With background for better appearance */
.about-img {
    background: linear-gradient(135deg, var(--beige-light), var(--beige));
}

.about-img img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.about-img:hover img {
    transform: scale(1.03);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--beige-light);
}



/* ===== COLLECTION & PRODUCT IMAGES ONLY ===== */

/* Collection Images */
.category-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f5f0, #f0ebe0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show complete jewelry without cropping */
    object-position: center;
    padding: 15px;
    transition: all 0.4s ease;
    background: transparent;
}

/* Product Images */
.product-img {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #fdfcfb, #f8f6f2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Complete product visibility */
    object-position: center;
    padding: 20px;
    transition: all 0.4s ease;
    background: transparent;
}

/* Hover Effects */
.category-card:hover .category-img img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
    filter: brightness(1.05) drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
}

/* Responsive */
@media (max-width: 768px) {
    .category-img {
        height: 200px;
    }
    
    .product-img {
        height: 250px;
    }
    
    .category-img img,
    .product-img img {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .category-img {
        height: 180px;
    }
    
    .product-img {
        height: 220px;
    }
    
    .category-img img,
    .product-img img {
        padding: 10px;
    }
}













/* ===== COLLECTIONS PAGE STYLES ===== */

/* Collections Hero */
.collections-hero {
    background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(93, 64, 55, 0.8)), url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 70px;
}

.collections-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.collections-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--beige-light);
}

/* Collections Detail */
.collections-detail {
    padding: 80px 0;
    background: var(--beige-light);
}

.collection-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-header h2 {
    font-size: 2.2rem;
    color: var(--brown-dark);
    margin-bottom: 15px;
}

.category-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Collection Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.collection-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.collection-img {
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f5f0, #f0ebe0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition);
}

.collection-item:hover .collection-img img {
    transform: scale(1.05);
}

.collection-info {
    padding: 25px;
}

.collection-info h3 {
    font-size: 1.4rem;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.collection-info p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.price-range {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Quick Navigation */
.collection-quick-nav {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid var(--beige-dark);
}

.collection-quick-nav h3 {
    margin-bottom: 30px;
    color: var(--brown-dark);
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 10px;
    text-decoration: none;
    color: var(--brown-dark);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.quick-nav-item:hover {
    background: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-5px);
}

.quick-nav-item i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.quick-nav-item span {
    font-weight: 600;
}

/* CTA Section */
.collections-cta {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.collections-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.collections-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--beige-light);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active Navigation */
.nav-links a.active {
    color: var(--gold);
    position: relative;
}

.nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .collections-hero h1 {
        font-size: 2.5rem;
    }
    
    .collections-hero p {
        font-size: 1.1rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .collections-hero {
        padding: 120px 0 60px;
    }
    
    .collections-hero h1 {
        font-size: 2rem;
    }
    
    .quick-nav-grid {
        grid-template-columns: 1fr;
    }
}


/* Live Prices Section */
.live-prices {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    color: var(--white);
    padding: 40px 0;
    margin-top: 70px;
}

.live-prices h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
}

.price-ticker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.price-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metal-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 5px;
}

.change {
    display: block;
    font-size: 0.9rem;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

.change.positive {
    background: var(--success);
    color: white;
}

.change.negative {
    background: var(--error);
    color: white;
}

.change.neutral {
    background: var(--gray);
    color: white;
}

.price-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--beige-light);
    margin-top: 15px;
    opacity: 0.8;
}

/* For header placement */
.header-prices {
    background: var(--gold-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-price-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header-price-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .price-ticker {
        grid-template-columns: 1fr;
    }
    
    .header-price-container {
        gap: 15px;
    }
    
    .header-price-item {
        font-size: 0.8rem;
    }
}