@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #E8621A;
  --orange-dark: #c94f10;
  --dark: #111111;
  --gray-900: #1a1a1a;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .14);
  --radius: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ─── TYPOGRAPHY ─── */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--gray {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-label {
  margin-bottom: 0.5rem;
}

.section-header .heading-lg {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.navbar__logo-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__nav a,
.navbar__nav button {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.navbar__nav a:hover,
.navbar__nav button:hover {
  color: var(--orange);
  background: rgba(232, 98, 26, 0.06);
}

/* Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
  overflow: hidden;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown-menu a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  border-radius: 0;
  color: var(--gray-700);
  transition: background 0.15s, color 0.15s;
}

.navbar__dropdown-menu a:hover {
  background: var(--gray-100);
  color: var(--orange);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange) !important;
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem 1.5rem;
  gap: 0.25rem;
}

.navbar__mobile.open {
  display: flex;
}

.navbar__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}

.navbar__mobile a:hover {
  color: var(--orange);
}

/* ─── HERO ─── */
.hero {
  background: var(--gray-100);
  background-image: radial-gradient(circle at 15% 50%, rgba(232, 98, 26, 0.06) 0%, transparent 60%),
    linear-gradient(135deg, transparent 0%, rgba(232, 98, 26, 0.03) 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gray-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 6rem 0 5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232, 98, 26, 0.1);
  border: 1px solid rgba(232, 98, 26, 0.2);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__cta .btn-big {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.hero__cta .btn-big:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.hero__cta .btn-big--outline {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}

.hero__cta .btn-big--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}

/* ─── HERO SLIDER ─── */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.hero__slider-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--gray-200);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ─── CATEGORY HERO ─── */
.cat-hero {
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  min-height: 45vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.breadcrumb {
  font-size: 0.85rem;
  color: #cccccc;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.breadcrumb a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: var(--white);
}

.cat-hero__inner {
  position: relative;
  z-index: 1;
  border-left: 5px solid var(--orange);
  padding-left: 1.5rem;
}

.brand-capsule--color {
  filter: none !important;
  opacity: 1 !important;
}

.cat-hero h1 {
  margin: 0.5rem 0 0.75rem;
}

.cat-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
}

/* ─── PRODUCT GRID ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #ffffff;
  padding: 16px;
}

.product-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.product-card__tag {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(232, 98, 26, 0.08);
  color: var(--orange);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
}

/* ─── CATEGORY CARDS (homepage) ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.cat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.cat-card__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.cat-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.cat-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  flex: 1;
}

.cat-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 1rem;
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}

.cat-card:hover .cat-card__arrow {
  gap: 0.7rem;
}

/* ─── BRANDS STRIP ─── */
.brands-strip {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.brands-strip__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.brands-strip__track:hover {
  animation-play-state: paused;
}

.brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-500);
  white-space: nowrap;
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  transition: color 0.2s, border-color 0.2s;
  cursor: default;
}

.brand-item:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.brand-item img {
  height: 45px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: none;
  transition: filter 0.2s;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Static brands (category pages) */
.brands-static {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 2rem 0 1.5rem;
}

.brands-section {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.brands-section__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.about__img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.about__text {
  grid-column: 2;
  position: relative;
  z-index: 2;
  padding: 6rem 0 5rem;
}

.about__text .heading-lg {
  margin-bottom: 1rem;
}

.about__text p {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.feature-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-box:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.feature-box__icon {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.feature-box__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-box__desc {
  font-size: 0.84rem;
  color: var(--gray-500);
}

/* ─── CONTACT SECTION ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 42px;
  height: 42px;
  background: rgba(232, 98, 26, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-info__label {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.55;
}

.contact-info__value a {
  color: var(--dark);
  transition: color 0.2s;
}

.contact-info__value a:hover {
  color: var(--orange);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
}

/* Form */
.contact-form {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 98, 26, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--gray-100);
  padding: 4rem 0;
  border-top: 1px solid var(--gray-200);
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.cta-section__text .heading-lg {
  margin-bottom: 0.75rem;
}

.cta-section__text p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

/* ─── ENQUIRY BUTTONS ─── */
.enquiry-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  justify-content: center;
}

.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-enquire:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}

.footer__logo-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.footer__address {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__powered a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__powered a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
}

/* ─── FLOATING WHATSAPP ─── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── FORM SUCCESS ─── */
.form-success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #1a7d40;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}

.form-success.visible {
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-section {
    min-height: auto;
    display: block;
    padding-top: 4rem;
  }
  
  .about__img-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 2rem;
  }
  
  .about__img {
    border-radius: var(--radius);
  }
  
  .about__text {
    grid-column: 1;
    padding: 0 0 2rem 0;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-top: 6rem;
  }

  .hero__inner {
    padding: 0 1.5rem 1rem 1.5rem;
  }

  .hero__slider-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    left: 0;
    transform: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
  }

  .hero__slider {
    border-radius: 0;
  }


  .about-grid,
  .contact-grid,
  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-left: 0;
    padding-right: 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn-big {
    width: 100%;
    justify-content: center;
  }
}