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


header {
    position: fixed;
    width: 100%;
    top: 20px;
    z-index: 5;

}
header a{
    color: #fff;
    text-decoration: none;
}
.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.toggle-icon{
    display: none;
}

.mobile-nav {
    display: none;
}

.scrolled .navs ul li a {
    color: #000000 !important;
}

/* Ensure Slick never hides arrows; show disabled with lower opacity */
.into-product .slick-arrow { display: flex !important; outline: none; }
.into-product .slick-arrow.slick-hidden { display: flex !important; }
.into-product .slick-arrow.slick-disabled { opacity: 0.45; pointer-events: none; }
header a:hover{
    color: #009444;
}

.logo img {
    width: 85px;
}

.head-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ffffff4a;
    border-radius: 100px;
    padding: 11px 13px;
    background-color: #00000038;
    backdrop-filter: blur(10px);
}
.head-flex .logo img {
    filter: brightness(50);
}
.scrolled .logo img {
    filter: brightness(1);
}
.head-left {
    display: flex;
    align-items: center;
}

.navs ul {
    display: inline-flex;
    list-style: none;
    gap: 2rem;
    margin-bottom: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 300;
}

.head-right button {
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 9px 15px;
    font-size: 18px;
    border: 1px solid #ececec;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.head-right button:hover{
    background-color: #009444;
    color: #fff;
}







/* ----------------- Banner Section ----------------- */

.banner-bg {
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: #fff;
    display: grid;
    align-items: center;
}

.banner-content {
    width: 40%;
}

.banner-bg span {
    font-family: "Pacifico", cursive;
    font-size: 5rem;
}

.banner-bg h1 {
    font-family: "Belleza", sans-serif;
    font-size: 3rem;
}

.banner-bg p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    margin-top: 1.2rem;
}

.banner-bg button {
    font-family: "Poppins", sans-serif;
}



/* ----------------- Products Section ----------------- */

.intro-products-main {
    margin-top: 5rem;
    margin-bottom: 7rem;
}

.new-arrivals {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.new-arrivals h2 {
    font-family: "Belleza", sans-serif;
    font-weight: 500;
    font-size: 35px;
}

.new-arrivals a {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #00873b;
}

.intro-products {
    background-color: #F9EEE2;
    border-radius: 15px;
    padding: 3rem;
    position: relative;
}

.intro-products::before {
    content: "";
    position: absolute;
    top: 0;
    right: -5%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-pattern.svg');
    z-index: 0;
    opacity: 0.6;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid #ffffff6e;
    background-color: #ffffff29;
    justify-content: space-around;
    gap: 1.5rem;
    padding: 1rem 0.4rem;
    margin: 0.6rem;
    backdrop-filter: blur(8px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 11px rgb(0 0 0 / 5%);
}

.product-img {
    padding: 12px;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 5px;
}

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

.product-info {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #ffffff3b;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    margin: 0;
    /* letter-spacing: 1px; */
    width: 50%;
    margin: auto;
}

.into-product .slick-track {
    padding: 1.5rem 0rem;
}

.into-product .slick-prev,
.into-product .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: 2px solid #fff;
    background-color: #AF9172 !important;
    border-radius: 50%;
    color: #fff !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    cursor: pointer;
}
.into-product .slick-prev { left: -22px; }
.into-product .slick-next { right: -22px; }
.into-product .slick-prev:before,
.into-product .slick-next:before { content: none; }
.into-product .slick-prev svg,
.into-product .slick-next svg { width: 18px; height: 18px; line-height: 1; display: block; fill: #fff; }
.into-product .slick-prev:hover,
.into-product .slick-next:hover { background-color: #9C7E5F; }

.into-product .slick-arrow:focus { outline: none; }
.into-product .slick-arrow:active { transform: translateY(-50%) scale(0.98); }

@media (max-width: 768px) {
  .into-product .slick-prev,
  .into-product .slick-next {
    width: 36px;
    height: 36px;
  }
  .into-product .slick-prev { left: -18px; }
  .into-product .slick-next { right: -18px; }
  .into-product .slick-prev svg,
  .into-product .slick-next svg { width: 16px; height: 16px; }
}


/* ----------------- Tab Section ----------------- */

.tabset>input[type="radio"] {
    position: absolute;
    left: -200vw;
}

.tabset .tab-panel {
    display: none;
}

.tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.tabset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),
.tabset>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),
.tabset>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),
.tabset>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5),
.tabset>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6) {
    display: block;
}

.tabset>label {
    position: relative;
    display: inline-block;
    padding: 12px 15px 12px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
}

input:focus-visible+label {
    outline: 2px solid rgba(0, 102, 204, 1);
    border-radius: 3px;
}

.tabset>input:checked+label {
    background-color: #fff;
    border-radius: 18px;
    color: #603913;
}

.tab-panel {
    padding-top: 20px;
}



/* ----------------- intro Section ----------------- */


.intro-section {
    margin-top: 8rem;
    margin-bottom: 3rem;
}

.intro-image img {
    border-radius: 18px;
}

.about-content {
    position: relative;
}

.sticky-img {
    position: absolute;
    bottom: -8%;
    right: 4%;
}

.about-content span {
    font-family: "Pacifico", cursive;
    font-size: 3.5rem;
    color: #009444;
}

.about-content h3 {
    font-family: "Belleza", sans-serif;
    font-size: 2.5rem;
}

.about-content p {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.about-content button {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #009444;
    background-color: #ffffff00;
    border-radius: 50px;
    padding: 9px 30px;
    border: 1px solid #009444;
    font-weight: 400;
    transition: all 0.3s ease;
}

.about-content button:hover {
    background-color: #009444;
    color: #fff;
}

/* ----------------- Categories Section ----------------- */
.categories-section {
    padding: 5rem 0;
    position: relative;
    overflow-x: hidden;
}

.categories-sticky-img>div {
    position: absolute;
}

.categories-sticky-img>div.left-img {
    left: -6%;
    top: 60%;
}

.categories-sticky-img>div.right-img {
    right: -4%;
    top: 50%;
}

.categories-content {
    padding-right: 2rem;
}

.section-title {
    font-family: 'Belleza', sans-serif;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.categories-description {
    color: #666;
    line-height: normal;
    margin-bottom: 3rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.explore-products-btn {
    background-color: #009444;
    color: white;
    border: none;
    padding: 13px 30px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.explore-products-btn:hover {
    background-color: #007a38;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.categories-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.category-card {
    background: #fdf8ef;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
    margin: 0.5rem;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.category-card:hover .view-products-link {
    display: block;
    visibility: visible;
    position: absolute;
    bottom: 18px;
    left: 25px;
    transform: translateY(-2px);
    visibility: visible;
}

.category-title {
    font-family: 'Poppins';
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
}

.category-image {
    text-align: center;
    margin: 1rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    /* max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain; */
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.category-card:hover .category-image img {
    transform: translateY(-15px);
    border-radius: 12px;
}

.view-products-link {
    display: inline-flex;
    align-items: center;
    color: #6C2E01;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.3s ease;
    display: none;
    transform: translateY(7px);
    visibility: hidden;
    transition: all 0.3s ease;
}

.view-products-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-products-link:hover {
    color: #007a38;
}

.view-products-link:hover i {
    transform: translateX(5px);
}





/*================== about section ================== */

.abt_banner {
    background-image: url(../images/about-banner.png);
    background-size: cover;
    background-position: center;
    height: 65vh;
    display: grid;
    align-items: center;
}

.abt_content {
    color: #fff;
    width: 45%;
    padding-top: 6rem;
}

.abt_content h2 {
    font-family: "Belleza", sans-serif;
    font-size: 3.5rem;
}

.abt_content p {
    font-family: "Poppins", sans-serif;
    font-size: 0.89rem;
}

.about-us-section {
    margin-top: 6rem;
    margin-bottom: 5rem;
    position: relative;
    overflow-x: clip;
}

.about-cnt h1 {
    font-family: "Belleza", sans-serif;
    font-size: 3.5rem;
    line-height: 1;
}

.about-cnt span {
    font-size: 3rem;
}

.about-discrip p {
    font-family: "Poppins", sans-serif;
    font-size: 0.89rem;
}

.about-discrip p:nth-child(2) {
    margin-top: 1rem;
}


.abt-sticky-img>div {
    position: absolute;
}

.abt-sticky-img>div:nth-child(1) {
    left: -6%;
    top: 65%;
}

.abt-sticky-img>div:nth-child(2) {
    right: -2.5%;
    top: 45%;
}

.vision_bg {
    background-image: url(../images/vision-bg.png);
    background-size: cover;
    background-position: center;
    height: 65vh;
    display: grid;
    align-items: center;
    background-attachment: fixed;
    margin-bottom: 5rem;
}

.vis-item-flex {
    display: flex;
    background-color: #fff;
    padding: 1rem;
    border-radius: 20px;
    gap: 2rem;
}

.vis-icon-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.vis-icon-flex h4 {
    font-family: "Belleza", sans-serif;
    font-size: 2rem;
    margin-bottom: 0;
}

.vis-content {
    padding: 1rem;
    display: grid;
    align-content: space-evenly;
}

.vis-content p {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    line-height: normal;
}

.vis-icon-flex img {
    width: 50px;
}

.vis-img img {
    max-width: 220px;
    border-radius: 8px;
}

.abt-product {
    text-align: center;
    font-family: "Belleza", sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.abt-product-main,
.category-card {
    margin: 1rem;
}

.abt-product-main {
    margin-bottom: 7rem;
}


.lenis.lenis-smooth {
    scroll-behavior: auto;
  }
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  .lenis.lenis-scrolling iframe {
    pointer-events: none;
  }



/* ------------------------------------------ */


.contact-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    padding: 2rem 2rem;
    border-radius: 20px;
    background-color: #fdf8ef;
}

.contact_us {
    flex: 1 1 220px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.contact-icon {
    background: #c39b6b;
    color: #ffffff;
    font-size: 28px;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-title {
    color: #c39b6b;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 1.25rem;
}

.contact-text {
    color: #5d5d5d;
    font-size: 0.94rem;
    line-height: 1.5;
}

.contact-form {
    background: none;
    border-radius: 7px;
    padding: 0;
    margin-top: 20px;
}

.contact-form h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #ffffff;
    border: none;
    outline: none;
    color: #e2e2e2;
    padding: 16px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: outline 0.2s;
    border: 1px solid #d7d7d7;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 1.5px solid #c39b6b;
}

.contact-form button {
    width: 100%;
    padding: 15px 0;
    background: #c39b6b;
    color: #ffffff;
    font-weight: 400;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: "Poppins", sans-serif;
}

.contact-form button:hover {
    background: #a28252;
}

.contact_form_head h2 {
    font-family: "Belleza", sans-serif;
}


/* ============================================ */

.card-row {
    display: flex;
    gap: 2rem;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    background-color: #f7f7f7;
    padding: 1rem;
    border-radius: 20px;
  }
  .card-pro {
    position: relative;
    width: 350px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px #0002;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: flex-end;
  }
  .card-pro:hover {
    transform: scale(1.03);
  }
  .card-pro .card-text {
    position: absolute;
    color: #fff;
    font-size: 1.2rem;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 600;
    background: rgba(0,0,0,0.45);
    padding: 8px 0;
    border-radius: 0 0 18px 18px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    height: 100%;
    display: grid;
    align-items: center;
  }
  /* Always show for the first card */
  .card-pro.always-show .card-text {
    opacity: 1 !important;
  }
  /* Show on hover for others */
  .card-pro:not(.always-show):hover .card-text {
    opacity: 1;
  }


  .main_prod_items{
    background-color: #fdf8ef;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 5rem;
  }

  .main_prod_items .product-card{
    background-color: #fefcf9;
    border: 1.5px solid #ebb16c30;
    height: calc(100% - 1.5rem);
    gap: 1rem;
  }
  .main_prod_items .tabset>label{
    padding: 9px 15px 9px;
    border: 1px solid #d395501f;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
  }
  .main_prod_items .tabset>label:hover{
    background-color: #ffffff;
    color: #603913;
  }

  .item-tab img{
    border: 1px solid #faeede;
    border-radius: 50px;
    width: 45px;
    margin-right: 1rem;
  }




/* ===== Footer Styles ===== */
.site-footer {
    background-color: #1a472a;
    /* Dark green background */
    color: #e8f5e9;
    /* Light text color */
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../assets/images/footer-pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-about {
    flex: 0 0 30%;
    max-width: 30%;
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ebebeb;
}

.ftr-links {
    display: flex;
    justify-content: space-around;
    gap: 10rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    color: #1a472a;
}

/* .footer-links {
    flex: 0 0 20%;
    max-width: 20%;
} */

.footer-links h3,
.footer-contact h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

/* .footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #4caf50;
} */

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

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

.footer-links a {
    color: #ebebeb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: #4caf50;
}

/* .footer-contact {
    flex: 0 0 30%;
    max-width: 30%;
} */

.contact-item {
    display: flex;
    margin-bottom: 15px;
}

.contact-item i {
    color: #ffffff;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    color: #e6e6e6;
    font-size: 0.92rem;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
    color: #e2e2e2;
}