/* CSS Variables - Design System */
:root {
    --beige: #f6efe7;
    --beige-dark: #efe3d7;
    --brown: #7b4f3c;
    --brown-dark: #5b3b2b;
    --accent: #d9b99e;
    --muted: #7b7b7b;
    --white: #ffffff;
    --black: #000000;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--beige);
    color: var(--brown-dark);
    line-height: 1.6;
    behavior: smooth;
    /*changes made here */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--beige-dark);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 2rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--brown-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--brown);
    text-decoration: underline var(--brown) 2px solid;
    text-underline-offset: 5px;
    /* transition: text-undeline-offset 1s ease-in-out; */
}

.nav-link.active {
    color: var(--brown);
    font-weight: 600;
    text-decoration: underline var(--brown) 2px solid;
    text-underline-offset: 5px;
    /* transition: text-decoration 0.8s ease; */
}

.btn-primary {
    background: var(--brown);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 79, 60, 0.3);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brown-dark);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    width: 60%;
    height: calc(100vh - 70px);
    background: var(--beige);
    padding: 2rem;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 1rem;
    animation: slideIn 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.carousel-slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    /* changes made here */
    opacity: 0.6;
    animation: zoomEffect 8s ease-in-out infinite;
}

@keyframes zoomEffect {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    line-height: 1.4;
    /* changes made here */
}

.slide-text {
    display: none;
    opacity: 0;
    transition: opacity 1.5s ease-in-out 0.3s;
}

.slide-text.active {
    display: block;
    opacity: 1;
}

.slide-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* .slide-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
} */

.carousel-nav {
    position: absolute;
    top: 0;
    height: 100%;
    width: 15%;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 30;
    transition: background 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.05);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 2rem;
    background: var(--white);
}

/* Intro Section */
.intro-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.intro-section .container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.intro-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.intro-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(91, 59, 43, 0.8);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--beige-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* .process-images {
    position: relative;
    height: 500px;
}

.process-image {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.process-image:first-child {
    width: 100%;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 1;
}

.process-image:last-child {
    width: 80%;
    height: 350px;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
} */

.process-images-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.process-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.process-slide.active {
    opacity: 1;
}

.process-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.process-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.process-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.process-nav.prev {
    left: 15px;
}

.process-nav.next {
    right: 15px;
}

.process-nav i {
    font-size: 1.2rem;
    color: var(--brown-dark);
}


.process-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.process-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.process-step h4 {
    font-size: 1.125rem;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 1rem;
    color: rgba(91, 59, 43, 0.8);
    margin: 0;
}

/* .process-step i {
    font-size: 1.5rem;
    color: var(--brown);
    margin-top: 0.25rem;
    flex-shrink: 0;
} */

/* Values Section */
/* .values-section {
    position: relative;
    padding: 6rem 0;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
} */

/* .values-section .container {
    position: relative;
    z-index: 10;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.value-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.value-card i {
    font-size: 3rem;
    color: var(--brown);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--brown-dark);
}

.value-card p {
    color: rgba(91, 59, 43, 0.8);
} */

/* Product Gallery */
.product-gallery {
    padding: 6rem 0;
    background: var(--white);
}

.product-gallery h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.products-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

.product-item {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
}

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

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-overlay p {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.scroll-hint {
    text-align: center;
    color: var(--muted);
    margin-top: 1.5rem;
}

/* Testimonials */
/* .testimonials {
    padding: 6rem 0;
    background: var(--beige);
}

.testimonials h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
} */

.company-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-logo {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--brown);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.company-header h3 {
    font-size: 1.125rem;
    font-weight: bold;
}

.stars {
    color: var(--accent);
}

/* .testimonial-card p {
    font-size: 0.938rem;
    line-height: 1.6;
    color: rgba(91, 59, 43, 0.8);
} */

/* Footer */
.footer {
    background: var(--brown-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 0.3rem;
}

.footer-about p {
    font-size: 0.938rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--brown);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-top: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.bullet {
    margin-top: 8px;
    height: 15px;
    width: 15px;
    background-color: var(--brown);
    border-radius: 50%;
    display: inline-block;
}

/* Founder Section */
/* .founder-section {
    padding: 4rem 0;
    background: var(--beige-dark);
}

.founder-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.founder-item.reverse {
    grid-template-columns: 1fr 300px;
}

.founder-item.reverse .founder-image {
    order: 2;
}

.founder-item.reverse .founder-content {
    order: 1;
}

.founder-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-content h3 {
    font-size: 1.75rem;
    color: var(--brown);
    margin-bottom: 1rem;
}

.founder-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(91, 59, 43, 0.8);
} */

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: var(--beige);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-card i {
    font-size: 3rem;
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.75rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(91, 59, 43, 0.8);
}

/* Why Cards with Icons */
.why-card i {
    font-size: 2.5rem;
    color: var(--brown);
    margin-bottom: 1rem;
}

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

    .hamburger {
        display: block;
    }

    .mobile-menu {
        width: 80%;
    }

    .hero-carousel {
        height: 60vh;
        min-height: 500px;
    }

    .carousel-content {
        max-width: 90%;
        padding: 0 1rem;
    }

    .slide-text h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    /* .slide-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    } */

    .carousel-dots {
        bottom: 1.5rem;
    }

    .carousel-nav {
        width: 20%;
    }

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

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

    .process-images {
        height: 400px;
        order: 2;
    }

    .process-content {
        order: 1;
    }

    .values-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .founder-item,
    .founder-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-item.reverse .founder-image,
    .founder-item.reverse .founder-content {
        order: 0;
    }

    .founder-image {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

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

/* Contact Page */
.contact-page {
    padding: 8rem 0 4rem;
    background: var(--beige);
}

.contact-page h1 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-page>.container>p {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(91, 59, 43, 0.8);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brown-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--beige-dark);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(123, 79, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 240px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(123, 79, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--brown);
    font-size: 1.25rem;
}

.info-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: rgba(91, 59, 43, 0.8);
}

.cta-card {
    background: var(--brown);
    color: var(--white);
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

    .contact-page h1 {
        font-size: 2.5rem;
    }
}

/* Popup modal styles */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: var(--white);
    color: var(--brown-dark);
    border-radius: 0.75rem;
    padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    transform-origin: center;
}

.popup.success .popup-icon {
    /* background: rgba(46, 204, 113, 0.12); */
    background: #efe3d7;
    /* color: #27ae60; */
    color: #7b4f3c;
}

.popup.error .popup-icon {
    background: rgba(229, 62, 62, 0.12);
    color: #e53e3e;
}

.popup .popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 0.75rem auto;
}

.popup h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.popup p {
    margin: 0 0 0.5rem 0;
}

.popup .close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

.popup .close-btn:focus {
    outline: 2px solid rgba(123, 79, 60, 0.15);
    border-radius: 4px;
}

/* product page */

.product-hero {
    margin-top: 80px;
    padding: 4rem 0 2rem;
    text-align: center;
}

.product-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.product-hero p {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-category {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Category Switcher */
.category-switcher {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 2rem 0 3rem;
}

.category-btn {
    padding: 0.75rem 1.75rem;
    background: transparent;
    border: 2px solid var(--beige-dark);
    border-radius: 0.5rem;
    color: var(--brown-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-family: inherit;
}

.category-btn:hover {
    border-color: var(--accent);
    background: var(--beige-dark);
}

.category-btn.active {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
}

/* product Section */
.product-section {
    margin-bottom: 3rem;
}

.product-section.hidden {
    display: none;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--beige-dark);
}

/* Image Grid */
.product-grid {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-item {
    width: 100%;
    height: 320px;
    /* pick ONE height */
    background: var(--beige-dark);
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(91, 59, 43, 0.35) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-item:hover::after {
    opacity: 1;
}

/* product Footer Space */
.product-content {
    padding-bottom: 4rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 3rem 0 1.5rem;
    }

    .product-hero h1 {
        font-size: 2.25rem;
    }

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

    .category-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .category-switcher {
        padding: 1.5rem 0 2rem;
    }
}

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

    .product-hero h1 {
        font-size: 2rem;
    }

    .product-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .category-switcher {
        gap: 0.5rem;
        padding: 1rem 0 1.5rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .product-section {
        margin-bottom: 2rem;
    }
}

/* About page */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.story-section {
    padding: 4rem 0;
    background: var(--beige);
}

.story-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

/* .story-content p {
            font-size: 1.125rem;
            line-height: 1.4;
            margin-bottom: 1.5rem;
            color: rgba(91, 59, 43, 0.8);
        } */
.why-section {
    padding: 4rem 0;
    background: var(--beige-dark);
}

.why-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 1rem;
}

.why-card p {
    color: rgba(91, 59, 43, 0.8);
}

/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99;
    font-size: 22px;
    background-color: #a15d38cc;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: none;
    /* Hidden by default */
}

#scrollToTopBtn:hover {
    background-color: #c3a6a0;
    /* Softer tone on hover */
    transform: scale(1.1);
}