/*
Theme Name: TJ Divine Wellness
Theme URI: https://tjdivinewellness.com
Author: Mekasu Tech
Description: Custom herbal beauty and wellness homepage theme
Version: 1.0
Text Domain: tjdivinewellness
*/

:root{
  --green:#1f5a33;
  --green-dark:#194929;
  --green-strip:#214f2c;
  --gold:#c7a15b;
  --cream:#f7f3ec;
  --cream-2:#f2ede5;
  --text:#222222;
  --muted:#7c7b76;
  --border:#ece7de;
  --white:#ffffff;
  --shadow:0 8px 24px rgba(0,0,0,.08);
  --container:1200px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

img{
  display:block;
  max-width:100%;
}

a{
  text-decoration:none;
}

.container{
  width:min(var(--container), 92%);
  margin-inline:auto;
}

.topbar{
  background:var(--green);
  color:#fff;
  font-size:12px;
}

.topbar-inner{
  min-height:34px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:14px;
}

.topbar-center{
  text-align:center;
}

.topbar-right{
  justify-self:end;
  display:flex;
  gap:6px;
}

.topbar a{
  color:#f6d88d;
}

.main-header{
  background:#fff;
  border-bottom:1px solid var(--border);
}

.header-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.site-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#1d2d21;
  font-weight:700;
  flex-shrink:0;
}

.site-logo img{
  height:34px;
  width:auto;
  object-fit:contain;
}

.main-menu{
  display:flex;
  align-items:center;
  gap:24px;
}

.main-menu a{
  color:#2a342d;
  font-size:13px;
  font-weight:500;
}

.header-icons{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

.header-icons a{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#2f3a31;
  font-size:16px;
}

.hero{
  background:var(--cream);
  padding:36px 0 28px;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  align-items:center;
  gap:24px;
}

.hero-copy{
  padding-left:10px;
}

.trust-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff7e8;
  color:#4c5d41;
  border-radius:999px;
  padding:9px 14px;
  font-size:13px;
  margin-bottom:18px;
}

.hero-copy h1{
  margin:0 0 14px;
  font-size:52px;
  line-height:1.06;
  color:#222;
  font-weight:700;
}

.hero-copy h1 span{
  color:var(--gold);
}

.hero-copy p{
  color:var(--muted);
  font-size:14px;
  max-width:470px;
  margin:0 0 22px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn-green,
.btn-light{
  min-height:44px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:600;
}

.btn-green{
  background:var(--green-strip);
  color:#fff;
}

.btn-light{
  background:#fff;
  color:#333;
  border:1px solid #ddd6ca;
}

.hero-image-box{
  position:relative;
  min-height:360px;
}

.hero-image-box img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.hero-float,
.hero-badge{
  position:absolute;
  background:#fff;
  border-radius:999px;
  padding:8px 12px;
  box-shadow:var(--shadow);
  font-size:12px;
  color:#4d5c4e;
}

.hero-float.left{
  left:8px;
  bottom:88px;
}

.hero-float.right{
  right:8px;
  bottom:58px;
}

.hero-badge{
  right:22px;
  top:26px;
}

.category-strip{
  background:var(--green-strip);
}

.category-strip-inner{
  display:flex;
  gap:28px;
  overflow:auto;
  padding:11px 14px;
  scrollbar-width:none;
}

.category-strip-inner::-webkit-scrollbar{
  display:none;
}

.category-strip a{
  color:#fff;
  white-space:nowrap;
  font-size:14px;
  font-weight:500;
}

.category-section{
  padding:46px 0 30px;
  background:#fff;
}

.section-mini{
  text-align:center;
  color:#6f6d67;
  font-size:13px;
  margin-bottom:6px;
}

.section-title{
  margin:0 0 28px;
  text-align:center;
  font-size:42px;
  line-height:1.1;
  color:#252525;
  font-weight:700;
}

.section-title span{
  color:var(--gold);
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  justify-items:center;
}

.category-card{
  text-align:center;
}

.category-thumb{
  width:118px;
  height:118px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 10px;
  background:var(--cream-2);
  box-shadow:var(--shadow);
}

.category-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.category-card h3{
  margin:0 0 2px;
  font-size:14px;
  color:#222;
  font-weight:600;
}

.category-card p{
  margin:0;
  font-size:11px;
  color:#9a978f;
}

.offer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:28px;
}

.offer-card{
  border-radius:20px;
  overflow:hidden;
  min-height:220px;
  display:grid;
  grid-template-columns:1fr 1fr;
}

.offer-card.light{
  background:#f1ede6;
}

.offer-card.dark{
  background:var(--green);
  color:#fff;
}

.offer-content{
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.offer-content .tag{
  display:inline-block;
  align-self:flex-start;
  background:#d8b16d;
  color:#fff;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:12px;
}

.offer-content h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.15;
  font-weight:700;
}

.offer-content p{
  margin:0 0 14px;
  font-size:12px;
}

.offer-card.light .offer-content p{
  color:#6f6d67;
}

.offer-card.dark .offer-content p{
  color:rgba(255,255,255,.82);
}

.shop-btn{
  align-self:flex-start;
  background:#fff;
  color:#1f4c2b;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  font-size:13px;
  font-weight:600;
}

.offer-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.site-footer{
  border-top:1px solid var(--border);
  padding:24px 0;
  background:#fff;
}

.footer-inner{
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

@media (max-width: 991px){
  .topbar-inner{
    grid-template-columns:1fr;
    text-align:center;
    padding:8px 0;
  }

  .topbar-right{
    justify-self:center;
  }

  .main-menu{
    display:none;
  }

  .header-inner{
    min-height:64px;
  }

  .hero-grid,
  .offer-grid{
    grid-template-columns:1fr;
  }

  .hero-copy{
    padding-left:0;
  }

  .hero-copy h1{
    font-size:40px;
  }

  .category-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width: 767px){
  .hero{
    padding:26px 0 20px;
  }

  .hero-copy h1{
    font-size:34px;
  }

  .hero-image-box{
    min-height:280px;
  }

  .hero-badge{
    top:12px;
    right:12px;
  }

  .hero-float.left{
    left:6px;
    bottom:68px;
  }

  .hero-float.right{
    right:6px;
    bottom:34px;
  }

  .section-title{
    font-size:34px;
  }

  .category-thumb{
    width:92px;
    height:92px;
  }

  .offer-card{
    min-height:190px;
  }

  .offer-content{
    padding:16px;
  }

  .offer-content h3{
    font-size:18px;
  }
}

@media (max-width: 520px){
  .header-inner{
    gap:10px;
  }

  .site-logo span{
    font-size:14px;
  }

  .header-icons{
    gap:10px;
  }

  .category-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px 10px;
  }
}

.about-elegance-section{
  padding:56px 0 34px;
  background:#fff;
}

.about-elegance-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:center;
}

.about-collage{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  grid-template-rows:1fr 1fr;
  gap:12px;
  min-height:360px;
}

.collage-large{
  grid-row:1 / span 2;
  overflow:hidden;
  border-radius:48px 16px 48px 16px;
  background:#f3ece2;
}

.collage-small{
  overflow:hidden;
  border-radius:20px;
  background:#f3ece2;
}

.collage-large img,
.collage-small img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.about-badge{
  position:absolute;
  left:42%;
  top:48%;
  transform:translate(-50%,-50%);
  background:#1f5a33;
  color:#fff;
  border-radius:50%;
  width:82px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:11px;
  font-weight:700;
  border:6px solid #e8d7b8;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.about-elegance-copy h2{
  margin:0 0 14px;
  font-size:44px;
  line-height:1.12;
  color:#222;
}

.about-elegance-copy h2 span{
  color:#c7a15b;
}

.about-elegance-copy p{
  color:#7c7b76;
  font-size:14px;
  max-width:500px;
}

.mini-label{
  font-size:13px;
  color:#6f6d67;
  margin-bottom:8px;
}

.elegance-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:18px;
  max-width:520px;
}

.stat-box{
  background:#1f5a33;
  color:#fff;
  border-radius:14px;
  padding:16px 14px;
  text-align:center;
}

.stat-box strong{
  display:block;
  font-size:24px;
  margin-bottom:4px;
}

.stat-box span{
  font-size:12px;
}

.signature-text{
  margin-top:20px;
  font-size:28px;
  font-family:cursive;
  color:#444;
}

.best-sellers-section{
  padding:34px 0 46px;
  background:#fff;
}

.best-topbar{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:18px;
}

.best-title{
  margin:0;
  font-size:40px;
  line-height:1.1;
}

.best-title span{
  color:#c7a15b;
}

.view-all-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 18px;
  border-radius:999px;
  background:#1f5a33;
  color:#fff;
  font-size:13px;
  font-weight:600;
}

.product-tabs{
  display:flex;
  gap:10px;
  overflow:auto;
  margin-bottom:22px;
  padding-bottom:4px;
  scrollbar-width:none;
}

.product-tabs::-webkit-scrollbar{
  display:none;
}

.product-tabs button{
  border:none;
  background:#f2ede5;
  color:#444;
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  white-space:nowrap;
  cursor:pointer;
}

.product-tabs button.active{
  background:#1f5a33;
  color:#fff;
}

.best-products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.best-product-card{
  background:#fff;
  border:1px solid #ece7de;
  border-radius:18px;
  overflow:hidden;
}

.best-product-image{
  position:relative;
  background:#f4eee5;
  aspect-ratio:4/4.4;
  overflow:hidden;
}

.best-product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.sale-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#1f5a33;
  color:#fff;
  border-radius:999px;
  padding:5px 9px;
  font-size:11px;
  font-weight:700;
}

.sale-badge.green{
  background:#4f7b3b;
}

.product-timer{
  display:flex;
  gap:6px;
  justify-content:center;
  padding:10px 10px 0;
}

.product-timer span{
  background:#214f2c;
  color:#fff;
  border-radius:10px;
  font-size:11px;
  padding:6px 8px;
  text-align:center;
  min-width:46px;
}

.product-timer small{
  display:block;
  font-size:9px;
}

.best-product-body{
  padding:14px;
}

.product-cat{
  margin:0 0 6px;
  font-size:11px;
  color:#8d8b85;
}

.best-product-body h3{
  margin:0 0 8px;
  font-size:18px;
}

.product-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.price{
  font-weight:700;
  color:#222;
}

.price del{
  color:#999;
  margin-left:6px;
  font-weight:400;
}

.rating{
  color:#b89454;
  font-weight:700;
}

.summer-banner{
  margin-top:28px;
  background:#f5f3ef;
  border-radius:24px;
  display:grid;
  grid-template-columns:140px 1fr 140px;
  align-items:center;
  overflow:hidden;
  min-height:240px;
}

.summer-side-img{
  height:100%;
}

.summer-side-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.summer-content{
  text-align:center;
  padding:30px 20px;
}

.mini-label.center{
  text-align:center;
}

.summer-content h3{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.05;
}

.summer-content h3 span{
  color:#c7a15b;
}

.summer-content p{
  color:#6f6d67;
  margin-bottom:18px;
}

.summer-countdown{
  display:flex;
  justify-content:center;
  gap:26px;
  margin-bottom:20px;
}

.summer-countdown div{
  text-align:center;
}

.summer-countdown strong{
  display:block;
  font-size:34px;
  color:#222;
  line-height:1;
}

.summer-countdown span{
  font-size:12px;
  color:#666;
}

.dark-btn{
  background:#1f5a33;
  color:#fff;
}

@media (max-width: 991px){
  .about-elegance-grid,
  .best-products-grid{
    grid-template-columns:1fr 1fr;
  }

  .summer-banner{
    grid-template-columns:100px 1fr 100px;
  }

  .about-elegance-copy h2,
  .best-title,
  .summer-content h3{
    font-size:34px;
  }
}

@media (max-width: 767px){
  .about-elegance-grid,
  .best-products-grid{
    grid-template-columns:1fr;
  }

  .best-topbar{
    flex-direction:column;
    align-items:flex-start;
  }

  .elegance-stats{
    grid-template-columns:1fr;
  }

  .summer-banner{
    grid-template-columns:1fr;
  }

  .summer-side-img{
    height:180px;
  }

  .summer-countdown{
    gap:12px;
    flex-wrap:wrap;
  }

  .summer-countdown strong{
    font-size:26px;
  }
}

.deals-day-section{
  padding:42px 0 26px;
  background:#fff;
}

.section-head-center{
  text-align:center;
  margin-bottom:22px;
}

.deals-grid-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:22px;
}

.deal-card-horizontal{
  background:#fff;
  border:1px solid #ece7de;
  border-radius:20px;
  display:grid;
  grid-template-columns:180px 1fr;
  overflow:hidden;
}

.deal-image-wrap{
  position:relative;
  background:#f5efe7;
  min-height:180px;
}

.deal-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.deal-card-body{
  padding:18px 16px;
}

.deal-card-body h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.15;
  color:#222;
}

.deal-price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.deal-desc{
  font-size:13px;
  color:#7c7b76;
  margin-bottom:10px;
}

.deal-link{
  color:#1f5a33;
  font-size:13px;
  font-weight:600;
}

.weekly-banner{
  background:linear-gradient(90deg,#1f5a33 0%, #214f2c 55%, #2d6a3e 100%);
  border-radius:22px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 320px;
  align-items:center;
  min-height:220px;
}

.weekly-banner-content{
  padding:30px 32px;
  color:#fff;
}

.white-text{
  color:#e7dbc2;
}

.weekly-banner-content h3{
  margin:0 0 12px;
  font-size:40px;
  line-height:1.08;
  color:#fff;
}

.weekly-banner-content h3 span{
  color:#d0ab68;
}

.weekly-banner-content p{
  max-width:420px;
  color:rgba(255,255,255,.84);
  font-size:14px;
}

.white-btn{
  background:#fff;
  color:#1f5a33;
  margin-top:10px;
}

.weekly-banner-image{
  height:100%;
}

.weekly-banner-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.new-arrival-section{
  padding:42px 0 56px;
  background:#fff;
}

.new-arrival-head{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:20px;
  align-items:end;
  margin-bottom:24px;
}

.new-arrival-side-text{
  font-size:13px;
  color:#8a8881;
  margin:0;
}

.new-arrival-layout{
  display:grid;
  grid-template-columns:270px 1fr;
  gap:18px;
}

.arrival-promo-card{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  min-height:100%;
}

.arrival-promo-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.arrival-promo-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:22px 18px;
  color:#fff;
  background:linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0));
  display:flex;
  flex-direction:column;
  gap:6px;
}

.arrival-promo-overlay strong{
  font-size:34px;
  line-height:1;
}

.arrival-promo-overlay span{
  font-size:12px;
  letter-spacing:2px;
}

.arrival-promo-overlay a{
  color:#fff;
  font-size:12px;
  font-weight:700;
  margin-top:8px;
}

.arrival-products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.arrival-card{
  background:#fff;
  border:1px solid #ece7de;
  border-radius:18px;
  overflow:hidden;
}

.arrival-image{
  position:relative;
  aspect-ratio:1/1;
  background:#f5efe7;
}

.arrival-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (max-width: 991px){
  .deals-grid-top,
  .new-arrival-layout,
  .new-arrival-head,
  .arrival-products-grid{
    grid-template-columns:1fr;
  }

  .weekly-banner{
    grid-template-columns:1fr;
  }

  .weekly-banner-content h3{
    font-size:32px;
  }
}

@media (max-width: 767px){
  .deal-card-horizontal{
    grid-template-columns:1fr;
  }

  .deal-image-wrap{
    min-height:220px;
  }

  .arrival-products-grid{
    grid-template-columns:1fr;
  }
}

.testimonial-section{
  padding:56px 0 42px;
  background:#fff;
}

.testimonial-wrap{
  display:grid;
  grid-template-columns:70px 1fr 70px;
  align-items:center;
  gap:16px;
  max-width:900px;
  margin:0 auto;
}

.testimonial-arrow{
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:22px;
  color:#fff;
}

.testimonial-arrow.left{
  background:#c7a15b;
  justify-self:start;
}

.testimonial-arrow.right{
  background:#1f5a33;
  justify-self:end;
}

.testimonial-content{
  text-align:center;
}

.testimonial-avatars{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.testimonial-avatars img{
  width:52px;
  height:52px;
  border-radius:50%;
  object-fit:cover;
  opacity:.8;
}

.testimonial-avatars img.active{
  width:72px;
  height:72px;
  opacity:1;
  border:4px solid #f2ede5;
}

.testimonial-title{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.15;
  color:#222;
}

.testimonial-text{
  max-width:640px;
  margin:0 auto 14px;
  color:#7c7b76;
  font-size:14px;
}

.testimonial-rating{
  color:#d2a64d;
  font-size:20px;
  margin-bottom:8px;
}

.testimonial-rating span{
  color:#222;
  font-size:16px;
  margin-left:8px;
  font-weight:700;
}

.testimonial-name{
  display:block;
  font-size:16px;
  color:#222;
  margin-bottom:4px;
}

.testimonial-role{
  margin:0;
  font-size:13px;
  color:#8b887f;
}

.blog-section{
  padding:42px 0 22px;
  background:#fff;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
}

.blog-image{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  aspect-ratio:1.3/1;
  background:#f4eee5;
}

.blog-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.blog-tag{
  position:absolute;
  left:12px;
  bottom:12px;
  background:#1f5a33;
  color:#fff;
  border-radius:999px;
  padding:5px 10px;
  font-size:11px;
  font-weight:600;
}

.blog-body{
  padding:12px 4px 0;
}

.blog-meta{
  font-size:12px;
  color:#8a877e;
  margin-bottom:8px;
}

.blog-meta span{
  padding:0 4px;
}

.blog-body h3{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.2;
  color:#222;
}

.blog-body a{
  color:#a0804b;
  font-size:13px;
  font-weight:600;
}

.instagram-section{
  padding:46px 0 30px;
  background:#fff;
}

.instagram-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.4fr 1fr 1fr;
  gap:14px;
  align-items:stretch;
}

.insta-small,
.insta-large{
  border-radius:16px;
  overflow:hidden;
  background:#f4eee5;
}

.insta-small img,
.insta-large img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.insta-small{
  aspect-ratio:1/1;
}

.insta-large{
  grid-row:span 2;
  aspect-ratio:1/1.4;
}

@media (max-width: 991px){
  .blog-grid{
    grid-template-columns:1fr;
  }

  .instagram-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .insta-large{
    grid-row:auto;
    aspect-ratio:1/1;
  }
}

@media (max-width: 767px){
  .testimonial-wrap{
    grid-template-columns:1fr;
  }

  .testimonial-arrow{
    display:none;
  }

  .testimonial-title{
    font-size:24px;
  }

  .blog-body h3{
    font-size:18px;
  }

  .instagram-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

.newsletter-section{
  padding:54px 0 22px;
  background:#f7f6f2;
}

.newsletter-box{
  text-align:center;
  max-width:760px;
  margin:0 auto;
}

.newsletter-title{
  margin:0 0 12px;
  font-size:42px;
  line-height:1.12;
  color:#222;
}

.newsletter-title span{
  color:#c7a15b;
}

.newsletter-text{
  color:#8a877e;
  font-size:14px;
  margin-bottom:20px;
}

.newsletter-form{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.newsletter-form input{
  width:min(420px, 100%);
  height:48px;
  border:none;
  background:#fff;
  border-radius:999px;
  padding:0 18px;
  outline:none;
  color:#333;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.newsletter-form button{
  height:48px;
  border:none;
  border-radius:999px;
  padding:0 24px;
  background:#1f5a33;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

.site-footer-main{
  background:#fff;
  padding:34px 0 16px;
}

.footer-main-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .9fr 1fr 1fr;
  gap:26px;
  padding:34px 0 24px;
  border-top:1px solid #ece7de;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  font-weight:700;
  color:#222;
}

.footer-logo img{
  width:34px;
  height:34px;
  object-fit:contain;
}

.footer-brand p{
  max-width:280px;
  color:#8a877e;
  font-size:13px;
  margin:0 0 16px;
}

.footer-socials{
  display:flex;
  gap:10px;
}

.footer-socials a{
  width:30px;
  height:30px;
  border-radius:50%;
  background:#f3efe8;
  color:#1f5a33;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
}

.footer-links h4{
  margin:0 0 14px;
  font-size:14px;
  color:#222;
}

.footer-links a,
.footer-links p{
  display:block;
  margin:0 0 10px;
  color:#8a877e;
  font-size:13px;
  line-height:1.7;
}

.footer-bottom{
  border-top:1px solid #ece7de;
  padding-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.footer-bottom p{
  margin:0;
  color:#8a877e;
  font-size:12px;
}

.footer-bottom-right{
  display:flex;
  align-items:center;
  gap:8px;
  color:#8a877e;
  font-size:12px;
}

@media (max-width: 991px){
  .footer-main-grid{
    grid-template-columns:1fr 1fr;
  }

  .newsletter-title{
    font-size:34px;
  }
}

@media (max-width: 767px){
  .newsletter-title{
    font-size:28px;
  }

  .footer-main-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

.cart-link{
  position:relative;
}

.cart-count{
  position:absolute;
  top:-8px;
  right:-10px;
  min-width:18px;
  height:18px;
  border-radius:999px;
  background:#1f5a33;
  color:#fff;
  font-size:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 4px;
}

.product-tab-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#f2ede5;
  color:#444;
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  white-space:nowrap;
}
