

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
scroll-behavior:smooth;
}

html{
scroll-behavior:smooth;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
}

body{
background:#f6f7f8;
color:#011111;
overflow-x:hidden;
width:100%;
}

/* Mobile bottom nav spacer */
body.has-mobile-bottom-nav {
  padding-bottom: 70px;
}
/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:10px 4%;
background:rgba(0, 10, 10, 0.963);
backdrop-filter:blur(10px);
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
}

.logo-container{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
}

.logo-img{
width: 65px;
height:60px;
object-fit:contain;
}

.logo-text{
display:flex;
flex-direction:column;
align-items:center;
}

.logo{
font-size:32px;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight:bold;
color:#f6f6f4;
}

.nextlogo{
font-size:32px;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight:bold;
color:#06ccf9;
}

.logosize{
font-family:'Trebuchet MS', Arial, sans-serif;
font-size:14px;
color:#cdf6f5;
padding-top:2px;
text-align:center;
}

/* NAVIGATION */

nav{
display:flex;
justify-content:flex-end;
align-items:center;
gap:20px;
padding-right:20px;
}

nav a{
color:#f3f6f7;
text-decoration:none;
transition:0.4s;
font-size:16px;
}

nav a:hover{
color:#05f4f4;
}

/* HERO SECTION */

.hero{
padding:100px 1% 20px;

}



.hero-slider{
position:relative;
width: 100%;
height:340px;
max-width:1100px;
margin:auto;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 40px rgba(35,35,35,0.25);
background:#dfe7ea;
}

.slides{
display:flex;
width:100%;
height:100%;
transition:transform 1s ease-in-out;
}

.slide{
width:100%;
height:100%;
flex-shrink:0;
background-size:contain;
background-position:center;
background-repeat:no-repeat;
background-color:#dfe7ea;
position:relative;
}
.slide{
transition: transform 1.5s ease;
}

.slide.active{
transform: scale(1.1);
}

.overlay{
position:absolute;
top:0px;
left:0px;
width:100%;
height:100%;
background:rgba(2, 42, 55, 0.522);
z-index:1;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
z-index:2;
width:100%;
}

.hero-content h1{
font-size:52px;
margin-bottom:20px;
color:#eeeff2;
}

.hero-content h1 span{
color:#29e9f7;
}

.hero-sub{
font-size:18px;
color:#04f7f7;
line-height:1.4;
max-width:700px;
margin:auto;
border-radius: 30px ;
opacity: 100%;
padding: 12px 20px;
width: fit-content;
}

.hero-btn{
display:inline-block;
margin-top:20px;
padding:14px 30px;
background:#e8ee51;
color:#0a0000;
text-decoration:none;
border-radius:40px;
font-weight:bold;
transition:0.3s;
}

.hero-btn:hover{
background:#48d4e1;
transform:scale(1.05);
color: #011010;
}

/* SLIDER ARROWS */

.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(255,255,255,0.7);
border:none;
font-size:22px;
padding:10px 14px;
cursor:pointer;
border-radius:8px;
z-index:10;
transition:0.3s;
}

.arrow:hover{
background:#fff;
}

.left{
left:10px;
}

.right{
right:10px;
}

/* DOTS */

.dots{
position:absolute;
bottom:20px;
width:100%;
text-align:center;
z-index:10;
}

.dot{
height:10px;
width:10px;
margin:5px;
display:inline-block;
background:#eaf0ef;
border-radius:50%;
opacity:0.5;
cursor:pointer;
transition:0.3s;
}

.dot.active{
opacity:1;
transform:scale(1.2);
}

/* HERO BUTTONS */

.hero-buttons{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
padding:20px 5%;
margin-top:30px;
}



section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 25px;   /* gap increase */
  color: #0f172a;
}

.section-subtitle {
  display: flex;
  justify-content: center;   /* content center */
  align-items: center;
  text-align: center;
  color: #f7f7f6;
  border-radius: 30px;
  font-weight: 600;
  background-color: #3d6cf7;
  padding: 12px 25px;
  width: fit-content;
  margin: 0 auto 40px;   /* center + bottom gap */
}

.box {
  padding: 30px;
}

.cards,
.brand-grid,
.achievement-gallery,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.card i {
  font-size: 35px;
  color: #2563eb;
  margin-bottom: 15px;
}

section{
padding:90px 8%;
}

.title{
font-size:38px;
margin-bottom:40px;
text-align:center;
color:#010f0d;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

/* CARDS */

.card{
background:#d5e4e848;
padding:25px;
border-radius:18px;
transition:0.3s;
box-shadow:0 0 15px rgba(18, 164, 140, 0.08);
text-align:center;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 0 20px rgba(23, 190, 232, 0.5);
}

.card h3{
margin-bottom:12px;
color:#2563eb;
}

.card img{
width:100%;
height:300px;
object-fit:cover;
border-radius:15px;
margin-bottom:15px;
}

/* ABOUT */

#about{
background:#f8fafc;
padding:100px 7%;
}

.about-container{
max-width:1100px;
margin:auto;
text-align:center;
}

.about-title{
font-size:44px;
font-weight:700;
margin-bottom:25px;
color:#0f172a;
}

.about-text{
max-width:950px;
margin:auto;
font-size:18px;
line-height:2;
color:#3f5069;
font-weight:400;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:10px;
margin-top:50px;
margin-bottom: 40px;
}

.process-card{
background:#ffffff;
padding:35px 30px;
border-radius:28px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:0.4s;
position:relative;
overflow:hidden;
}

.process-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.process-icon{
width:75px;
height:75px;
margin:auto;
margin-bottom:20px;
border-radius:20px;
background:#e0f2fe;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
color:#0284c7;
}

.process-card h3{
font-size:28px;
margin-bottom:25px;
color:#0f172a;
}

.step{
display:flex;
align-items:flex-start;
gap:15px;
margin-bottom:18px;
text-align:left;
}

.step-number{
min-width:34px;
height:34px;
background:#0ea5e9;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:15px;
font-weight:bold;
}

.step p{
font-size:16px;
line-height:1.6;
color:#475569;
}

/* MOBILE */


/* REVIEWS */

#reviews{
background:rgba(252, 249, 249, 0.537);
}

.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:30px;
}

.review-card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.review-card:hover{
transform:translateY(-5px);
}

.stars{
color:#f8c41c;
font-size:18px;
margin-bottom:10px;
}

.review-card p{
font-size:15px;
color:#374151;
margin-bottom:10px;
}

.review-card h4{
font-size:14px;
font-weight:600;
color:#111;
}

/* FLOATING BUTTONS */

.floating-buttons{
position:fixed;
bottom:20px;
right:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:1000;
}

.float-btn{
position:relative;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:22px;
box-shadow:0 4px 12px rgba(0,0,0,0.2);
transition:0.3s ease;
text-decoration:none;
}

.float-btn.whatsapp{
background:#25D366;
}

.float-btn.call{
background:#007bff;
}

.float-btn:hover{
transform:scale(1.1);
}

.tooltip{
position:absolute;
right:65px;
background:#333;
color:#fff;
padding:6px 10px;
border-radius:5px;
font-size:12px;
opacity:0;
white-space:nowrap;
transition:0.3s;
}

.float-btn:hover .tooltip{
opacity:1;
}

@keyframes pulse{
0%{
box-shadow:0 0 0 0 rgba(37, 211, 102, 0.6);
}
70%{
box-shadow:0 0 0 15px rgba(37, 211, 102, 0);
}
100%{
box-shadow:0 0 0 0 rgba(37, 211, 102, 0);
}
}

.whatsapp{
animation:pulse 2s infinite;
}

/* FOOTER */

footer{
text-align:center;
padding:20px;
background:#111;
color:#888;
}

/* MOBILE RESPONSIVE - SMALL PHONES */

@media(max-width:480px){

  html,
  body{
  overflow-x:hidden;
  max-width:100%;
  }

  /* HEADER */

  header{
  flex-direction:column;
  padding:10px;
  gap:8px;
  }

  .logo-container{
  gap:10px;
  }

  .logo-img{
  width: 40px;
  height:36px;
  }

  .logo{
  font-size:20px;
  }

  .nextlogo{
  font-size:20px;
  }

  .logosize{
  font-size:11px;
  text-align:center;
  }

  nav{
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  padding-right:0;
  }

  nav a{
  font-size:13px;
  padding:4px 8px;
  }

  /* HERO */

  .hero{
  padding:120px 2% 16px;
  margin-top:6px;
  }

  .hero-slider{
  height:220px;
  border-radius:16px;
  width:100%;
  }

  .slide{
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-color:#dfe7ea;
  }

  .hero-content{
  padding:0 12px;
  }

  .hero-content h1{
  font-size:clamp(20px, 5.5vw, 26px);
  line-height:1.25;
  padding:0 6px;
  margin-bottom:12px;
  }

  .hero-sub{
  font-size:clamp(12px, 2.2vw, 14px);
  padding:10px 14px;
  width:100%;
  max-width:280px;
  }

  .hero-btn{
  padding:10px 18px;
  font-size:13px;
  }

  .arrow{
  padding:6px 8px;
  font-size:16px;
  }

  .dot{
  height:8px;
  width:8px;
  margin:4px;
  }

  /* HERO BUTTON CARDS */

  .hero-buttons{
  grid-template-columns:1fr;
  padding:16px 3%;
  gap:12px;
  }

  .product-card{
  flex-direction:column;
  align-items:flex-start;
  padding:14px;
  }

  .product-left{
  width:100%;
  }

  .product-left img{
  width:60px;
  height:60px;
  }

  .product-info h3{
  font-size:16px;
  }

  .product-info p{
  font-size:13px;
  }

  .product-btn{
  width:100%;
  min-width:100%;
  margin-top:8px;
  }

  /* SECTION */

  section{
  padding:40px 3%;
  }

  .title{
  font-size:clamp(20px, 5vw, 28px);
  margin-bottom:20px;
  }

  .section-title{
  font-size:clamp(18px, 4.5vw, 26px);
  margin-bottom:16px;
  }

  .section-subtitle{
  font-size:13px;
  padding:10px 14px;
  line-height:1.5;
  margin: 0 auto 24px;
  }

  /* CARDS */

  .cards,
  .grid,
  .review-grid,
  .process-grid{
  grid-template-columns:1fr;
  gap:10px;
  }

  .card{
  padding:16px;
  }

  .card i{
  font-size:28px;
  margin-bottom:10px;
  }

  .card img{
  height:180px;
  }

  .card h3{
  font-size:16px;
  }

  .card p{
  font-size:13px;
  }

  /* ABOUT */

  #about{
  padding:40px 3%;
  }

  .about-title{
  font-size:clamp(24px, 6vw, 32px);
  margin-bottom:16px;
  }

  .about-text{
  font-size:14px;
  line-height:1.6;
  }

  .about-banner{
  padding:24px 16px;
  gap:16px;
  }

  .about-left h1{
  font-size:clamp(22px, 6vw, 30px);
  line-height:1.2;
  }

  .about-left p{
  font-size:14px;
  }

  .eco-points span{
  font-size:12px;
  padding:8px 12px;
  }

  .about-right img{
  max-width:100%;
  }

  /* PROCESS CARDS */

  .process-grid{
  grid-template-columns:1fr;
  gap:12px;
  margin-top:24px;
  margin-bottom:24px;
  }

  .process-card{
  padding:20px 16px;
  }

  .process-icon{
  width:50px;
  height:50px;
  font-size:24px;
  margin-bottom:12px;
  }

  .process-card h3{
  font-size:18px;
  margin-bottom:12px;
  }

  .step{
  gap:10px;
  margin-bottom:12px;
  }

  .step-number{
  min-width:28px;
  height:28px;
  font-size:13px;
  }

  .step p{
  font-size:13px;
  }

  /* REVIEWS */

  .review-grid{
  gap:12px;
  }

  .review-card{
  padding:16px;
  }

  .stars{
  font-size:16px;
  }

  .review-card p{
  font-size:13px;
  }

  /* FLOATING BUTTONS */

  .floating-buttons{
  right:10px;
  bottom:10px;
  gap:10px;
  }

  .float-btn{
  width:44px;
  height:44px;
  font-size:18px;
  }

  /* BOTTOM SHEET */

  .bottom-sheet{
  padding:14px;
  border-radius:18px 18px 0 0;
  }

  .sheet-title{
  font-size:16px;
  }

  .sheet-price{
  font-size:22px;
  }

  .sheet-buttons{
  flex-direction:column;
  }

  .sheet-cart,
  .sheet-buy{
  width:100%;
  }

  /* BOX */

  .box {
  padding: 16px;
  }
}

/* MOBILE RESPONSIVE - TABLET */

@media(max-width:768px){

  html,
  body{
  overflow-x:hidden;
  max-width:100%;
  }

  /* HEADER */

  header{
  flex-direction:column;
  padding:12px;
  gap:10px;
  }

  nav{
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  padding-right:0;
  }

  .logo{
  font-size:24px;
  }

  .nextlogo{
  font-size:24px;
  }

  .logosize{
  font-size:12px;
  text-align:center;
  }

  /* HERO */

  .hero{
  padding:150px 2% 20px;
  margin-top:10px;
  }

  .hero-slider{
  aspect-ratio:9/12;
  height:280px;
  border-radius:18px;
  width:100%;
  }

  .slide{
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  background-color:#dfe7ea;
  }

  .hero-content{
  padding:0 18px;
  }

  .hero-content h1{
  font-size:clamp(22px, 4vw, 26px);
  line-height:1.3;
  padding:0 10px;
  }

  .hero-sub{
  font-size:14px;
  padding:12px 16px;
  width:100%;
  max-width:320px;
  }

  .hero-btn{
  padding:12px 22px;
  font-size:14px;
  }

  .arrow{
  padding:8px 10px;
  font-size:18px;
  }

  /* HERO BUTTON CARDS */

  .hero-buttons{
  grid-template-columns:1fr;
  padding:20px 4%;
  }

  .product-card{
  flex-direction:column;
  align-items:flex-start;
  padding:18px;
  }

  .product-left{
  width:100%;
  }

  .product-left img{
  width:75px;
  height:75px;
  }

  .product-info h3{
  font-size:20px;
  }

  .product-info p{
  font-size:14px;
  }

  .product-btn{
  width:100%;
  min-width:100%;
  margin-top:10px;
  }

  /* SECTION */

  section{
  padding:70px 5%;
  }

  .title{
  font-size:clamp(20px, 5vw, 28px);
  }

  .section-title{
  font-size:clamp(18px, 4.5vw, 26px);
  margin-bottom:16px;
  }

  .section-subtitle{
  font-size:clamp(12px, 2vw, 14px);
  padding:12px 18px;
  line-height:1.6;
  }

  /* CARDS */

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

  .card img{
  height:220px;
  }

  /* PRODUCT CARD - Mobile */

  .products-card{
  max-width:100%;
  }

  .slider{
  height:220px;
  }

  /* SHOP PRODUCTS */

  .shop-product-contaner{
  grid-template-columns:1fr;
  padding: 12px;
  }

  .products-contaner{
  grid-template-columns:1fr;
  padding:12px;
  }

  .shop-product-card{
  max-width:100%;
  }

  .slider{
  height:240px;
  }

  .buttons{
  flex-direction:column;
  }

  .cart-btn,
  .buy-btn{
  width:100%;
  }

  /* ABOUT */

  .about-banner{
  padding:30px 20px;
  text-align:center;
  gap:20px;
  }

  .about-left h1{
  font-size:30px;
  line-height:1.2;
  }

  .about-left p{
  font-size:15px;
  }

  .eco-points{
  justify-content:center;
  }

  .about-right img{
  max-width:320px;
  margin:auto;
  }

  /* FLOATING BUTTON */

  .floating-buttons{
  right:14px;
  bottom:14px;
  }

  .float-btn{
  width:50px;
  height:50px;
  font-size:20px;
  }

  /* BOTTOM SHEET */

  .bottom-sheet{
  padding:18px;
  border-radius:22px 22px 0 0;
  }

  .sheet-title{
  font-size:18px;
  }

  .sheet-price{
  font-size:24px;
  }

  .sheet-buttons{
  flex-direction:column;
  }

  .sheet-cart,
  .sheet-buy{
  width:100%;
  }
}


/* PREMIUM PRODUCT CARD */

.product-card{
background:linear-gradient(135deg,#ffffff,#f3f8ff);
border-radius:28px;
padding:22px 28px;
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
box-shadow:
0 10px 30px rgba(0,0,0,0.08),
0 4px 10px rgba(37,99,235,0.08);
border:1px solid rgba(255,255,255,0.6);
transition:all 0.35s ease;
position:relative;
overflow:hidden;
}

.product-card::before{
content:"";
position:absolute;
top:0;
left:-120%;
width:100%;
height:100%;
background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,0.45),
transparent
);
transition:0.8s;
}

.product-card:hover::before{
left:120%;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:
0 18px 40px rgba(37,99,235,0.18),
0 8px 18px rgba(0,0,0,0.10);
}

/* LEFT SIDE */

.product-left{
display:flex;
align-items:center;
gap:18px;
flex:1;
}

/* IMAGE */

.product-left img{
width:95px;
height:95px;
object-fit:cover;
border-radius:22px;
padding:6px;
background:#fff;
box-shadow:0 6px 18px rgba(0,0,0,0.10);
transition:0.3s;
}

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

/* TEXT */

.product-info h3{
font-size:24px;
font-weight:700;
margin-bottom:6px;
color:#0f172a;
}

.product-info p{
font-size:15px;
color:#475569;
line-height:1.5;
}

/* CARD BUTTON */

.product-btn{
padding:14px 28px;
background:linear-gradient(135deg,#255deb,#06b6d4);
color:#fff;
text-decoration:none;
border-radius:40px;
font-size:15px;
font-weight:700;
letter-spacing:0.3px;
display:flex;
align-items:center;
justify-content:center;
min-width:150px;
height:52px;
transition:0.35s ease;
box-shadow:0 6px 18px rgba(37,99,235,0.35);
}

.product-btn:hover{
transform:translateY(-3px) scale(1.05);
box-shadow:0 12px 24px rgba(37,99,235,0.40);
background:linear-gradient(135deg,#1d4ed8,#0891b2);
}

/* copy this product id make multiple  */


.products-contaner{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  padding:20px;
  align-items:start;
  width:100%;
  max-width:1400px;
  margin:auto;
}
/* Amzone PRODUCTS SECTION */
.products-card{
background:#fff;
border-radius:18px;
overflow:hidden;
padding:14px;
position:relative;
transition:0.3s ease;
box-shadow:0 3px 14px rgba(0,0,0,0.08);
border:1px solid #f1f1f1;
width:100%;
max-width:340px;
margin:auto;
}

.products-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}
/* IMAGE SLIDER */
.slider{
position:relative;
height:210px;
overflow:hidden;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
background:#f8f8f8;
margin-bottom:14px;
}


.slider-image{
width:100%;
height:100%;
object-fit:contain;
cursor:pointer;
transition:0.4s ease;
}

.shop-product-card:hover .slider-image{
transform:scale(1.05);
}

/* SLIDER BUTTON */
.slide-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
width:30px;
height:30px;
border:none;
border-radius:50%;
background:rgb(190, 190, 187);
color:#fff;
font-size:18px;
cursor:pointer;
}

.prev{
left:10px;
}

.next{
right:10px;
}

/* TITLE */
.product-title{
font-size:19px;
font-weight:700;
line-height:1.4;
margin-bottom:10px;
color:#111827;
}

/* RATING */
.rating{
color:#f59e0b;
margin-bottom:10px;
font-size:18px;
}

.rating span{
color:#366ad9;
font-size: 14px;
}

/* SOLD */
.sold{
font-size:14px;
margin-bottom:10px;
color:#555;
}

/* OFFER */
.offer{
display:inline-block;
background: var(--offer-badge);
color:#fff;
padding:5px 10px;
font-size:13px;
border-radius:5px;
margin-bottom:10px;
}

/* PRICE */
.price{
font-size:26px;
font-weight:800;
margin-top:8px;
display:flex;
align-items:center;
gap:8px;
flex-wrap:wrap;
}

.price span{
font-size:16px;
text-decoration:line-through;
color:#777;
margin-left:8px;
}

.discount{
color:#059669;
font-weight:700;
font-size:18px;
margin-bottom:18px;
}

/* DESCRIPTION BUTTON */
.desc-btn{
width:100%;
padding:12px;
border:none;
border-radius:12px;
background:#11182729;
color:#130101;
font-size:14px;
font-weight:400;
cursor:pointer;
margin-top:10px;
transition:0.3s;
}

.desc-btn:hover{
background:#ebde25;
}

/* DESCRIPTION */
.shop-product-contaner.dimmed .shop-product-card{
  filter: blur(2px);
  opacity: 0.4;
}

/* OVERLAY */
.sheet-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999;
}

.sheet-overlay.active{
  opacity: 1;
  pointer-events: all;
}

/* BOTTOM SHEET */
.bottom-sheet{
  position: fixed;
  left: 0;
  bottom: -100%;
  width: 100%;
  max-height: 85vh;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
  transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

/* OPEN STATE */
.bottom-sheet.active{
  bottom: 0;
}

/* HANDLE BAR */
.sheet-handle{
  width: 60px;
  height: 6px;
  background: #ccc;
  border-radius: 10px;
  margin: 0 auto 15px;
}

/* CONTENT */
.sheet-title{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sheet-body{
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
/* PRODUCT BUTTONS */

.buttons{
display:flex;
gap:12px;
margin-top:18px;
}

.cart-btn,
.buy-btn{
flex:1;
padding:13px;
border:none;
border-radius:14px;
font-size:15px;
font-weight:700;
cursor:pointer;
transition:0.3s ease;
display:flex;
align-items:center;
justify-content:center;
gap:8px;
}

.cart-btn{
background:#f3f4f6;
color:#111827;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.buy-btn{
background:linear-gradient(135deg,#f59e0b,#ff8400);
color:#fff;
box-shadow:0 4px 14px rgba(245,158,11,0.35);
}

.cart-btn:hover{
background:#e5e7eb;
transform:translateY(-3px);
}

.buy-btn:hover{
transform:translateY(-3px);
background:linear-gradient(135deg,#0f766e,#14b8a6);
box-shadow:0 8px 18px rgba(245,158,11,0.45);
}
/* SHEET CLOSE BUTTON */

.close-sheet{
position:absolute;
top:15px;
right:15px;
width:42px;
height:42px;
border:none;
border-radius:50%;
background:#f3f4f6;
font-size:22px;
cursor:pointer;
transition:0.3s;
z-index:10;
}

.close-sheet:hover{
background:#111827;
color:#fff;
}

img{
max-width:100%;
display:block;
}

/* SHEET IMAGE */

#sheetImg{
width:100%;
max-height:280px;
object-fit:contain;
background:#f8fafc;
padding:10px;
border-radius:16px;
margin:15px 0;
}

/* SHEET PRICE */

.sheet-price{
font-size:30px;
font-weight:800;
}

.sheet-buttons{
display:flex;
gap:12px;
margin-top:20px;
}

.sheet-cart,
.sheet-buy{
flex:1;
padding:14px;
border:none;
border-radius:14px;
font-size:15px;
font-weight:700;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
gap:8px;
transition:0.3s;
}

.sheet-cart{
background:#f3f4f6;
}

.sheet-buy{
background:linear-gradient(135deg,#f59e0b,#ff8400);
color:#fff;
}

.sheet-cart:hover,
.sheet-buy:hover{
transform:translateY(-2px);
}

.about-banner{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
padding:60px 6%;
background:linear-gradient(135deg,#ffffff,#eefbf1);
border-radius:30px;
flex-wrap:wrap;
}

.about-left{
flex:1;
min-width:300px;
}

.about-left h1{
font-size:52px;
line-height:1.1;
color:#0f172a;
margin-bottom:20px;
}

.about-left p{
font-size:18px;
color:#475569;
margin-bottom:25px;
line-height:1.7;
}

.eco-points{
display:flex;
flex-wrap:wrap;
gap:15px;
}

.eco-points span{
background:#e7f8eb;
padding:12px 18px;
border-radius:30px;
font-weight:600;
color:#15803d;
}

.about-right{
flex:1;
display:flex;
justify-content:center;
min-width:300px;
}

.about-right img{
width:100%;
max-width:550px;
object-fit:contain;
}

.product-btn{
  color: #edeeec;
}
/* MOBILE */

.logo a {
    text-decoration: none;
    color: inherit;
}

.hero-content h1{
    font-size:clamp(22px, 4vw, 52px);
}

.hero-sub{
    font-size:clamp(13px, 2vw, 18px);
}
