*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#fff8fc;
  color:#333;
}

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

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

.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 16px;
}

/* TOPBAR */
.topbar{
  background:#e6007e;
  color:#fff;
  font-size:13px;
  font-weight:700;
}

.topbar-wrap{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  text-align:center;
  padding:8px 0;
}

/* HEADER */
.site-header{
  background:#fff;
  border-bottom:1px solid #f2d6e6;
  position:sticky;
  top:0;
  z-index:50;
}

.header-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  position:relative;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.brand-main{
  font-size:28px;
  font-weight:900;
  color:#e6007e;
  letter-spacing:1px;
}

.brand-sub{
  font-size:12px;
  font-weight:700;
  color:#666;
  letter-spacing:2px;
}

.menu-toggle{
  display:none;
  border:none;
  background:#e6007e;
  color:#fff;
  font-weight:800;
  font-size:14px;
  border-radius:12px;
  padding:10px 14px;
  cursor:pointer;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.main-nav a{
  font-size:14px;
  font-weight:700;
  color:#444;
}

.main-nav a:hover{
  color:#e6007e;
}

.nav-dropdown{
  position:relative;
  display:inline-flex;
  align-items:center;
}

.nav-dropdown-toggle{
  display:inline-flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  font-weight:800;
  background:none;
  border:none;
  padding:0;
  color:#444;
  font-size:14px;
}

.nav-dropdown-toggle:hover{
  color:#e6007e;
}

.nav-dropdown-toggle::after{
  content:"▾";
  font-size:12px;
  line-height:1;
}

.nav-dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:270px;
  background:#fff;
  border:1px solid #f0d9e5;
  border-radius:16px;
  box-shadow:0 16px 40px rgba(0,0,0,.10);
  padding:12px;
  display:none;
  z-index:99999;
}

.nav-dropdown:hover .nav-dropdown-menu{
  display:block;
}

.nav-dropdown.open .nav-dropdown-menu{
  display:block;
}

.nav-dropdown-item{
  padding:8px 6px 10px 6px;
  border-bottom:1px solid #f6e9ef;
}

.nav-dropdown-item:last-child{
  border-bottom:none;
}

.nav-dropdown-parent{
  display:block;
  font-weight:800;
  color:#333;
  margin-bottom:8px;
}

.nav-dropdown-parent:hover{
  color:#e6007e;
}

.nav-dropdown-sublist{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.nav-dropdown-sublist a{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:#f9eef4;
  color:#b00066;
  font-size:13px;
  font-weight:700;
}

.nav-dropdown-sublist a:hover{
  background:#f3d8e6;
  color:#8a0050;
}

.cart-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
}

.cart-count{
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  background:#e6007e;
  color:#fff;
  font-size:12px;
  font-weight:800;
  align-items:center;
  justify-content:center;
  line-height:1;
}

/* HERO */
.hero{
  background:linear-gradient(135deg, #fff5fb 0%, #ffe7f3 50%, #fff 100%);
  padding:48px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:24px;
  align-items:center;
}

.hero-kicker{
  display:inline-block;
  margin-bottom:14px;
  background:#fff;
  border:1px solid #f4c9df;
  color:#c00068;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

.hero h1{
  margin:0 0 14px 0;
  font-size:52px;
  line-height:1.05;
  color:#2f2f2f;
}

.hero p{
  margin:0 0 20px 0;
  font-size:18px;
  color:#666;
  max-width:720px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.hero-points{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  color:#7a7a7a;
  font-size:14px;
  font-weight:700;
}

.hero-card{
  background:#fff;
  border:1px solid #f4c9df;
  border-radius:22px;
  padding:24px;
  box-shadow:0 10px 30px rgba(230, 0, 126, 0.08);
}

.hero-badge{
  display:inline-block;
  background:#e6007e;
  color:#fff;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.hero-card h3{
  margin:0 0 10px 0;
  font-size:28px;
  color:#333;
}

.hero-card p{
  font-size:15px;
  line-height:1.6;
  color:#666;
  margin-bottom:14px;
}

.hero-link{
  color:#e6007e;
  font-weight:800;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:12px;
  font-weight:800;
  font-size:14px;
  border:none;
  cursor:pointer;
}

.btn-primary{
  background:#e6007e;
  color:#fff;
}

.btn-primary:hover{
  background:#c90070;
}

.btn-secondary{
  background:#fff;
  color:#e6007e;
  border:1px solid #e6007e;
}

.btn-light{
  background:#fff;
  color:#444;
  border:1px solid #ddd;
}

/* TRUST */
.trust-bar{
  padding:20px 0;
  background:#fff;
  border-top:1px solid #f4d7e6;
  border-bottom:1px solid #f4d7e6;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.trust-item{
  background:#fff8fc;
  border:1px solid #f3d4e5;
  border-radius:16px;
  padding:16px;
}

.trust-item strong{
  display:block;
  margin-bottom:4px;
  color:#333;
}

.trust-item span{
  color:#777;
  font-size:14px;
}

/* SECTIONS */
.section{
  padding:38px 0;
}

.section-soft{
  background:#fff;
}

.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}

.section-head h2{
  margin:0;
  font-size:30px;
  color:#333;
}

.section-link{
  font-size:14px;
  font-weight:800;
  color:#e6007e;
}

/* CATEGORY CHIPS */
.category-chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid #f0cade;
  color:#b50067;
  font-weight:800;
  font-size:14px;
}

.chip-muted{
  color:#777;
}

/* PRODUCTS */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.product-card{
  position:relative;
  background:#fff;
  border:1px solid #f0d9e5;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,0.04);
}

.product-badges{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
}

.badge-new{
  background:#e6007e;
  color:#fff;
}

.badge-low{
  background:#ffedb8;
  color:#8a5b00;
}

.product-image-link{
  display:block;
  background:#fff;
}

.product-image{
  width:100%;
  height:260px;
  object-fit:cover;
  background:#fafafa;
}

.product-body{
  padding:16px;
}

.product-category{
  font-size:11px;
  font-weight:800;
  color:#b00066;
  text-transform:uppercase;
  letter-spacing:.7px;
  margin-bottom:8px;
}

.product-title{
  margin:0 0 8px 0;
  font-size:18px;
  line-height:1.3;
  min-height:48px;
}

.product-code{
  font-size:12px;
  color:#777;
  margin-bottom:10px;
}

.product-price{
  font-size:28px;
  font-weight:900;
  color:#333;
  margin-bottom:8px;
}

.product-stock{
  font-size:13px;
  font-weight:800;
  margin-bottom:14px;
}

.in-stock{
  color:#14824f;
}

.out-stock{
  color:#c0392b;
}

.product-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.product-actions .btn{
  flex:1;
}

/* CTA */
.cta-box{
  background:linear-gradient(135deg, #e6007e 0%, #ff4ba9 100%);
  color:#fff;
  border-radius:24px;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.cta-box h2{
  margin:0 0 8px 0;
  font-size:30px;
}

.cta-box p{
  margin:0;
  color:#ffeaf6;
}

.cta-box .btn-primary{
  background:#fff;
  color:#e6007e;
}

/* EMPTY */
.empty-box{
  background:#fff4d9;
  color:#7a5a00;
  border:1px solid #f0dc9b;
  border-radius:16px;
  padding:16px;
  font-weight:700;
}

/* FOOTER */
.site-footer{
  margin-top:30px;
  background:#2c2c2c;
  color:#fff;
  padding-top:34px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:24px;
}

.site-footer h4{
  margin:0 0 10px 0;
  font-size:18px;
}

.site-footer p{
  color:#ddd;
  line-height:1.7;
}

.footer-links{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:#ddd;
}

.footer-bottom{
  padding:18px 16px;
  margin-top:24px;
  border-top:1px solid rgba(255,255,255,0.12);
  color:#ccc;
  font-size:14px;
}

/* WHATSAPP FLOTANTE */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  z-index: 99999;
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  line-height: 0 !important;
  overflow: visible !important;
}

.whatsapp-float img{
  width: 64px;
  height: 64px;
  display: block;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 50%;
  box-shadow: none !important;
  object-fit: contain;
}

.whatsapp-float:hover{
  transform: scale(1.06);
  transition: transform .2s ease;
}

.whatsapp-float::before,
.whatsapp-float::after{
  content: none !important;
  display: none !important;
}

@media (max-width: 768px){
  .whatsapp-float{
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float img{
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 900px){
  .header-wrap{
    min-height:auto;
    padding:14px 0;
  }

  .menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .main-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border:1px solid #f0d9e5;
    border-radius:18px;
    box-shadow:0 18px 40px rgba(0,0,0,.10);
    padding:16px;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    z-index:99999;
  }

  .main-nav.open{
    display:flex;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown{
    width:100%;
  }

  .main-nav > a{
    padding:8px 2px;
  }

  .nav-dropdown{
    width:100%;
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-dropdown-toggle{
    width:100%;
    justify-content:space-between;
    padding:8px 2px;
  }

  .nav-dropdown-menu{
    position:static;
    display:none;
    min-width:auto;
    width:100%;
    margin-top:8px;
    box-shadow:none;
    border-radius:14px;
  }

  .nav-dropdown:hover .nav-dropdown-menu{
    display:none;
  }

  .nav-dropdown.open .nav-dropdown-menu{
    display:block;
  }

  .topbar-wrap{
    gap:10px;
    font-size:12px;
  }

  .hero h1{
    font-size:36px;
  }

  .hero p{
    font-size:16px;
  }

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

  .product-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

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

  .whatsapp-float{
    width:58px;
    height:58px;
    right:14px;
    bottom:14px;
  }
}

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

  .hero h1{
    font-size:34px;
  }

  .hero-card{
    padding:20px;
  }

  .brand-main{
    font-size:24px;
  }

  .brand-sub{
    font-size:11px;
  }
}

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

  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-actions,
  .product-actions{
    flex-direction:column;
  }

  .product-actions .btn{
    width:100%;
  }

  .hero-points{
    flex-direction:column;
    gap:8px;
  }

  .nav-dropdown-sublist{
    flex-direction:column;
    align-items:stretch;
  }

  .nav-dropdown-sublist a{
    justify-content:flex-start;
    width:100%;
  }

  .cart-link{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:800;
  }

  .cart-count{
    min-width:20px;
    height:20px;
    padding:0 6px;
    border-radius:999px;
    background:#e6007e;
    color:#fff;
    font-size:12px;
    font-weight:800;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    line-height:1;
  }
}