* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

body {
    background-color: #f8f4e9; /* Cream background */
    color: #5a4634; /* Brown text */
}

a {
    text-decoration: none;
    color: #5a4634;
}

/* Header Styles */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: #f8f4e9;
    z-index: 100;
    border-bottom: 1px solid #e6dcc9;
}

.announcement-bar {
    background-color: #5a4634;
    color: #f8f4e9;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    flex-grow: 1;
}

.nav-left, .nav-right {
    display: flex;
    gap: 20px;
}

.nav-item {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}
.nav-item:hover{
    color: blue;
}
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    flex-direction: column;
    padding: 1rem;
    z-index: 100;
}

.mobile-nav .nav-item {
    margin: 10px 0;
}

.menu-icon{
    display: none;
    cursor: pointer;
}
/* Mobile View Styles */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .logo {
        font-size: 28px;
        text-align: center;
        flex-grow: 1;
    }

    /* Menu Icon (Hamburger) */
    .menu-icon {
        display: block;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Navigation Hidden by Default */
    .nav-left, .nav-right {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #f8f4e9;
        width: 250px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        text-align: center;
        flex-direction: column;
        padding: 10px 0;
    }
    

    /* Show Navigation When Active */
    .nav-left.show, .nav-right.show {
        display: flex;
    }

    /* Navigation Links */
    .nav-item {
        padding: 10px;
        display: block;
        font-size: 16px;
    }
    .desktop-nav {
        display: none;
    }
    .mobile-nav.active {
        display: flex;
    }

    /* Hide menu icon in Desktop View */
    @media (min-width: 769px) {
        .menu-icon {
            display: none;
        }
    }
}


/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background-image:url(images/sect1bg.jpg) ;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f8f4e9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 70, 52, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: normal;
}

.hero-title {
    font-size: 40px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.btn{
    background-color: #5a4634;
    color: #f8f4e9;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #7a624a;
}

/* Featured Products Section */
.section-title {
    text-align: center;
    margin: 60px 0 30px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: normal;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    margin-bottom: 40px;
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 10px;
}

.product-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-price {
    font-size: 14px;
    margin-bottom: 5px;
}

.color-options {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.color-option {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #5a4634;
}

/* Brand Story Section */
.brand-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.brand-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-heading {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.brand-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Category Sections */
.category-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.category-card {
    position: relative;
    height: 300px;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 70, 52, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f8f4e9;
}

.category-title {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.category-subtitle {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    padding: 20px;
}
.service-video {
    width: 100%;
    height: 200px;
    max-width: 600px;
    margin: 0 auto 20px;
}
.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
}
.service-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-link {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: underline;
}

/* USP Section */
.usp-bar {
    background-color: #e6dcc9;
    padding: 20px 0;
}

.usp-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.usp-item {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter Section */
.newsletter {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.newsletter-title {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.newsletter-text {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}
.newsletter-input {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #5a4634;
    background-color: transparent;
}

/* Footer */
footer {
    background-color: #f8f4e9;
    padding: 60px 0;
    border-top: 1px solid #e6dcc9;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column-title {
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-link {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #7a624a;
}

.footer-logo {
    text-align: center;
    margin: 40px 0;
}

.footer-logo img {
    width: 180px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #e6dcc9;
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-story {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid,
    .services-grid,
    .category-sections {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
.collection-name {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.collection-description {
    font-size: 12px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.popup-box {
    width: 300px;
    height: 150px;
    margin: 30px auto;
    border: 1px solid #000;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    line-height: 1.8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background-color: #f0f0f0;
    margin-top: 30px;
}

.product-item {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.product-image {
    width: 100%;
    display: block;
}

.get-button {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #5a4634;
    color: #fff;
    border: none;
    padding: 8px 24px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.get-button:hover {
    background-color: #333;
}

.pagination {
    text-align: center;
    padding: 20px 0;
}

.pagination a {
    display: inline-block;
    margin: 0 5px;
    color: #000;
    text-decoration: none;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
  
.brand-name {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}
.sect-h2{
    text-align: center;
    margin: 60px 0 30px;
    font-size: 28px;
    letter-spacing: 1px;
    font-weight: normal;
}
.bag-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.bag-box {
    margin-bottom: 40px;
}

.bag-img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 10px;
}

.bag-cap {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.bag-price {
    font-size: 14px;
    margin-bottom: 5px;
}

.color-options {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}
.bag-btn{
    width: 100px;
    height: 30px;
    background-color: #5a4634;
    color: white;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}
.bag-btn:hover{
    color: #e6dcc9;
}
@media (max-width: 768px) {
    .bag-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bag-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
.container button{
    margin-top: 20px;
    width: 150px;
    height: 50px;
    background-color: green;
}
.container button a{
    color: white;
    font-size: 20px;
}
.container button a:hover{
    color: black;
}
/* Popup styling */

.popup {
    display: none; 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
}

/* Show popup when active */
.popup.active {
    display: block;
}

/* Close button styling */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Video container */
.faq-video-container {
    margin-top: 15px;
}

/* Responsive video */
.faq-video {
    width: 100%;
    border-radius: 10px;
    height: 400px;
}

/* Background overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup-overlay.active {
    display: block;
}

.popup-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    margin-bottom: 10px;
}