*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #f97316;
  --primary-light: #fff3eb;
  --primary-dark: #ea6c0a;
  --secondary: #111827;
  --secondary-light: #1f2937;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --radius: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Fullscreen Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

/* Spinner */
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #e5e7eb;
  border-top: 6px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Hide loader */
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}


     
/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 32px rgba(249, 115, 22, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  background: var(--bg-alt);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4);
}
.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}
.btn-xl {
  padding: 20px 44px;
  font-size: 17px;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo img {
  height: 150px;
 
}
.logo span {
  color: var(--primary);
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.header-contact:hover {
  color: var(--primary);
}

/* ── HERO ── */
#hero {
  position: relative;
  padding: 96px 20px 112px;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.25),
    transparent 60%
  );
  top: -250px;
  right: -250px;
  filter: blur(40px);
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 70% 0%,
    #fff3eb 0%,
    transparent 70%
  );
  z-index: 0;
}

/* floating shapes */
.hero-float {
  position: absolute;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease;
  z-index: 0;
}

.hero-float img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.hero-phone {
  width: 120px;
  height: 200px;
  left: 8%;
  top: 30%;
  background: linear-gradient(135deg, #111, #333);
  transform: rotate(-12deg);
}
.hero-ps5{
  width:220px;
  height:220px;
  right:5%;
  bottom:10%;
  animation-delay:2s;
}

.hero-ps5 img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.25));
}
/* animation */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(-10deg);
  }
  50% {
    transform: translateY(-18px) rotate(-8deg);
  }
  100% {
    transform: translateY(0px) rotate(-10deg);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge i {
  font-size: 12px;
}
.hero h1 {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--secondary);
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--primary), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

/* ── SECTION COMMON ── */
section {
  padding: 80px 20px;
}
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.section-title p {
  color: var(--muted);
  font-size: 16px;
}

/* ── CATEGORIES ── */
#categories {
  background: var(--bg);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--secondary);
}
.category-card:hover {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.category-card:hover .cat-icon {
  color: var(--primary);
}
.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
  transition: color 0.25s;
}
.category-card span {
  font-weight: 600;
  font-size: 15px;
}

/* ── PRODUCTS ── */
#products {
  background: var(--bg-alt);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.product-img-wrap {
  aspect-ratio: 1;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 14px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}
.product-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc{
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}
.product-card .btn {
  width: 100%;
  border-radius: 12px;
  font-size: 14px;
  padding: 12px;
}
.btn-order {
  background: var(--secondary);
  color: #fff;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.btn-order:hover {
  background: var(--secondary-light);
  transform: none;
}

/* ── WHY CHOOSE US ── */
#why {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
}
.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.trust-card p {
  font-size: 14px;
  color: var(--muted);
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:40px;
}

.step{
  background:rgba(255,255,255,.08);
  padding:24px;
  border-radius:16px;
  text-align:center;
}

.step i{
  font-size:28px;
  margin-bottom:12px;
  color:var(--primary);
}

.step h3{
  margin-bottom:8px;
  font-size:18px;
}

.step p{
  color: var(--muted);
  font-size:14px;
}

/* ── CONTACT ── */
#contact {
  background: #fff;
  text-align: center;
  padding: 80px;
}
#contact h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}
#contact > .container > p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
}
.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.contact-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.contact-links a:hover {
  color: var(--primary);
}

/* ── FOOTER ── */
footer {
  background: var(--secondary);
  color: #fff;
  padding: 48px 20px;
  padding-top: 60px;
  text-align: center;
}
.footer-logo{
  display: flex;
  justify-content: center;
}

.footer-logo img{
  display: block;
  margin: 0 auto;
  width: 100px;
}
.footer-tagline {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 24px;
}
.footer-copy {
  color: #4b5563;
  font-size: 13px;
}

/* ── FLOATING WHATSAPP ── */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  #hero {
    padding: 72px 20px 80px;
  }
  section {
    padding: 64px 20px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-ctas {
    flex-direction: column;
  }
  .contact-links {
    flex-direction: column;
    gap: 14px;
  }
  .header-contact span {
    display: none;
  }
  .hero-float {
    display: none;
  }

  .steps{
    grid-template-columns:repeat(2,1fr);
  }

  .tag{
    text-align:center;
  }

  .order{
    text-align:center;
  }

  .header-inner{
    height:80px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    letter-spacing: -1px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .category-card span {
    text-align: center;
  }

  .products-grid {
    text-align: center;
  }

  .btn {
    width: 100%;
  }

  .hero-phone, .hero-ps5 {
    display: none;
  }

  .steps{
    grid-template-columns:1fr;
  } 

  .tag{
    text-align:center;
  }

    .order{
        text-align:center;
    }

    .product-price{
        font-size:18px;
    }
    .logo img{
        height:100px;
        margin-top:-20px;
        margin-left:-20px;
    }
    .header-inner{
    height:80px;
  }
}
