* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif; /* Global Poppins font */
}

nav {
    position: fixed;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666;
}

.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.login-link {
    color: #333;
    text-decoration: none;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

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

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('https://images.unsplash.com/photo-1561365452-adb940139ffa?w=900&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzR8fG1lbnMlMjBjbG90aGluZyUyMGJyYW5kJTIwd2Vic2l0ZXxlbnwwfHwwfHx8MA%3D%3D') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.brand-logo {
    font-size: 20px;
    margin-bottom: 20px;
}

.brand-name {
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.cta-button {
    padding: 15px 40px;
    font-size: 18px;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-widget:hover {
    transform: scale(1.05);
}

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

    .brand-name {
        font-size: 40px;
    }

    .brand-logo {
        font-size: 36px;
    }
}

/* Footer Styles */
.footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 80px;
    background-color: #f9f9f9;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #333;
}

/* Newsletter Form */
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

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

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #000;
}

/* Contact Overlay */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Animation Classes */
.contact-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
    }
}

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


/* Shop Page Styles */
.announcement-bar {
    background: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    border-bottom: 1px solid #eee;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

/* Products Grid */
#shop-section {
    padding: 60px 40px;
}

#shop-section h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    color: #000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.quick-view-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgb(158, 100, 73);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: bottom 0.3s ease;
}

.product-card:hover .quick-view-btn {
    bottom: 0;
}

.product-info {
    padding: 15px 0;
}

/* Quick View Modal */
.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-images {
    text-align: center;
}

.main-image {
    width: 100%;
    margin-bottom: 20px;
}

.image-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.dot.active {
    background: #666;
}

.color-options {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-btn.gray {
    background: #808080;
}

.color-btn.blue {
    background: #0000ff;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    background: rgb(158, 100, 73);
    color: white;
    border: none;
    margin: 20px 0;
    cursor: pointer;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Card Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.quick-view-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgb(158, 100, 73);
    color: white;
    border: none;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
    font-size: 16px;
}

.product-image-container:hover .quick-view-btn {
    transform: translateY(0);
}

.product-info {
    padding: 15px 0;
    text-align: left;
}

.product-info h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: normal;
}

.price {
    color: #666;
    margin-top: 5px;
    font-size: 16px;
}

/* Best Seller Tag */
.best-seller {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgb(158, 100, 73);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    z-index: 1;
}

.load-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.load-more-btn:hover {
    background-color: #444;
}

.partners-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.partners-section h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #333;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 40px 20px;
    }

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

    .partner-logo {
        max-width: 150px;
    }
}
/* Shop Section Styles */
#shop-section {
    padding: 60px 0;
    overflow: hidden;
    background: #fff;
}

#shop-section h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    color: #333;
}

.scrolling-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.products-scroll {
    display: flex;
    gap: 30px;
    padding: 0 15px;
    animation: infiniteScroll 25s linear infinite;
    width: fit-content;
}

/* Infinite scroll animation */
@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Product Card Styles */
.product-card {
    flex: 0 0 300px;
    background: white;
    transition: all 0.3s ease;
}

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

.product-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1;
}

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

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

.quick-view-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgb(158, 100, 73);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: bottom 0.3s ease;
    opacity: 0;
}

.product-image-container:hover .quick-view-btn {
    bottom: 0;
    opacity: 1;
}

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

.product-info h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.price {
    color: #666;
    font-weight: 500;
}

/* Hover pause effect */
.products-scroll:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        flex: 0 0 250px;
    }

    .product-info h3 {
        font-size: 14px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif; /* Updated to Poppins */
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1561365452-adb940139ffa?w=900&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzR8fG1lbnMlMjBjbG90aGluZyUyMGJyYW5kJTIwd2Vic2l0ZXxlbnwwfHwwfHx8MA%3D%3D') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.brand-logo {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif; /* Updated font style for logo */
}

.brand-name {
    font-size: 40px;
    margin-bottom: 30px;
    letter-spacing: 5px;
    font-family: 'Poppins', sans-serif; /* Updated font style */
}

.about-short {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #dfd9d9;
    max-width: 800px;
    font-family: 'Poppins', Arial, sans-serif; /* Updated font style for about text */
}

.cta-button {
    padding: 15px 40px;
    font-size: 18px;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', Arial, sans-serif; /* Updated font style */
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

.footer-copyright {
    text-align: center;
    padding: 10px;
    color: #000;
    font-size: 14px;
    font-family: 'Poppins', sans-serif; /* Matches the font style */
    display: flex;
    justify-content: center; /* Centers the content horizontally */
    align-items: center; /* Ensures vertical alignment */
    white-space: nowrap; /* Keeps the text in a single line */
}


.footer-copyright p {
    margin: 0;
    white-space: nowrap; /* Ensures the text stays in a single line */
}

