* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.top-banner {
    background: #c19a6b;
    color: white;
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.scrolling-text {
    display: inline;
    animation: scroll 3s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #c19a6b !important;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
}

.nav-menu li a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a:hover {
    color: #c19a6b;
}

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

.header-icons a {
    color: #8b7355;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.header-icons a:hover {
    color: #c19a6b;
}

.cart-count {
    background: #c19a6b;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
}

.hero-gallery {
    padding: 0;
    margin: 0;
    background: white;
}

.gallery-container {
    display: flex;
    overflow-x: hidden;
    padding: 30px 0;
}

.gallery-item {
    flex: 0 0 20%;
    min-width: 150px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.features-section {
    padding: 80px 0;
    background: white;
}

.feature-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f8f6f3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 24px;
    height: 24px;
    filter: sepia(1) saturate(2) hue-rotate(25deg);
}

.feature-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-card p {
    color: #8b7355;
    font-size: 14px;
    margin: 0;
}

.collection-section {
    padding: 100px 0;
    justify-content: center;
    background: #f0ebe6;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 800px;
}

.collection-text {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 70px;
}

.collection-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #c19a6b;
    line-height: 1.1;
    text-align: right;
    margin: 0;
}

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

.collection-image.top-right {
    border-radius: 100px 100px 0 0;
}

.collection-image.bottom-left {
    border-radius: 0 0 100px 100px;
}

.collection-image.bottom-right {
    border-radius: 0 0 100px 100px;
}

.collection-image img {
    width: 80%;
    justify-content: center;
    height: 95%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.products-section {
    padding: 50px 0 0 0;
    background: white;
}

.products-title {
    text-align: center;
    margin-bottom: 60px;
}

.products-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #c19a6b;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

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

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

.out-of-stock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.product-info {
    padding: 0 10px;
    text-align: center;
}

.product-info h5 {
    font-size: 16px;
    font-weight: 400;
    color: #8b7355;
    margin-bottom: 8px;
    text-decoration: underline;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.btn-add-cart {
    background: #c19a6b;
    color: white;
    border: 1px solid #c19a6b;
    padding: 8px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: transparent;
    color: #c19a6b;
}

.btn-read-more {
    background: #8b7355;
    color: white;
    border: 1px solid #8b7355;
    padding: 8px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-read-more:hover {
    background: transparent;
    color: #8b7355;
}

.featured-section {
    padding: 0 0 50px 0;
    background: white;
}

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

.featured-item {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    position: relative;
}

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

.featured-item:hover img {
    transform: scale(1.1);
}

.btn-buy-now {
    background: #c19a6b;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
}

.btn-buy-now:hover {
    background: #a67c52;
    color: white;
    transform: translateY(-3px);
}

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #d4c4b0 0%, #c8b299 100%);
    position: relative;
}

.testimonial-container {
    text-align: center;
    position: relative;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 30px;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    font-style: italic;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    background: #c19a6b;
    color: white;
}

.testimonial-nav.prev {
    left: 50px;
}

.testimonial-nav.next {
    right: 50px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: white;
}

.instagram-section {
    padding: 80px 0;
    background: white;
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px;
}

.instagram-profile {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.instagram-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #c19a6b;
}

.instagram-info h4 {
    font-size: 18px;
    text-align: start;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.instagram-description {
    font-size: 14px;
    color: #8b7355;
    margin: 0 auto;
    line-height: 1.6;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-instagram {
    background: #333;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background: #c19a6b;
    color: white;
}

.btn-instagram.follow {
    background: #e1306c;
}

.btn-instagram.follow:hover {
    background: #c13584;
}

.footer {
    background: #f8f6f3;
    padding: 60px 0 0px;
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.footer p,
.footer a {
    color: #8b7355;
    font-size: 14px;
    text-decoration: none;
    line-height: 2;
}

.footer a:hover {
    color: #c19a6b;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

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

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
}

.newsletter-btn {
    background: #c19a6b;
    color: white;
    border: none;
    padding: 12px 10px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #a67c52;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.payment-icon {
    width: 40px;
    height: 25px;
    border-radius: 4px;
    background: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
}

.footer-bottom {
    border-top: 1px solid #e8e8e8;
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

.social-icons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.social-icon {
    display: block;
    width: 50px;
    height: 50px;
    background: #c19a6b;
    color: white;
    text-align: center;
    line-height: 50px;
    margin-bottom: 10px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
}

.social-icon:hover {
    background: #a67c52;
    color: white;
    transform: translateX(-5px);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .logo {
        font-size: 2rem;
    }

    .gallery-item {
        flex: 0 0 50%;
        min-width: 200px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

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

    .collection-bottom {
        grid-template-columns: 1fr;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }

    .social-icons {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex: 0 0 100%;
    }

    .testimonial-nav {
        display: none;
    }
}