/* =============================
   GLOBAL / RESET
============================== */
:root{
  --weft-red:#E30613;
  --black:#0b0b0b;
  --white:#ffffff;
  --muted:#6b7280;
  --glass: rgba(255,255,255,0.06);
  --max-w:1200px;
  --transition: 0.35s cubic-bezier(.2,.8,.2,1);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  color:var(--black);
  background:linear-gradient(180deg,#fff,#fafafa);
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  scroll-behavior:smooth;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{max-width:var(--max-w);margin:0 auto;padding:0 20px}

/* =============================
   PRELOADER
============================== */
#preloader{position:fixed;inset:0;background:linear-gradient(180deg,#111,#3b0c10);display:flex;align-items:center;justify-content:center;color:#fff;z-index:9999}
#preloader .logo{width:92px;height:92px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:var(--white);color:var(--weft-red);font-weight:800;font-family:Poppins}
#preloader .text{margin-top:14px;color:rgba(255,255,255,0.9);font-size:13px}

/* =============================
   NAVBAR (glass) 
============================== */
header.site-header{
  position:fixed;top:10px;left:0;right:0;z-index:120;
  display:flex;justify-content:center;pointer-events:none;
}
.nav-wrap{
  pointer-events:all;
  width:calc(100% - 40px);
  max-width:var(--max-w);
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.7));
  border-radius:12px;
  padding:10px 16px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  box-shadow:0 8px 30px rgba(11,36,71,0.08);
  backdrop-filter: blur(6px);
}
.brand{
  display:flex;align-items:center;gap:12px;
}
.brand img{height:44px;width:auto;border-radius:6px}
.brand h1{font-size:18px;margin:0;color:var(--weft-red);font-family:Poppins}
nav.main-nav{display:flex;gap:18px;align-items:center}
nav.main-nav a{font-weight:600;padding:8px 10px;border-radius:8px;transition:var(--transition)}
nav.main-nav a:hover{background:rgba(227,6,19,0.06);color:var(--weft-red)}
.nav-cta{background:var(--weft-red);color:var(--white);padding:10px 14px;border-radius:10px;font-weight:700;box-shadow:0 6px 18px rgba(227,6,19,0.18)}
.hamburger{display:none}

@media(max-width:980px){
  nav.main-nav{display:none}
  .hamburger{display:block}
}

/* =============================
   HERO (Swiper-based)
============================== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 520px;
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11,36,71,0.12);
}

.swiper {
  height: 100%;
}

.swiper-slide {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.28), rgba(227,6,19,0.14));
  mix-blend-mode: multiply;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;          /* vertically center hero content */
  justify-content: space-between;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 32px;
  height: 100%;                 /* fill hero height */
}

.hero-left {
  flex: 1;
  color: #fff;
  max-width: 720px;
}

.hero-kicker {
  display: inline-block;
  background: rgba(255,255,255,0.09);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.hero-title {
  font-family: Poppins;
  font-size: 44px;
  line-height: 1.02;
  margin: 18px 0 12px;
  font-weight: 800;
  text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}

.hero-desc {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 18px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--weft-red);
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.16);
  color: var(--white);
}

.hero-right {
  width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;      /* vertically align promo cards */
}

.promo-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
  color: #fff;
  margin-bottom: 12px;
  backdrop-filter: blur(6px);
}

.promo-card small {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}

/* decorative shapes */
.shape-circle {
  position: absolute;
  border-radius: 999px;
  right: -60px;
  top: 60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(227,6,19,0.28), rgba(11,11,11,0.06));
  filter: blur(24px);
  z-index: 2;
  pointer-events: none;
}



/* =============================
   SECTIONS GENERAL
============================== */
section{padding:72px 20px}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:12px;margin-bottom:18px}
.section-title{font-size:22px;font-weight:700;color:var(--weft-red)}
.section-sub{color:var(--muted);font-size:14px}

.two-col{display:grid;grid-template-columns:1fr 420px;gap:28px;align-items:start}
@media(max-width:1000px){.two-col{grid-template-columns:1fr}}
@media(max-width:700px){.hero-inner{padding:32px 18px}.hero-title{font-size:28px}}

/* =============================
   ABOUT / STORY — Responsive Fix
============================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

/* Media (image box) */
.about-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(11,36,71,0.06);
  height: 100%;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text box */
.about-text {
  color: #333;
  line-height: 1.6;
}

.about-text h3 {
  color: var(--weft-red);
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 800;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 14px;
}

/* Stats timeline */
.timeline {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.stat {
  background: var(--white);
  padding: 14px 12px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(11,36,71,0.04);
  text-align: center;
  min-width: 110px;
  flex: 1 1 100px;
}

.stat h4 {
  margin: 0;
  font-weight: 800;
  color: var(--weft-red);
  font-size: 1.3rem;
}

.stat p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* =============================
   Responsive Breakpoints
============================== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-media {
    order: 1;
    height: 340px;
  }
  .about-text {
    order: 2;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .about-media {
    height: 260px;
  }
  .about-text h3 {
    font-size: 1.3rem;
  }
  .about-text p {
    font-size: 0.95rem;
  }
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .stat {
    width: 100%;
    max-width: 280px;
  }
}


/* =============================
   CATEGORIES
============================== */
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.cat-card{border-radius:12px;overflow:hidden;position:relative;min-height:160px;cursor:pointer;display:flex;align-items:flex-end;padding:14px;color:#fff;background-size:cover;background-position:center;box-shadow:0 12px 40px rgba(11,36,71,0.06);transition:transform .35s}
.cat-card:hover{transform:translateY(-8px)}
.cat-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0.15),rgba(0,0,0,0.45));z-index:1}
.cat-title{position:relative;z-index:2;font-weight:800;font-size:18px}
@media(max-width:900px){.cat-grid{grid-template-columns:repeat(2,1fr)}}

/* =============================
   PRODUCTS (dynamic grid)
============================== */
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.product-card{background:var(--white);border-radius:12px;padding:14px;box-shadow:0 12px 40px rgba(11,36,71,0.06);display:flex;flex-direction:column;gap:10px;transition:transform .35s}
.product-card:hover{transform:translateY(-8px)}
.product-media{height:240px;overflow:hidden;border-radius:10px;background:#f2f2f2}
.product-media img{width:100%;height:100%;object-fit:cover}
.product-title{font-weight:700;font-size:16px}
.product-price{color:var(--weft-red);font-weight:800}
.product-actions{margin-top:auto;display:flex;gap:10px}
.cta-primary{background:var(--weft-red);color:#fff;padding:10px 12px;border-radius:8px;border:0;font-weight:700}
.cta-outline{background:transparent;border:1px solid rgba(11,11,11,0.06);padding:10px 12px;border-radius:8px}

@media(max-width:1100px){.product-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){.product-grid{grid-template-columns:1fr}}

TRUST BADGES SECTION
============================== */
.trust-section {
  background: linear-gradient(180deg, #fff, #f9f9f9);
  padding: 60px 20px;
}

.trust-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  text-align: center;
}

.trust-card {
  padding: 30px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.trust-card .trust-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.trust-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-card p {
  opacity: 0.95;
  font-size: 15px;
}

/* Color variations */
.trust-card.orange {
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  box-shadow: 0 10px 30px rgba(255,106,0,0.25);
}

.trust-card.blue {
  background: linear-gradient(135deg, #007bff, #62a9ff);
  box-shadow: 0 10px 30px rgba(0,123,255,0.25);
}

.trust-card.green {
  background: linear-gradient(135deg, #28a745, #6cd47a);
  box-shadow: 0 10px 30px rgba(40,167,69,0.25);
}

.trust-card.purple {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  box-shadow: 0 10px 30px rgba(78,0,224,0.25);
}

/* Hover effect */
.trust-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

/* =============================
   Responsive Adjustments
============================== */
@media (max-width: 768px) {
  .trust-section {
    padding: 50px 18px;
  }
  .trust-card {
    padding: 24px;
  }
  .trust-card h3 {
    font-size: 18px;
  }
  .trust-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    gap: 20px;
  }
  .trust-card {
    padding: 20px;
    border-radius: 14px;
  }
  .trust-card .trust-icon {
    font-size: 36px;
  }
}


/* =============================
   LOOKBOOK (masonry-like)
============================== */
.lookbook-grid{column-count:3;column-gap:12px}
.lookbook-grid img{width:100%;margin-bottom:12px;border-radius:8px;display:block}
@media(max-width:1000px){.lookbook-grid{column-count:2}}
@media(max-width:700px){.lookbook-grid{column-count:1}}

/* =============================
   TESTIMONIALS
============================== */
.testimonials .swiper{padding:24px 0}
.testi-card{background:linear-gradient(180deg,#fff,#fff);padding:20px;border-radius:12px;box-shadow:0 12px 40px rgba(11,36,71,0.06);text-align:left}
.testi-head{display:flex;gap:12px;align-items:center}
.avatar{width:56px;height:56px;border-radius:999px;background:#eee;overflow:hidden}
.avatar img{width:100%;height:100%;object-fit:cover}
.rating{color:#f5b942;font-weight:800}
.testi-text{margin-top:10px;color:var(--muted)}

/* =============================
   COUNTERS / OFFERS
============================== */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}

.counters {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.counter {
  flex: 1 1 260px;
  background: linear-gradient(135deg, #ff4949 0%, #ff7e7e 100%);
  color: #fff;
  text-align: center;
  padding: 32px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(255, 75, 75, 0.25);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  cursor: default;
}

.counter:nth-child(2) {
  background: linear-gradient(135deg, #1e90ff 0%, #64b5ff 100%);
  box-shadow: 0 8px 24px rgba(30, 144, 255, 0.25);
}

.counter:nth-child(3) {
  background: linear-gradient(135deg, #28a745 0%, #7cd992 100%);
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.25);
}

.counter:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.counter::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0) 100%
  );
  transition: 0.8s;
}

.counter:hover::after { left: 100%; }

.counter-icon {
  font-size: 40px;
  margin-bottom: 12px;
  opacity: 0.95;
}

.counter h3 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 8px 0 4px;
}

.counter p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.4px;
}

/* Offer Card */
.offer-card {
  background: linear-gradient(90deg, var(--weft-red, #ff4949), #ff6363);
  padding: 22px;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 99, 99, 0.3);
}

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-title {
  font-size: 20px;
  font-weight: 800;
}

.offer-sub {
  opacity: 0.95;
  font-size: 14px;
}

.offer-timer {
  text-align: right;
}

.offer-timer #offerTimer {
  font-size: 20px;
  font-weight: 900;
}

.timer-label {
  font-size: 12px;
  color: rgba(255,255,255,0.95);
}

.offer-action {
  margin-top: 14px;
  text-align: right;
}

.btn.btn-ghost {
  background: #fff;
  color: var(--weft-red, #ff4949);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn.btn-ghost:hover {
  background: #ffe3e3;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-card {
    margin-top: 20px;
  }
}

/* =============================
      STORE LOCATOR / CONTACT
   ============================= */
/* STORE SECTION STYLING */
.stores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 992px) {
  .stores-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.store-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.store-details {
  padding: 24px;
}

.store-details h3 {
  font-size: 1.4rem;
  color: var(--weft-red, #e63946);
  margin-bottom: 8px;
}

.store-details p {
  margin: 6px 0;
  color: #444;
}

.store-details .muted {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Link Colors */
.store-details a.phone {
  color: #28a745;
  font-weight: 600;
  text-decoration: none;
}

.store-details a.phone:hover {
  text-decoration: underline;
}

.store-details a.email {
  color: #e63946;
  font-weight: 600;
  text-decoration: none;
}

.store-details a.email:hover {
  text-decoration: underline;
}

/* Buttons */
.store-buttons {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--weft-red, #e63946);
  color: #fff !important;
  border: none;
}

.btn-primary:hover {
  background: #ff5555;
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  color: var(--weft-red, #e63946) !important;
  border: 1.5px solid var(--weft-red, #e63946);
}

.btn-ghost:hover {
  background: var(--weft-red, #e63946);
  color: #fff !important;
}

/* Map */
.store-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* FOLLOW US SECTION */
.follow-section {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #fef6f6 0%, #fff 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  margin: 60px auto;
  max-width: 900px;
  transition: all 0.4s ease;
}

.follow-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 50px rgba(0,0,0,0.08);
}

.follow-title {
  font-size: 2rem;
  color: var(--weft-red, #e63946);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.follow-sub {
  color: #444;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 28px auto;
  line-height: 1.6;
}

/* SOCIAL BUTTONS */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* INSTAGRAM STYLE */
.social-btn.insta {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-btn.insta:hover {
  box-shadow: 0 8px 20px rgba(221,42,123,0.3);
  transform: translateY(-3px);
}

/* FACEBOOK STYLE */
.social-btn.fb {
  background: linear-gradient(45deg, #1877f2, #5090ff);
}

.social-btn.fb:hover {
  box-shadow: 0 8px 20px rgba(24,119,242,0.3);
  transform: translateY(-3px);
}

.social-btn i {
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 600px) {
  .follow-title { font-size: 1.6rem; }
  .social-btn { width: 100%; justify-content: center; }
}
/* CONTACT FORM SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
  margin-top: 30px;
}

.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--weft-red,#e63946);
}

.contact-info p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #333;
  margin: 6px 0;
}

.contact-info .muted {
  color: #666;
  font-size: 0.9rem;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.contact-form .form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--weft-red,#e63946);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.15);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--weft-red,#e63946);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #c92a3d;
  transform: translateY(-2px);
}

@media(max-width: 768px){
  .contact-grid{grid-template-columns:1fr;}
}

/* =============================
   CONTACT / MAP / FOOTER
============================== */
.contact-form{display:flex;flex-direction:column;gap:10px}
.contact-form input,.contact-form textarea{padding:12px;border-radius:8px;border:1px solid #e8e8e8}
.contact-form button{background:var(--weft-red);color:#fff;padding:12px;border-radius:8px;border:0;font-weight:700}

footer.site-footer{padding:36px 20px;background:linear-gradient(90deg,var(--weft-red),#d83a3a);color:#fff;margin-top:40px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr 320px;gap:20px;align-items:start}
.socials{display:flex;gap:10px}

@media(max-width:1000px){.footer-grid{grid-template-columns:1fr}}

/* Floating WhatsApp + Back to Top */
.whatsapp-fab{position:fixed;right:18px;bottom:18px;background:#25D366;border-radius:999px;padding:12px 14px;display:flex;align-items:center;gap:10px;color:#fff;z-index:150}
.back-top{position:fixed;right:18px;bottom:86px;background:var(--black);color:#fff;border-radius:8px;padding:10px;display:none;z-index:150;cursor:pointer}

/* small */
.muted{color:var(--muted);font-size:14px}

/*mobile resposive*/

/* =============================
   HERO — Responsive Fix
============================== */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 24px;
    padding: 36px 24px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-right {
    width: 340px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 520px;
  }
  .swiper-slide {
    align-items: flex-end; /* keeps text lower but visible */
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 28px;
    padding: 60px 24px 80px;
    height: auto;
  }
  .hero-left {
    max-width: 100%;
    color: #fff;
  }
  .hero-title {
    font-size: 30px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0,0,0,0.35);
  }
  .hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
  }
  .hero-ctas {
    justify-content: flex-start;
  }
  .hero-right {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }
  .promo-card {
    flex: 1 1 calc(50% - 12px);
    margin-bottom: 0;
  }
  .shape-circle {
    display: none; /* hide background circle on small screens */
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 50px 18px 60px;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .btn {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
.swiper-horizontal{
  height: 465px;
}
}