:root {
    --primary-gold: #C9A961;
    --dark-charcoal: #2C2C2C;
    --soft-cream: #F8F6F3;
    --warm-beige: #E8E3DC;
    --deep-brown: #4A4139;
    --accent-rose: #D4AF97;
    --light-gold: #E5D5B7;
    --pure-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #6B6B6B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--soft-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-gold);
    cursor: pointer;
}

.logo i {
    font-size: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-icons i {
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-icons i:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-gold);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 600;
}

/* Hero Carousel */
.hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.carousel-container {
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.4) 0%, rgba(74, 65, 57, 0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.slide-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-gold);
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 96px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 24px;
    color: var(--warm-beige);
    margin-bottom: 48px;
    font-weight: 300;
    letter-spacing: 1px;
}

.slide-cta {
    padding: 18px 48px;
    background: var(--primary-gold);
    color: white;
    border: 2px solid var(--primary-gold);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.slide-cta:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--dark-charcoal);
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 40px;
}

.carousel-btn.next {
    right: 40px;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    width: 40px;
    border-radius: 6px;
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Floating Features */
.floating-features {
    background: white;
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    font-size: 24px;
    color: var(--primary-gold);
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Collections Masonry */
.collections-masonry {
    padding: 120px 0;
    background: var(--soft-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.header-decoration {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 auto 24px;
}

.section-title {
    font-size: 56px;
    color: var(--dark-charcoal);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 30px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.masonry-item:hover {
    transform: translateY(-10px);
}

.masonry-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.masonry-item.medium {
    grid-row: span 2;
}

.masonry-item.small {
    grid-row: span 1;
}

.masonry-image {
    width: 100%;
    height: 100%;
}

.masonry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.masonry-item:hover .masonry-image img {
    transform: scale(1.1);
}

.masonry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.95) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.masonry-item:hover .masonry-content {
    transform: translateY(0);
    opacity: 1;
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-gold);
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.masonry-content h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 8px;
}

.masonry-content p {
    font-size: 14px;
    color: var(--warm-beige);
    margin-bottom: 16px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: white;
    color: var(--dark-charcoal);
}

.explore-btn i {
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--pure-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(44, 44, 44, 0.15);
}

.about-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-gold);
    border-radius: 12px;
    z-index: -1;
}

.about-title {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--dark-charcoal);
}

.about-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: var(--soft-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 42px;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.stat p {
    font-size: 15px;
    color: var(--text-light);
}

/* Gallery Section */
.dynamic-gallery {
    padding: 120px 0;
    background: var(--soft-cream);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid var(--warm-beige);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.gallery-dynamic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.quick-view,
.add-to-cart {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--dark-charcoal);
    transition: all 0.3s ease;
}

.quick-view:hover,
.add-to-cart:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.1);
}

.gallery-info {
    padding: 24px;
}

.gallery-info h4 {
    font-size: 20px;
    color: var(--dark-charcoal);
    margin-bottom: 12px;
}

.price-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating i {
    color: var(--primary-gold);
    font-size: 14px;
}

.rating span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--pure-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 42px;
    color: var(--dark-charcoal);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.info-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.info-item i {
    font-size: 28px;
    color: var(--primary-gold);
    margin-top: 4px;
}

.info-item h4 {
    font-size: 18px;
    color: var(--dark-charcoal);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--soft-cream);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(44, 44, 44, 0.08);
}

.contact-form h3 {
    font-size: 32px;
    color: var(--dark-charcoal);
    margin-bottom: 32px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--warm-beige);
    background: white;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-gold);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: var(--deep-brown);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-charcoal);
    color: var(--warm-beige);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--warm-beige);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    font-size: 18px;
    color: var(--primary-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icons i:hover {
    background: var(--primary-gold);
    color: var(--dark-charcoal);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 20px;
    color: var(--pure-white);
    margin-bottom: 24px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--warm-beige);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.newsletter {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    background: rgba(248, 246, 243, 0.05);
    color: var(--pure-white);
    font-size: 14px;
    border-radius: 8px;
}

.newsletter input::placeholder {
    color: var(--warm-beige);
}

.newsletter button {
    padding: 14px 24px;
    background: var(--primary-gold);
    color: var(--dark-charcoal);
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.newsletter button:hover {
    background: var(--light-gold);
    transform: translateX(3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--warm-beige);
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.popup-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-container.large {
    max-width: 1000px;
}

.popup-container.small {
    max-width: 400px;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--soft-cream);
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--primary-gold);
    color: white;
    transform: rotate(90deg);
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.popup-header i {
    font-size: 32px;
    color: var(--primary-gold);
}

.popup-header h3 {
    font-size: 28px;
    color: var(--dark-charcoal);
}

.popup-content {
    margin-top: 24px;
}

#searchInput {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--warm-beige);
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
}

#searchInput:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.search-suggestions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.suggestion {
    padding: 8px 16px;
    background: var(--soft-cream);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion:hover {
    background: var(--primary-gold);
    color: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 2px solid var(--warm-beige);
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
}

.checkout-btn,
.popup-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn:hover,
.popup-btn:hover {
    background: var(--deep-brown);
    transform: translateY(-2px);
}

.product-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-image img {
    width: 100%;
    border-radius: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}

.product-rating .stars {
    display: flex;
    gap: 4px;
}

.product-rating .stars i {
    color: var(--primary-gold);
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 20px 0;
}

.product-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 20px 0;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
}

.product-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-features .feature i {
    font-size: 20px;
    color: var(--primary-gold);
}

.add-to-cart-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    background: var(--deep-brown);
    transform: translateY(-2px);
}

.success-animation {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 24px;
}

#successTitle {
    font-size: 28px;
    color: var(--dark-charcoal);
    margin-bottom: 16px;
}

#successMessage {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.collection-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.collection-stats .stat {
    text-align: center;
    padding: 20px;
    background: var(--soft-cream);
    border-radius: 8px;
}

.collection-stats .stat strong {
    display: block;
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.collection-stats .stat span {
    font-size: 13px;
    color: var(--text-light);
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--warm-beige);
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-gold);
}

.cart-item-remove {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.empty-cart {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.empty-cart i {
    font-size: 64px;
    color: var(--warm-beige);
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .masonry-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 48px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .carousel-btn.prev {
        left: 20px;
    }
    
    .carousel-btn.next {
        right: 20px;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-dynamic {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .product-view {
        grid-template-columns: 1fr;
    }
    
    .floating-features {
        gap: 30px;
    }
    
    .nav-menu {
        display: none;
    }
}