    :root{
      --dark:#2b1b12;
      --brown:#7a4728;
      --gold:#c99745;
      --cream:#fff7ea;
      --green:#123b36;
      --light:#fffaf3;
    }

    *{box-sizing:border-box}

    body{
      font-family:'Inter',sans-serif;
      background:var(--light);
      color:var(--dark);
      overflow-x:hidden;
    }

    h1,h2,h3,h4,h5{
      font-family:'Cinzel',serif;
      font-weight:700;
    }

    a{text-decoration:none}

    .navbar{
      background:rgba(255,250,243,.95);
      backdrop-filter:blur(15px);
      box-shadow:0 10px 35px rgba(0,0,0,.08);
    }

    .logo{
      height:62px;
      object-fit:contain;
    }

    .nav-link{
      font-weight:700;
      color:var(--dark);
      margin:0 8px;
    }

    .nav-link:hover{
      color:var(--gold);
    }

    .btn-main{
      background:linear-gradient(135deg,var(--brown),var(--gold));
      color:#fff;
      border-radius:50px;
      padding:12px 28px;
      font-weight:700;
      border:0;
      box-shadow:0 14px 30px rgba(122,71,40,.25);
    }

    .btn-main:hover{
      color:#fff;
      transform:translateY(-2px);
    }

    .section-padding{
      padding:90px 0;
    }

    .section-badge{
      display:inline-flex;
      gap:8px;
      align-items:center;
      background:#fff;
      color:var(--brown);
      border:1px solid rgba(122,71,40,.15);
      padding:9px 18px;
      border-radius:50px;
      font-weight:700;
      margin-bottom:15px;
    }

    .section-title{
      font-size:clamp(32px,4vw,52px);
      color:var(--brown);
      margin-bottom:18px;
    }

    /* Hero Carousel */
    .hero-slide{
      min-height:100vh;
      padding:140px 0 80px;
      background:
        radial-gradient(circle at top left,rgba(201,151,69,.25),transparent 35%),
        linear-gradient(135deg,#fff8ec,#fff0d7,#f6dba9);
      display:flex;
      align-items:center;
    }

    .hero-title{
      font-size:clamp(42px,6vw,82px);
      line-height:1.05;
      color:var(--dark);
    }

    .hero-title span{
      color:var(--brown);
    }

    .hero-text{
      color:#5b4638;
      font-size:18px;
      line-height:1.8;
      max-width:620px;
      margin:24px 0 32px;
    }

    .hero-product-box{
      /* background:rgba(255,255,255,.65); */
      /* border:1px solid rgba(122,71,40,.14); */
      border-radius:45px;
      padding:28px;
      /* box-shadow:0 35px 90px rgba(122,71,40,.18); */
      position:relative;
    }

    .hero-product{
      width:100%;
      max-height:400px;
      object-fit:contain;
      filter:drop-shadow(0 35px 35px rgba(43,27,18,.22));
    }

    .floating-tag{
      position:absolute;
      left:25px;
      bottom:25px;
      background:#fff;
      padding:15px 20px;
      border-radius:22px;
      box-shadow:0 15px 35px rgba(0,0,0,.12);
      color:var(--brown);
      font-weight:800;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
      background-color:var(--brown);
      border-radius:50%;
      padding:22px;
    }

    /* About */
    .about{
      background:var(--cream);
    }

    .about-img{
      background:#fff;
      border-radius:35px;
      padding:25px;
      box-shadow:0 25px 70px rgba(122,71,40,.15);
    }

    .about-img img{
      width:100%;
      border-radius:28px;
    }

    /* Products */
    .product-card{
      background:#fff;
      border-radius:35px;
      overflow:hidden;
      height:100%;
      box-shadow:0 25px 70px rgba(122,71,40,.13);
      transition:.3s;
      border:1px solid rgba(122,71,40,.08);
    }

    .product-card:hover{
      transform:translateY(-10px);
    }

    .product-img{
      height:430px;
      width:100%;
      object-fit:contain;
      background:#f6f0e8;
      padding:22px;
    }

    .product-content{
      padding:30px;
    }

    .price-tag{
      display:inline-block;
      background:#f5e2bd;
      color:var(--brown);
      padding:8px 16px;
      border-radius:50px;
      font-weight:800;
      margin-bottom:12px;
    }

    /* Features */
    .feature-card{
      background:#fff;
      padding:32px;
      border-radius:28px;
      height:100%;
      box-shadow:0 15px 45px rgba(0,0,0,.08);
    }

    .feature-card i{
      width:62px;
      height:62px;
      background:linear-gradient(135deg,var(--brown),var(--gold));
      color:#fff;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:18px;
      font-size:28px;
      margin-bottom:22px;
    }

    /* Contact */
    .contact-box{
      background:linear-gradient(135deg,var(--green),var(--brown));
      color:#fff;
      border-radius:40px;
      padding:50px;
      box-shadow:0 30px 80px rgba(18,59,54,.22);
    }

    .contact-item{
      display:flex;
      gap:15px;
      margin-bottom:18px;
    }

    .contact-item i{
      color:#ffd88c;
      font-size:24px;
    }

    .contact-item a{
      color:#fff;
    }


    @media(max-width:991px){
      .hero-slide{
        text-align:center;
        padding-top:130px;
      }

      .hero-text{
        margin-left:auto;
        margin-right:auto;
      }

      .floating-tag{
        position:static;
        margin-top:18px;
      }

      .product-img{
        height:330px;
      }

      .contact-box{
        padding:30px;
      }
    }

    @media(max-width:575px){
      .logo{
        height:48px;
      }

      .hero-slide{
        min-height:auto;
      }
    }

    /* products */
    .product-premium{
  position:relative;
  background:
    radial-gradient(circle at top right, rgba(201,151,69,.22), transparent 35%),
    linear-gradient(180deg,#fffaf3 0%,#fff2df 100%);
  overflow:hidden;
}

.product-premium-card{
  position:relative;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  border:1px solid rgba(122,71,40,.14);
  border-radius:42px;
  padding:18px;
  height:100%;
  box-shadow:0 30px 80px rgba(122,71,40,.16);
  transition:.35s ease;
}

.product-premium-card:hover{
  transform:translateY(-12px);
  box-shadow:0 40px 100px rgba(122,71,40,.24);
}

.product-premium-img-wrap{
  position:relative;
  background:linear-gradient(145deg,#f8ead2,#fffaf3);
  border-radius:34px;
  min-height:470px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.product-premium-img-wrap:before{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  background:rgba(201,151,69,.22);
  border-radius:50%;
  filter:blur(5px);
}

.product-premium-img{
  position:relative;
  z-index:2;
  width:100%;
  max-height:430px;
  object-fit:contain;
  filter:drop-shadow(0 28px 28px rgba(43,27,18,.24));
  transition:.35s ease;
}

.product-premium-card:hover .product-premium-img{
  transform:scale(1.045);
}

.product-label{
  position:absolute;
  top:22px;
  left:22px;
  z-index:5;
  background:#fff;
  color:#7a4728;
  border-radius:50px;
  padding:9px 16px;
  font-weight:800;
  font-size:13px;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.product-content-premium{
  padding:28px 12px 8px;
}

.product-content-premium h3{
  font-size:30px;
  color:#2b1b12;
  margin-bottom:12px;
}

.product-content-premium p{
  color:#655144;
  line-height:1.8;
}

.product-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin:22px 0 28px;
}

.product-point{
  background:#fff7ea;
  border:1px solid rgba(122,71,40,.1);
  border-radius:16px;
  padding:12px;
  font-size:14px;
  font-weight:700;
  color:#6b3f22;
}

.product-point i{
  color:#c99745;
  margin-right:6px;
}

.product-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn-outline-product{
  border:1px solid rgba(122,71,40,.35);
  color:#7a4728;
  background:#fff;
  border-radius:50px;
  padding:12px 24px;
  font-weight:800;
}

.btn-outline-product:hover{
  background:#7a4728;
  color:#fff;
}

@media(max-width:575px){
  .product-premium-img-wrap{
    min-height:360px;
  }

  .product-premium-img{
    max-height:320px;
  }

  .product-points{
    grid-template-columns:1fr;
  }

  .product-content-premium h3{
    font-size:25px;
  }
}
    /* products */

    /* export section */
    .export-section{
  background:
    radial-gradient(circle at top left, rgba(201,151,69,.22), transparent 35%),
    linear-gradient(135deg,#123b36 0%,#2b1b12 55%,#7a4728 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.export-section .section-title{
  color:#fff;
}

.export-text{
  color:#f3dfc2;
  line-height:1.9;
  font-size:17px;
  max-width:650px;
}

.export-list{
  display:grid;
  gap:14px;
  margin-top:26px;
}

.export-list div{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:14px 18px;
  color:#fff3dc;
  font-weight:600;
}

.export-list i{
  color:#ffd88c;
  margin-right:8px;
}

.export-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(18px);
  border-radius:40px;
  padding:42px;
  box-shadow:0 30px 90px rgba(0,0,0,.25);
}

.export-icon{
  width:86px;
  height:86px;
  background:linear-gradient(135deg,#c99745,#fff0c9);
  color:#2b1b12;
  border-radius:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  margin-bottom:24px;
}

.export-card h3{
  color:#fff;
  font-size:34px;
}

.export-card p{
  color:#f3dfc2;
  line-height:1.8;
}

.export-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:28px;
}

.export-mini-grid div{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  padding:18px;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
}

.export-mini-grid i{
  color:#ffd88c;
  font-size:24px;
}

@media(max-width:575px){
  .export-card{
    padding:28px;
  }

  .export-mini-grid{
    grid-template-columns:1fr;
  }

  .export-card h3{
    font-size:28px;
  }
}

/* export end */

/* testimonial */
.testimonial-section{
  background:
    radial-gradient(circle at top right, rgba(201,151,69,.18), transparent 35%),
    linear-gradient(180deg,#fffaf3 0%,#fff1dc 100%);
  overflow:hidden;
}

.testimonial-subtitle{
  max-width:680px;
  margin:0 auto;
  color:#6b5a4d;
  line-height:1.8;
}

.testimonial-card{
  position:relative;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(122,71,40,.12);
  border-radius:34px;
  padding:38px 30px;
  min-height:340px;
  box-shadow:0 25px 70px rgba(122,71,40,.14);
  transition:.35s ease;
}

.testimonial-card:hover{
  transform:translateY(-8px);
}

.quote-icon{
  width:58px;
  height:58px;
  background:linear-gradient(135deg,#7a4728,#c99745);
  color:#fff;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  margin-bottom:22px;
}

.testimonial-card p{
  color:#5e4939;
  line-height:1.8;
  font-size:16px;
  margin-bottom:20px;
}

.stars{
  color:#c99745;
  margin-bottom:18px;
  letter-spacing:2px;
}

.testimonial-card h5{
  color:#2b1b12;
  margin-bottom:4px;
  font-size:20px;
}

.testimonial-card span{
  color:#7a4728;
  font-weight:700;
  font-size:14px;
}

.testimonialSwiper{
  padding:15px 5px 65px;
}

.testimonialSwiper .swiper-pagination-bullet{
  width:12px;
  height:12px;
  background:#7a4728;
  opacity:.35;
}

.testimonialSwiper .swiper-pagination-bullet-active{
  opacity:1;
  background:#c99745;
}

@media(max-width:575px){
  .testimonial-card{
    padding:30px 24px;
    min-height:auto;
  }
}

.about-breadcrumb-banner{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        rgba(18,59,54,.70),
        rgba(43,27,18,.75)
    ),
    url('images/about-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.about-breadcrumb-banner::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(201,151,69,.15);
    border-radius:50%;
    top:-150px;
    right:-120px;
    filter:blur(20px);
}

.breadcrumb-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.page-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    color:#ffd88c;
    font-weight:600;
    margin-bottom:20px;
}

.page-tag i{
    font-size:16px;
}

.breadcrumb-content h1{
    font-size:70px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
    font-family:'Cinzel', serif;
}

.custom-breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    padding:0;
    margin:0;
    list-style:none;
}

.custom-breadcrumb li{
    color:#fff;
    font-size:17px;
}

.custom-breadcrumb a{
    color:#ffd88c;
    text-decoration:none;
    font-weight:600;
}

.custom-breadcrumb a:hover{
    color:#fff;
}

.custom-breadcrumb .active{
    color:#fff;
    font-weight:600;
}

@media(max-width:991px){

    .about-breadcrumb-banner{
        min-height:350px;
    }

    .breadcrumb-content h1{
        font-size:50px;
    }
}

@media(max-width:576px){

    .about-breadcrumb-banner{
        min-height:300px;
    }

    .breadcrumb-content h1{
        font-size:38px;
    }

    .custom-breadcrumb li{
        font-size:15px;
    }
}

.swajan-footer{
    background:
    linear-gradient(
        135deg,
        #1c120c 0%,
        #2b1b12 45%,
        #6b3f22 100%
    );
    color:#fff;
    padding:90px 0 25px;
}

.footer-logo{
    height:80px;
    margin-bottom:20px;
}

.footer-about{
    color:#d8c2a7;
    line-height:1.9;
    margin-bottom:25px;
}

.footer-title{
    color:#fff;
    margin-bottom:25px;
    font-size:22px;
    position:relative;
}

.footer-title:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:3px;
    background:#c99745;
    border-radius:10px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#d8c2a7;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#c99745;
    padding-left:8px;
}

.footer-contact div{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    align-items:flex-start;
}

.footer-contact i{
    color:#c99745;
    font-size:18px;
    margin-top:3px;
}

.footer-contact span,
.footer-contact a{
    color:#d8c2a7;
    text-decoration:none;
    line-height:1.7;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.footer-social a:hover{
    background:#c99745;
    transform:translateY(-4px);
}

.footer-divider{
    border-color:rgba(255,255,255,.12);
    margin:45px 0 25px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
}

.footer-bottom p{
    color:#d8c2a7;
    margin:0;
    font-size:14px;
}

@media(max-width:768px){

    .swajan-footer{
        text-align:center;
    }

    .footer-title:after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-contact div{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-bottom{
        justify-content:center;
    }
}

.products-breadcrumb-banner{
    position:relative;
    min-height:450px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        rgba(18,59,54,.65),
        rgba(43,27,18,.75)
    ),
    url('images/products-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.products-breadcrumb-banner::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(201,151,69,.12);
    border-radius:50%;
    top:-180px;
    right:-120px;
    filter:blur(15px);
}

.products-breadcrumb-banner::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-150px;
    left:-120px;
}

.breadcrumb-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.page-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    color:#ffd88c;
    font-weight:600;
    margin-bottom:20px;
}

.page-tag i{
    font-size:18px;
}

.breadcrumb-content h1{
    color:#fff;
    font-size:72px;
    font-family:'Cinzel', serif;
    margin-bottom:15px;
}

.breadcrumb-desc{
    color:#f4e5cf;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 25px;
}

.custom-breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    list-style:none;
    padding:0;
    margin:0;
}

.custom-breadcrumb li{
    color:#fff;
}

.custom-breadcrumb a{
    color:#ffd88c;
    text-decoration:none;
    font-weight:600;
}

.custom-breadcrumb a:hover{
    color:#fff;
}

.custom-breadcrumb .active{
    color:#fff;
    font-weight:600;
}

@media(max-width:991px){

    .products-breadcrumb-banner{
        min-height:380px;
    }

    .breadcrumb-content h1{
        font-size:52px;
    }
}

@media(max-width:576px){

    .products-breadcrumb-banner{
        min-height:320px;
    }

    .breadcrumb-content h1{
        font-size:38px;
    }

    .breadcrumb-desc{
        font-size:15px;
    }

    .custom-breadcrumb{
        flex-wrap:wrap;
    }
}

.b2b-products-section{
  background:
    radial-gradient(circle at top right, rgba(201,151,69,.16), transparent 35%),
    linear-gradient(180deg,#fffaf3 0%,#fff1dd 100%);
}

.b2b-product-subtitle{
  max-width:700px;
  margin:0 auto;
  color:#6b5a4d;
  line-height:1.8;
}

.b2b-product-card{
  background:#fff;
  border:1px solid rgba(122,71,40,.12);
  border-radius:26px;
  overflow:hidden;
  height:100%;
  box-shadow:0 18px 45px rgba(122,71,40,.12);
  transition:.35s ease;
}

.b2b-product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 70px rgba(122,71,40,.18);
}

.b2b-product-img{
  height:210px;
  background:linear-gradient(145deg,#f8ead2,#fffaf3);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.b2b-product-img img{
  max-width:100%;
  max-height:180px;
  object-fit:contain;
  filter:drop-shadow(0 18px 18px rgba(43,27,18,.18));
  transition:.35s ease;
}

.b2b-product-card:hover .b2b-product-img img{
  transform:scale(1.05);
}

.b2b-product-content{
  padding:22px;
}

.b2b-tag{
  display:inline-block;
  background:#fff3dc;
  color:#7a4728;
  border:1px solid rgba(122,71,40,.12);
  padding:6px 13px;
  border-radius:50px;
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.b2b-product-content h4{
  font-size:20px;
  color:#2b1b12;
  margin-bottom:10px;
}

.b2b-product-content p{
  color:#655144;
  font-size:14px;
  line-height:1.7;
  margin-bottom:20px;
}

.b2b-buttons{
  display:flex;
  gap:10px;
}

.b2b-btn-primary,
.b2b-btn-outline{
  flex:1;
  text-align:center;
  border-radius:50px;
  padding:10px 12px;
  font-size:13px;
  font-weight:800;
  text-decoration:none;
}

.b2b-btn-primary{
  background:linear-gradient(135deg,#7a4728,#c99745);
  color:#fff;
}

.b2b-btn-outline{
  background:#fff;
  color:#7a4728;
  border:1px solid rgba(122,71,40,.28);
}

.b2b-btn-primary:hover{
  color:#fff;
  transform:translateY(-2px);
}

.b2b-btn-outline:hover{
  background:#7a4728;
  color:#fff;
}

@media(max-width:575px){
  .b2b-product-img{
    height:190px;
  }

  .b2b-buttons{
    flex-direction:column;
  }
}

.product-detail-breadcrumb{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.jar-breadcrumb{
  background:
  linear-gradient(rgba(18,59,54,.68),rgba(43,27,18,.78)),
  url('jaggery-jar.jpeg') center/cover no-repeat;
}

.pouch-breadcrumb{
  background:
  linear-gradient(rgba(18,59,54,.68),rgba(43,27,18,.78)),
  url('jaggery-pouch.jpeg') center/cover no-repeat;
}

.breadcrumb-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
}

.page-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border-radius:50px;
  background:rgba(255,255,255,.13);
  color:#ffd88c;
  font-weight:700;
  margin-bottom:18px;
}

.breadcrumb-content h1{
  font-size:clamp(38px,5vw,68px);
  color:#fff;
  margin-bottom:20px;
  font-family:'Cinzel',serif;
}

.custom-breadcrumb{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  list-style:none;
  padding:0;
  margin:0;
  flex-wrap:wrap;
}

.custom-breadcrumb li,
.custom-breadcrumb .active{
  color:#fff;
  font-weight:600;
}

.custom-breadcrumb a{
  color:#ffd88c;
  text-decoration:none;
  font-weight:700;
}

.product-detail-section{
  background:
  radial-gradient(circle at top right,rgba(201,151,69,.15),transparent 35%),
  linear-gradient(180deg,#fffaf3 0%,#fff1dd 100%);
}

.detail-image-box{
  background:#fff;
  border-radius:35px;
  padding:35px;
  box-shadow:0 25px 70px rgba(122,71,40,.16);
  text-align:center;
}

.detail-image-box img{
  width:100%;
  max-height:520px;
  object-fit:contain;
  filter:drop-shadow(0 25px 25px rgba(43,27,18,.18));
}

.detail-label{
  display:inline-block;
  background:#fff3dc;
  color:#7a4728;
  padding:9px 17px;
  border-radius:50px;
  font-weight:800;
  margin-bottom:18px;
}

.product-detail-section h2{
  color:#2b1b12;
  font-size:clamp(32px,4vw,52px);
  margin-bottom:18px;
}

.product-detail-section p{
  color:#655144;
  line-height:1.9;
  font-size:17px;
}

.detail-points{
  display:grid;
  gap:14px;
  margin:28px 0;
}

.detail-points div{
  background:#fff;
  border:1px solid rgba(122,71,40,.1);
  border-radius:16px;
  padding:15px 18px;
  color:#6b3f22;
  font-weight:700;
}

.detail-points i{
  color:#c99745;
  margin-right:8px;
}

.detail-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn-detail-outline{
  border:1px solid rgba(122,71,40,.3);
  color:#7a4728;
  background:#fff;
  border-radius:50px;
  padding:12px 26px;
  font-weight:800;
  text-decoration:none;
}

.btn-detail-outline:hover{
  background:#7a4728;
  color:#fff;
}

@media(max-width:575px){
  .product-detail-breadcrumb{
    min-height:320px;
  }

  .detail-image-box{
    padding:22px;
  }

  .detail-actions{
    flex-direction:column;
  }

  .detail-actions a{
    text-align:center;
  }
}

.contact-breadcrumb{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(rgba(18,59,54,.70),rgba(43,27,18,.78)),
    url('images/contact-banner.jpg') center/cover no-repeat;
  overflow:hidden;
}

.contact-breadcrumb:before{
  content:"";
  position:absolute;
  width:480px;
  height:480px;
  background:rgba(201,151,69,.14);
  border-radius:50%;
  top:-160px;
  right:-120px;
  filter:blur(16px);
}

.breadcrumb-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
}

.page-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border-radius:50px;
  background:rgba(255,255,255,.13);
  color:#ffd88c;
  font-weight:700;
  margin-bottom:18px;
}

.breadcrumb-content h1{
  font-size:clamp(38px,5vw,70px);
  color:#fff;
  margin-bottom:20px;
  font-family:'Cinzel',serif;
}

.custom-breadcrumb{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  list-style:none;
  padding:0;
  margin:0;
  flex-wrap:wrap;
}

.custom-breadcrumb li,
.custom-breadcrumb .active{
  color:#fff;
  font-weight:600;
}

.custom-breadcrumb a{
  color:#ffd88c;
  text-decoration:none;
  font-weight:700;
}

.contact-page-section{
  background:
    radial-gradient(circle at top right,rgba(201,151,69,.15),transparent 35%),
    linear-gradient(180deg,#fffaf3 0%,#fff1dd 100%);
}

.contact-info-card{
  background:#fff;
  border:1px solid rgba(122,71,40,.12);
  border-radius:28px;
  padding:30px;
  height:100%;
  box-shadow:0 18px 50px rgba(122,71,40,.12);
  transition:.3s;
}

.contact-info-card:hover{
  transform:translateY(-8px);
}

.contact-icon{
  width:62px;
  height:62px;
  background:linear-gradient(135deg,#7a4728,#c99745);
  color:#fff;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:20px;
}

.contact-info-card h4{
  color:#2b1b12;
  margin-bottom:12px;
}

.contact-info-card p,
.contact-info-card a{
  color:#655144;
  line-height:1.8;
  text-decoration:none;
  word-break:break-word;
}

.contact-form-box{
  background:#fff;
  border-radius:36px;
  padding:42px;
  box-shadow:0 25px 75px rgba(122,71,40,.14);
  height:100%;
}

.mini-title{
  display:inline-block;
  background:#fff3dc;
  color:#7a4728;
  padding:8px 16px;
  border-radius:50px;
  font-weight:800;
  margin-bottom:16px;
}

.contact-form-box h2{
  font-size:clamp(30px,4vw,46px);
  color:#2b1b12;
  margin-bottom:14px;
}

.contact-form-box p{
  color:#655144;
  line-height:1.8;
  margin-bottom:25px;
}

.custom-input{
  height:56px;
  border-radius:16px;
  border:1px solid rgba(122,71,40,.16);
  background:#fffaf3;
  padding:12px 16px;
  color:#2b1b12;
}

textarea.custom-input{
  height:auto;
}

.custom-input:focus{
  box-shadow:none;
  border-color:#c99745;
  background:#fff;
}

.contact-side-box{
  background:linear-gradient(135deg,#123b36,#7a4728);
  color:#fff;
  border-radius:36px;
  padding:42px;
  height:100%;
  box-shadow:0 25px 75px rgba(18,59,54,.24);
}

.contact-side-box h3{
  font-size:36px;
  margin-bottom:14px;
}

.contact-side-box p{
  color:#f3dfc2;
  line-height:1.8;
}

.direct-contact{
  display:grid;
  gap:14px;
  margin:28px 0;
}

.direct-contact a{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  border-radius:18px;
  padding:15px 18px;
  text-decoration:none;
  font-weight:800;
  transition:.3s;
}

.direct-contact a:hover{
  background:#c99745;
  color:#2b1b12;
}

.direct-contact i{
  margin-right:8px;
}

.business-box{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;
  padding:24px;
}

.business-box h5{
  color:#ffd88c;
  margin-bottom:8px;
}

@media(max-width:575px){
  .contact-breadcrumb{
    min-height:320px;
  }

  .contact-form-box,
  .contact-side-box{
    padding:28px;
  }
}