:root {
  --brand-color:#e57918;
  --brand-color2: #cd2810;
  --brand-color3: #722e0b;
}
*{
    margin: 0;
    padding: 0;
    /* overflow-x: hidden; */
}
/* header top section start  */
.header_top{
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 20px;
    border-bottom: 1px solid var(--brand-color3);
}
.header_top_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.phone_email{
    display: inline-flex;
    gap: 20px;
    color: var(--brand-color);
}
.h_t_c_phone{
    font-family: bangla_title;
    font-size: 20px;
    transition: all .4s ease-in-out;
}
.h_t_c_email{
    font-family: font_english;
    margin-top: 5px;
    transition: all .2s ease-in-out;
}
.h_t_c_phone:hover , .h_t_c_email:hover{
    color: var(--brand-color2);
}
.header_top_col a{
    color:var(--brand-color);
    transition: all .3s ease-in-out;
}
.header_top_col a:hover{
    color: var(--brand-color2);
}
@media(max-width:668px){
    .h_t_c_email{
    display: none;
 }
}
@media(max-width:500px){
 .header_top{
    zoom: 77%;
 }
 .header{
    zoom: 77%;
 }
}
/* header top section end  */
/* hero section start */
.hero {
    width: 100%;
    height: 700px;
    background-image: url('../images/hero_banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 0;
}

/* overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.25)
    );
}

/* content */
.hero-content {
    position: relative;
    max-width: 900px;
    padding: 40px 60px;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    animation: heroContentFade 1.2s ease-out forwards;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.25;
    margin-bottom: 16px;
    font-family: bangla_title;
    font-weight: 100;
    animation: titleGlow 4s ease-in-out infinite;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    font-family: bangla_des;
    animation: subtleFloat 6s ease-in-out infinite;
}

/* buttons */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    font-family: bangla_des;
}

.btn {
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    animation: pulseButton 3.5s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(249,115,22,0.45);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
    transform: translateY(-4px);
}

/* animations */
@keyframes heroContentFade {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 0 rgba(249,115,22,0);
    }
    50% {
        text-shadow: 0 0 18px rgba(249,115,22,0.35);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 0 0 rgba(249,115,22,0);
    }
    50% {
        box-shadow: 0 0 25px rgba(249,115,22,0.45);
    }
}

/* responsive */
@media (max-width: 768px) {
    .hero {
        height: 420px;
    }

    .hero-content {
        padding: 28px 18px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .hero {
        zoom: 77%;
    }
}
/* hero section end */
/* catagory section start  */
.category_section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.category_container {
    max-width: 1300px;
    margin: auto;
}

.section_header {
    text-align: center;
    margin-bottom: 50px;
}

.section_header h2 {
    font-size: 36px;
    font-family: bangla_title;
    margin-bottom: 10px;
    color: var(--brand-color);
    font-weight: 200;
}

.section_header p {
    font-size: 17px;
    font-family: bangla_des;
    color: #555;
}

.category_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category_card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

.category_card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.15)
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background 0.4s ease;
}

.category_overlay h3 {
    color: #fff;
    font-size: 22px;
    font-family: bangla_title;
}

.category_card:hover img {
    transform: scale(1.08);
}

.category_card:hover .category_overlay {
    background: linear-gradient(
        to top,
        rgba(249,115,22,0.75),
        rgba(0,0,0,0.2)
    );
}

/* responsive */
@media (max-width: 992px) {
    .category_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category_grid {
        grid-template-columns: 1fr;
    }

    .section_header h2 {
        font-size: 28px;
    }
}
@media(max-width:500px){
    .category_section{
        zoom: 77%;
    }
}
/* catagory section end  */
/* feture section start  */
.featured_section {
    padding: 60px 20px;
    background: #ffffff;
}

.featured_container {
    max-width: 1300px;
    margin: auto;
}

.section_header {
    text-align: center;
    margin-bottom: 50px;
}

.section_header h2 {
    font-size: 36px;
    font-family: bangla_title;
    margin-bottom: 10px;
}

.section_header p {
    font-size: 17px;
    font-family: bangla_des;
    color: #555;
}

/* ===== SWIPER FIX ===== */
.featuredSwiper {
    width: 100%;
    padding-bottom: 60px;
}

.swiper-wrapper {
    box-sizing: border-box;
}

.swiper-slide {
    height: auto;                 /* IMPORTANT */
    display: flex;
    justify-content: center;
}

/* card */
.product_card {
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgb(138, 138, 138);
    transition: all 0.45s ease;
}

.product_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

.product_img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product_card:hover img {
    transform: scale(1.1);
}

.product_info {
    padding: 22px;
    text-align: center;
}

.product_info h3 {
    font-size: 20px;
    font-family: bangla_title;
    margin-bottom: 14px;
    font-weight: 200;
}

.product_btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-family: bangla_des;
    text-decoration: none;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    transition: all 0.35s ease;
}

.product_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(249,115,22,0.45);
}

/* arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #f97316;
}
@media(max-width:500px){
    .featured_section {
    zoom: 77%;
    }
}
/* feture section end  */
/* product section start  */
.category_products{
    max-width:1300px;
    margin:auto;
    padding:60px 20px;
}
.category_block{ margin-bottom:90px; }

.category_title h2{
    font-family:bangla_title;
    font-size:34px;
    color:var(--brand-color);
    font-weight:200;
}
.category_title p{ color:#555; }

.category_header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:20px 0;
}
.see_more{
    color:#f97316;
    font-size:15px;
    transition:.3s;
}
.see_more:hover{ transform:translateX(6px); }

/* ===== SLIDER ===== */
.productSwiper{
    padding:10px 5px 60px;
}
.swiper-slide{ height:auto; }

/* ===== CARD ===== */
.product_card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.45s;
}
.product_card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.18);
}
.product_card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition: all .2s ease-in-out;
}
.product_info{
    padding:16px;
    text-align:center;
}
.product_info h3{
    font-size:16px;
    margin-bottom:8px;
}

/* stock */
.stock{
    display:inline-block;
    margin-bottom:14px;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
}
.stock.in{ background:#e7f8ef; color:#1e7f43; }
.stock.out{ background:#fde8e8; color:#b91c1c; }

/* actions */
.product_actions{
    display:flex;
    gap:10px;
    justify-content:center;
}
.btn{
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    transition:.3s;
}
.btn_buy{
    background:linear-gradient(135deg,#f97316,#fb923c);
    color:#fff;
}
.btn_buy:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(249,115,22,.45);
}
.btn_details{
    border:1.5px solid #ccc;
    color:#333;
}
.btn_details:hover{
    background:#111;
    color:#fff;
    border-color:#111;
}

/* arrows */
.swiper-button-next,
.swiper-button-prev{
    color:#f97316;
}

/* responsive */
@media(max-width:576px){
    .category_header{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
}
@media(max-width:500px){
    .category_products{
        zoom: 77%;
    }
}
/* product section end  */
/* how to order sectiono start  */
/* ===== HOW TO ORDER ===== */
.how_order_section{
    padding:60px 20px;
    background:#fafafa;
}

.how_order_container{
    max-width:1300px;
    margin:auto;
}

.how_order_header{
    text-align:center;
    margin-bottom:60px;
}

.how_order_header h2{
    font-family: bangla_title;
    font-size:38px;
    margin-bottom:10px;
    color: var(--brand-color);
    font-weight: 200;
}

.how_order_header p{
    font-family: bangla_des;
    font-size:17px;
    color:#555;
}

/* steps grid */
.how_order_steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* step card */
.order_step{
    background:#ffffff;
    padding:34px 26px;
    border-radius:20px;
    text-align:center;
    position:relative;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    transition:all .45s ease;
    opacity:0;
    transform:translateY(40px);
}

.order_step:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 28px 60px rgba(0,0,0,0.18);
}

/* icon */
.step_icon{
    width:78px;
    height:78px;
    margin:0 auto 18px;
    border-radius:50%;
    background:linear-gradient(135deg,#f97316,#fb923c);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#fff;
    transition:.4s;
}

.order_step:hover .step_icon{
    transform:rotate(8deg) scale(1.1);
}

/* text */
.order_step h3{
    font-family: bangla_title;
    font-size:20px;
    margin-bottom:10px;
    font-weight: 100;
    color: var(--brand-color);
}

.order_step p{
    font-family: bangla_des;
    font-size:15px;
    line-height:1.7;
    color:#555;
}

/* step number */
.step_number{
    position:absolute;
    top:18px;
    right:22px;
    font-size:44px;
    font-weight:700;
    color:rgba(0,0,0,0.06);
}

/* animation active */
.order_step.show{
    opacity:1;
    transform:translateY(0);
}

/* responsive */
@media(max-width:992px){
    .how_order_steps{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .how_order_steps{
        grid-template-columns:1fr;
    }
    .how_order_header h2{
        font-size:30px;
    }
}
/* how to order sectiono end  */
/* service section start  */
.service_section{
    padding:60px 20px;
    background:#fafafa;
}

.service_container{
    max-width:1300px;
    margin:auto;
}

.service_title{
    text-align:center;
    margin-bottom:60px;
}

.service_title h2{
    font-family:bangla_title;
    font-size:36px;
    color:var(--brand-color);
    margin-bottom:8px;
    font-weight: 200;
}

.service_title p{
    color:#555;
    font-size:16px;
}

.service_grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* FLIP CARD */
.flip_card{
    perspective:1000px;
}

.flip_inner{
    position:relative;
    width:100%;
    height:220px;
    transition:transform .8s;
    transform-style:preserve-3d;
}

.flip_card:hover .flip_inner,
.flip_card.active .flip_inner{
    transform:rotateY(180deg);
}

.flip_front,
.flip_back{
    position:absolute;
    inset:0;
    border-radius:18px;
    backface-visibility:hidden;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:30px;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.flip_front{
    background:#fff;
}

.flip_front i{
    font-size:46px;
    color:#f97316;
    margin-bottom:14px;
}

.flip_front h3{
    font-size:25px;
    color: var(--brand-color);
    font-family: bangla_title;
    font-weight: 200;
}

.flip_back{
    background:linear-gradient(135deg,#f97316,#fb923c);
    color:#fff;
    transform:rotateY(180deg);
    text-align:center;
}

.flip_back h3{
    font-size:25px;
    margin-bottom:8px;
    font-family: bangla_title;
    font-weight: 200;
}

.flip_back p{
    font-size:15px;
    line-height:1.6;
    font-family: bangla_des;
}

/* RESPONSIVE */
@media(max-width:992px){
    .service_grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .service_grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:500px){
    .service_section{
        zoom: 77%;
    }
}
/* service section end  */
/* final cta section start  */
.final_cta{
    padding:60px 20px;
    background:linear-gradient(135deg,#f97316,#fb923c);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.cta_container{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

.cta_content{
    text-align:center;
    animation:fadeUp 1s ease forwards;
}

.cta_content h2{
    font-family:bangla_title;
    font-size:40px;
    margin-bottom:14px;
    font-weight: 100;
}

.cta_content p{
    font-size:20px;
    line-height:1.7;
    max-width:720px;
    margin:0 auto 32px;
    opacity:.95;
    font-family: bangla_des;
}

.cta_actions{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
}

.cta_btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    background:#fff;
    color:#16a34a;
    font-size:20px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 18px 40px rgba(0,0,0,.25);
    transition:.4s ease;
    animation:pulse 2.5s infinite;
    font-family: bangla_title;
    font-weight: 100;
}

.cta_btn i{
    font-size:22px;
}

.cta_btn:hover{
    transform:translateY(-6px) scale(1.04);
    box-shadow:0 28px 55px rgba(0,0,0,.35);
}

.cta_note{
    font-size:14px;
    opacity:.9;
    font-family: bangla_des;
}

/* floating shapes */
.cta_shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    animation:float 8s infinite ease-in-out;
}

.shape1{
    width:180px;
    height:180px;
    top:-60px;
    left:-60px;
}

.shape2{
    width:120px;
    height:120px;
    bottom:-40px;
    right:60px;
    animation-delay:2s;
}

.shape3{
    width:80px;
    height:80px;
    top:40%;
    right:-30px;
    animation-delay:4s;
}

/* animations */
@keyframes fadeUp{
    from{opacity:0;transform:translateY(40px);}
    to{opacity:1;transform:translateY(0);}
}

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(34,197,94,.6);}
    70%{box-shadow:0 0 0 22px rgba(34,197,94,0);}
    100%{box-shadow:0 0 0 0 rgba(34,197,94,0);}
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-20px);}
}

/* responsive */
@media(max-width:768px){
    .cta_content h2{
        font-size:28px;
    }
    .cta_content p{
        font-size:16px;
    }
}
@media(max-width:500px){
    .final_cta{
        zoom: 77%;
    }
}
/* final cta section end  */
/* contact section start  */
.contact{
  padding: 60px 20px;
  background:#f9fafb;
}

.contact_container{
  max-width:1300px;
  margin:auto;
}

#title_problem_three{
  font-size:36px;
  font-family:bangla_title;
  color:#f97316;
  margin-bottom:10px;
  text-align: center;
  font-weight: 200;
}
#subtitle{
    font-size: 20px;
    font-family: bangla_des;
    text-align: center;
}

#title_problem_three .bar{
  color:#f97316;
  margin-right:6px;
}

/* info boxes */
.boxes{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  padding:30px 0;
}

.box_col{
  display:flex;
  align-items:center;
  gap:12px;
  padding:18px;
  /* background:#fff; */
  border-radius:14px;
  /* box-shadow:0 10px 30px rgba(0,0,0,.08); */
  transition:.4s;
}

.box_col:hover{
  transform:translateY(-6px);
}

.box_col #c_icon{
  font-size:22px;
  padding:14px;
  background:linear-gradient(135deg,#f97316,#fb923c);
  color:#fff;
  border-radius:50%;
}

.box_col p{
  font-size:15px;
  color:#333;
  font-family: bangla_des;
}

/* map + form */
.map_form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.map_form_col iframe{
  width:100%;
  height:450px;
  border-radius:16px;
  border:0;
  box-shadow:0 18px 45px rgba(0,0,0,.1);
}

.contact_text{
  font-size:15px;
  color:#555;
  margin-bottom:20px;
  font-family: bangla_des;
}

/* inputs */
input,textarea{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1.5px solid #ddd;
  font-size:14px;
  transition:.3s;
  font-family: bangla_des;
}

input:focus,
textarea:focus{
  border-color:#f97316;
  box-shadow:0 0 0 3px rgba(249,115,22,.2);
  outline:none;
}

.input{
  padding-bottom:16px;
}

.input_row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

/* button */
#btn-animated{
  width:100%;
  padding:14px;
  border:none;
  border-radius:40px;
  background:linear-gradient(135deg,#f97316,#fb923c);
  color:#fff;
  font-size:16px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:.4s;
  font-family: bangla_des;
}

#btn-animated:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(249,115,22,.45);
}

/* animation */
.reveal{
  opacity:0;
  transform:translateY(30px);
}

.reveal_left{
  opacity:0;
  transform:translateX(-40px);
}

.reveal_right{
  opacity:0;
  transform:translateX(40px);
}

.show{
  opacity:1;
  transform:none;
  transition:1s ease;
}

/* responsive */
@media(max-width:978px){
    .boxes{
  justify-content:center;
}
}
@media(max-width:1050px){
  .map_form{
    grid-template-columns:1fr;
  }
}

@media(max-width:500px){
  .contact{
    zoom:77%;
  }
}
/* contact section end  */
/* footer section start  */
.footer_final{
    position:relative;
    overflow:hidden;
    padding:120px 20px 40px;
    background:linear-gradient(135deg,#f97316,#fb923c);
    color:#fff;
}

/* bubbles */
.bubble{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.25);
    animation: float 18s infinite ease-in-out;
}

.b1{width:180px;height:180px;top:40px;left:6%;}
.b2{width:120px;height:120px;bottom:80px;left:20%;animation-delay:3s;}
.b3{width:200px;height:200px;top:120px;right:10%;animation-delay:5s;}
.b4{width:90px;height:90px;bottom:120px;right:25%;animation-delay:7s;}

@keyframes float{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-35px)}
}

/* content */
.footer_content{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr;
    gap:50px;
    position:relative;
    z-index:2;
}

/* brand */
.footer_brand h2{
    font-family:bangla_title;
    margin:15px 0 10px;
    font-size:40px;
    font-weight: 200;
}

.footer_brand p{
    font-size:19px;
    line-height:1.7;
    opacity:.95;
    font-family: bangla_des;
}


/* links */
.footer_links h3,
.footer_contact h3{
    margin-bottom:14px;
    font-size:25px;
    font-family: bangla_title;
    font-weight: 200;
}

.footer_links ul{
    list-style:none;
}

.footer_links ul li{
    margin-bottom:10px;
}

.footer_links ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-family: bangla_des;
    font-size: 19px;
}

.footer_links ul li a:hover{
    padding-left:6px;
    opacity:.9;
}

/* contact */
.footer_contact p{
    margin-bottom:10px;
    font-size:16px;
    font-family: bangla_des;
}

/* bottom */
.footer_bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.35);
    text-align:center;
    font-size:14px;
    opacity:.95;
    font-family: bangla_des;
}

/* reveal animation */
.reveal{
    opacity:0;
    transform:translateY(40px);
}

.reveal.show{
    opacity:1;
    transform:translateY(0);
    transition:1s ease;
}

/* responsive */
@media(max-width:992px){
    .footer_content{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){
    .footer_content{
        grid-template-columns:1fr;
        text-align:center;
    }
    .footer_links ul li a:hover{
        padding-left:0;
    }
}
@media(max-width:500px){
    .footer_final{
        zoom: 77%;
    }
}
/* footer section end  */
/* product privew page start  */
.product_wrap{
    display:grid;
    grid-template-columns: 1fr 1.15fr;
    gap:40px;
    padding:45px;
    border-radius:22px;
    max-width: 1300px;
    margin: 0 auto;
}

/* LEFT */
.left_col{
    display:flex;
    flex-direction:column;
    gap:24px;
}

/* GALLERY */
.gallery_wrap{
    display:flex;
    gap:14px;
}

.thumb_list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.thumb_list img{
    width:72px;
    height:72px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    opacity:.6;
    border:2px solid transparent;
    transition:.3s;
}

.thumb_list img.active,
.thumb_list img:hover{
    opacity:1;
    border-color:#f97316;
}

.main_image{
    flex:1;
    border-radius:18px;
    overflow:hidden;
}

.main_image img{
    width:100%;
    height:360px;
    object-fit:cover;
    cursor:zoom-in;
}

/* EXTRA INFO (FILL GAP) */
.left_info{
    background:#fafafa;
    padding:22px;
    border-radius:16px;
    border:1px solid #eee;
}

.left_info h4{
    font-family: bangla_title;
    margin-bottom:10px;
}

.left_info ul{
    padding-left:18px;
    margin:0;
}

.left_info li{
    font-size:14px;
    margin-bottom:6px;
}

/* RIGHT */
.product_right{
    display:flex;
    flex-direction:column;
    gap:26px;
}

/* SUMMARY */
.product_summary{
    background:#fafafa;
    padding:26px;
    border-radius:18px;
    border:1px solid #eee;
}

.summary_title{
    font-family: bangla_title;
    font-size:28px;
    margin-bottom:12px;
}

.summary_meta{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:16px;
}

.price{
    background:#fff1e6;
    color:#c2410c;
    padding:6px 14px;
    border-radius:20px;
    font-size:14px;
}

.stock{
    background:#e7f8ef;
    color:#1e7f43;
    padding:6px 14px;
    border-radius:20px;
    font-size:14px;
}

.product_summary p{
    font-size:15px;
    line-height:1.8;
}

/* FORM */
.order_form{
    background:#fff;
    padding:26px;
    border-radius:18px;
    border:1px solid #eee;
}

.order_form input,
.order_form textarea{
    width:100%;
    padding:12px 14px;
    margin-bottom:14px;
    border-radius:10px;
    border:1px solid #ddd;
}

.order_form button{
    width:100%;
    padding:14px;
    border-radius:40px;
    border:none;
    background:linear-gradient(135deg,#f97316,#fb923c);
    color:#fff;
    font-size:16px;
    cursor:pointer;
}


/* ZOOM */
.zoom_modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999;
}

.zoom_modal img{
    max-width:90%;
    max-height:90%;
}

.zoom_modal span{
    position:absolute;
    top:20px;
    right:30px;
    font-size:36px;
    color:#fff;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:992px){
    .product_wrap{
        grid-template-columns:1fr;
    }
    .gallery_wrap{
        flex-direction:column;
    }
    .thumb_list{
        flex-direction:row;
    }
}
@media(max-width:500px){
    .product_page{
    zoom: 77%;
    }
}
/* product privew page end  */
/* product page start  */
/* ===== Header ===== */
.productss_page_section{
    background:linear-gradient(120deg,#ff8a00,#ff5f00);
    color:#fff;
    padding:60px 20px;
    text-align:center;
}

.productss_page_section h1{
    font-size:38px;
}

.productss_page_section p{
    opacity:.95;
}

/* ===== Container ===== */
.productss_page_container{
    max-width:1300px;
    margin:40px auto 80px;
    padding:0 20px;
}

/* ===== Filter Bar ===== */
.filter-bar{
    display:flex;
    gap:12px;
    margin-bottom:35px;
}

.filter-bar select,
.filter-bar input{
    padding:12px 14px;
    border-radius:6px;
    border:1px solid #ddd;
    font-size:14px;
    width:100%;
}

/* Desktop: one line */
@media(min-width:768px){
    .filter-bar select,
    .filter-bar input{
        width:auto;
        min-width:220px;
    }
}

/* ===== Grid ===== */
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

/* ===== Card ===== */
.product-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
    opacity:0;
    transform:translateY(25px);
}

.product-card.show{
    opacity:1;
    transform:translateY(0);
}

.product-card.hide{
    display:none;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-info{
    padding:18px;
}

.product-info h3{
    font-size:18px;
    margin-bottom:6px;
}

.price{
    color:#ff6a00;
    font-weight:700;
    margin-bottom:12px;
}

.buttons{
    display:flex;
    gap:10px;
}

.buttons a{
    flex:1;
    text-align:center;
    padding:10px;
    font-size:14px;
    border-radius:6px;
    text-decoration:none;
    transition:.3s;
}

.details-btn{
    border:1px solid #ff6a00;
    color:#ff6a00;
}

.details-btn:hover{
    background:#ff6a00;
    color:#fff;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.whatsapp-btn:hover{
    opacity:.9;
}
.stock-badge{
    font-size:13px;
    margin-bottom:12px;
    font-weight:600;
}

.stock-in{
    color:#1b9e4b;
}

.stock-low{
    color:#e6a100;
}

.stock-out{
    color:#d90429;
}
/* ===== See More ===== */
.see-more{
    margin-top:40px;
    text-align:center;
}

.see-more button{
    background:#ff6a00;
    color:#fff;
    border:none;
    padding:14px 34px;
    border-radius:30px;
    font-size:15px;
    cursor:pointer;
    transition:.3s;
}

.see-more button:hover{
    transform:scale(1.05);
}
@media(max-width:500px){
    .page_code{
        zoom: 77%;
    }
}
/* product page end  */
/* about page start  */
/* ===== Hero ===== */
.about-hero{
    background:linear-gradient(120deg,#ff8a00,#ff5f00);
    color:#fff;
    padding:100px 20px;
    text-align:center;
}


/* ===== Container ===== */
.about-container{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
}

/* ===== Section ===== */
.about-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:80px;
}

.about-section.reverse{
    direction:rtl;
}

.about-section.reverse > *{
    direction:ltr;
}

/* ===== Image ===== */
.about-image{
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.about-image img{
    width:100%;
    display:block;
    transition:transform .6s ease;
}

.about-image:hover img{
    transform:scale(1.08);
}

/* ===== Text ===== */
.about-text h2{
    font-size:40px;
    margin-bottom:15px;
    font-family: bangla_title;
    color: var(--brand-color);
    font-weight: 200;
}

.about-text p{
    margin-bottom:20px;
    color:#555;
    font-family: bangla_des;
}

/* ===== Stats ===== */
.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
}

.stat-box{
    background:#fff;
    padding:35px 20px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.stat-box h3{
    font-size:34px;
    color:#ff6a00;
    font-family: bangla_title;
    font-weight: 200;
}

.stat-box span{
    color:#666;
    font-family: bangla_des;
}

/* ===== Animation ===== */
.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ===== Responsive ===== */
@media(max-width:768px){
    .about-section{
        grid-template-columns:1fr;
    }
    .about-hero h1{
        font-size:34px;
    }
}
/* about page end  */