/* ============================================================
   DROPMETA PRO → HOSTINGER
   Paleta original: #102169 (header/footer), #00d44f (accent),
   #9400ff (purple), #f7f7f7 (bg), #ffffff (card)
   ============================================================ */

:root {
  --color-header:        #102169;
  --color-header-text:   #ffffff;
  --color-accent:        #00d44f;
  --color-accent-dark:   #00b843;
  --color-link:          #00d44f;
  --color-purple:        #9400ff;
  --color-bg:            #f7f7f7;
  --color-card:          #ffffff;
  --color-text:          #6e6e6e;
  --color-heading:       #6e6e6e;
  --color-border:        #e7e7e7;
  --color-price:         #9400ff;
  --color-price-compare: #6e6e6e;
  --color-sale:          #00d132;
  --color-error:         #f71b1b;
  --color-star:          #ffb647;
  --color-footer:        #102169;
  --color-footer-text:   #ffffff;
  --color-btn-primary:   #00d132;
  --color-btn-secondary: #3a2a2f;
  --radius:              6px;
  --shadow:              0 2px 12px rgba(0,0,0,.08);
  --transition:          .22s ease;
  --font:                'Open Sans', sans-serif;
  --container:           1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-dark); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 56px 0; }
.section--gray { background: var(--color-bg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform .12s;
  text-decoration: none;
  line-height: 1.2;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--color-btn-primary); color: #fff; }
.btn--primary:hover { background: var(--color-accent-dark); color: #fff; }
.btn--secondary { background: var(--color-btn-secondary); color: #fff; }
.btn--cart {
  background: var(--color-header);
  color: #fff;
  width: 100%;
  margin-top: 10px;
  font-size: 13px;
  padding: 10px 16px;
}
.btn--cart:hover { background: #1a3280; color: #fff; }
.btn--promo { background: var(--color-accent); color: #fff; }
.btn--promo:hover { background: var(--color-accent-dark); color: #fff; }
.btn--purple { background: var(--color-purple); color: #fff; }
.btn--purple:hover { background: #7a00d4; color: #fff; }
.btn--slide { background: #fff; color: var(--color-header); font-weight: 700; }
.btn--slide:hover { background: var(--color-accent); color: #fff; }
.btn--newsletter { background: var(--color-accent); color: #fff; border-radius: 0 var(--radius) var(--radius) 0; white-space: nowrap; }
.btn--newsletter:hover { background: var(--color-accent-dark); color: #fff; }
.btn--cookie { background: var(--color-accent); color: #fff; flex-shrink: 0; font-size: 12px; padding: 10px 18px; }
.btn--cookie:hover { background: var(--color-accent-dark); color: #fff; }
.btn--whatsapp { background: #25d366; color: #fff; width: 100%; justify-content: flex-start; border-radius: var(--radius); }
.btn--whatsapp:hover { background: #1da851; color: #fff; }
.btn--checkout { background: var(--color-btn-primary); color: #fff; margin-top: 10px; }
.btn--checkout:hover { background: var(--color-accent-dark); color: #fff; }
.btn--full { width: 100%; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, #00ef73, #00afff);
  color: #fff;
  text-align: center;
  padding: 9px 40px;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
}
.announcement-bar__close {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
}
.announcement-bar__close:hover { opacity: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-header);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

.header__top-bar {
  background: rgba(0,0,0,.18);
  font-size: 12px;
  color: #96a3da;
}
.header__top-bar .container {
  display: flex;
  gap: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.header__top-bar span { display: flex; align-items: center; gap: 6px; }

.header__main { padding: 10px 0; }

.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.header__mobile-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

.header__logo {
  flex-shrink: 0;
  text-decoration: none;
}
.header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.header__logo img { max-height: 50px; }

.header__search {
  flex: 1;
  max-width: 480px;
  margin: 0 auto;
}
.header__search form {
  display: flex;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  overflow: hidden;
}
.header__search input {
  flex: 1;
  background: none;
  border: none;
  padding: 9px 14px;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
}
.header__search input::placeholder { color: rgba(255,255,255,.55); }
.header__search button {
  background: var(--color-accent);
  border: none;
  color: #fff;
  padding: 9px 16px;
  cursor: pointer;
  font-size: 15px;
  transition: background var(--transition);
}
.header__search button:hover { background: var(--color-accent-dark); }

.header__actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
  position: relative;
}
.header__action i { font-size: 18px; margin-bottom: 2px; }
.header__action:hover { background: rgba(255,255,255,.12); color: var(--color-accent); }
.header__action-label { color: rgba(255,255,255,.8); }

.cart-count {
  position: absolute;
  top: 2px; right: 6px;
  background: var(--color-error);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* NAV */
.header__nav {
  background: #1d2a6c;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav__list {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
  flex-wrap: wrap;
}
.nav__list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.88);
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 600;
  transition: color var(--transition), background var(--transition);
  border-radius: 4px;
}
.nav__list > li > a:hover { color: var(--color-accent); background: rgba(255,255,255,.06); }
.nav__list > li > a i { font-size: 11px; }

.nav__item--has-dropdown { position: relative; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.16);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
.nav__item--has-dropdown:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.nav__dropdown li a {
  display: block;
  padding: 9px 18px;
  color: var(--color-text);
  font-size: 13.5px;
  border-radius: 0;
}
.nav__dropdown li a:hover { background: var(--color-bg); color: var(--color-header); }

/* ============================================================
   SLIDESHOW
   ============================================================ */
.slideshow { position: relative; overflow: hidden; background: var(--color-header); }

.slideshow__track { display: flex; transition: transform .5s ease; }
.slideshow__slide {
  min-width: 100%;
  position: relative;
}

/* Shown via JS as active slide */
.slideshow__slide { display: none; }
.slideshow__slide.active { display: block; }

.slide__placeholder {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slide__bg {
  position: absolute; inset: 0;
  opacity: .35;
}
.slide__bg--1 { background: linear-gradient(135deg, #102169 0%, #00d44f 100%); }
.slide__bg--2 { background: linear-gradient(135deg, #9400ff 0%, #102169 100%); }
.slide__bg--3 { background: linear-gradient(135deg, #ff6128 0%, #102169 100%); }

.slide__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  color: #fff;
}
.slide__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.slide__text {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  margin-bottom: 26px;
}

.slideshow__controls {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.slideshow__prev,
.slideshow__next {
  background: rgba(255,255,255,.22);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.slideshow__prev:hover,
.slideshow__next:hover { background: rgba(255,255,255,.44); }
.slideshow__dots { display: flex; gap: 6px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition);
}
.dot.active { background: var(--color-accent); border-color: var(--color-accent); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.section__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-header);
  position: relative;
  padding-bottom: 8px;
}
.section__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}
.section__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-header);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.section__link:hover { color: var(--color-accent); }

/* ============================================================
   COLLECTION CIRCLES
   ============================================================ */
.collection-list { background: #fff; }
.collection-list__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.collection-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
}
.collection-item__circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-header);
  transition: border-color var(--transition), background var(--transition), transform .18s;
}
.collection-item:hover .collection-item__circle {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-3px);
}
.collection-item span {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--color-text);
  transition: color var(--transition);
}
.collection-item:hover span { color: var(--color-header); }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--color-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform .18s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.13);
  transform: translateY(-3px);
}
.product-card__link { text-decoration: none; color: inherit; flex: 1; }

.product-card__image-wrapper {
  position: relative;
  padding-top: 100%;
  background: #f0f0f0;
  overflow: hidden;
}
.product-card__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ccc;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}
.product-card__image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card__image-wrapper img { transform: scale(1.04); }

.product-label {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  z-index: 1;
}
.product-label--sale { background: var(--color-error); color: #fff; }
.product-label--new { background: var(--color-sale); color: #fff; }
.product-label--hot { background: var(--color-purple); color: #fff; }

.product-card__info { padding: 14px; flex: 1; }
.product-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__prices { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.price { font-weight: 700; }
.price--current { color: var(--color-price); font-size: 17px; }
.price--compare { color: var(--color-price-compare); font-size: 13px; text-decoration: line-through; }

.product-card__stars { font-size: 12px; color: var(--color-star); display: flex; align-items: center; gap: 4px; }
.product-card__stars span { color: var(--color-text); font-size: 11px; }

.product-card .btn--cart { margin: 0 14px 14px; width: calc(100% - 28px); }

/* ============================================================
   PROMOTION LIST
   ============================================================ */
.promotion-list { background: #fff; }
.promotion-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  background: var(--color-header);
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(16,33,105,.28);
}
.promo-card__image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1f3681 0%, #00d86b 100%);
  opacity: .55;
}
.promo-card__image-placeholder--2 {
  background: linear-gradient(135deg, #1f3681 0%, #9400ff 100%);
}
.promo-card__image-placeholder--3 {
  background: linear-gradient(135deg, #1f3681 0%, #00afff 100%);
}
.promo-card__content {
  position: absolute;
  z-index: 2;
  padding: 20px;
}
.promo-card__content--top-left { top: 0; left: 0; right: 0; }
.promo-card__title { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.promo-card__price { color: rgba(255,255,255,.88); font-size: 14px; margin-bottom: 14px; }

/* ============================================================
   IMAGE WITH TEXT
   ============================================================ */
.image-with-text { background: #fff; }
.image-with-text__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.image-with-text__image { border-radius: var(--radius); overflow: hidden; }
.image-with-text__placeholder {
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 48px;
  gap: 12px;
}
.image-with-text__placeholder span { font-size: 15px; }
.image-with-text__content h2 {
  font-size: 28px;
  color: var(--color-header);
  margin-bottom: 16px;
}
.image-with-text__content p { margin-bottom: 14px; }

/* ============================================================
   COLLECTION WITH IMAGE - DARK BANNER
   ============================================================ */
.collection-with-image {
  background: var(--color-header);
  padding: 56px 0;
}
.collection-with-image__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
.collection-with-image__content h2 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 14px;
}
.collection-with-image__content p {
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}
.collection-with-image__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.mini-product {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.mini-product:hover { background: rgba(255,255,255,.16); }
.mini-product__image {
  height: 100px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: rgba(255,255,255,.3);
}
.mini-product__info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mini-product__info span { font-size: 12px; color: rgba(255,255,255,.75); }
.mini-product__info strong { font-size: 14px; color: var(--color-accent); }

/* ============================================================
   TEXT WITH ICONS
   ============================================================ */
.text-with-icons { background: #fff; padding: 40px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.text-with-icons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.icon-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.icon-item__icon {
  width: 44px; height: 44px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.icon-item__content h4 {
  font-size: 14px;
  color: var(--color-header);
  margin-bottom: 4px;
}
.icon-item__content p { font-size: 12.5px; line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--color-footer); color: var(--color-footer-text); }

.footer__colorbar {
  display: flex;
  height: 5px;
}
.footer__colorbar span { flex: 1; }

.footer__main { padding: 48px 0 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,.12);
}
.footer__col p { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 8px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer__links a {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  transition: color var(--transition), padding-left var(--transition);
}
.footer__links a:hover { color: var(--color-accent); padding-left: 4px; }

.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--color-accent); }

.newsletter-form { display: flex; gap: 0; margin-top: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { border-color: var(--color-accent); }

.footer__payments {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__payments-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.payment-icons { display: flex; gap: 12px; font-size: 28px; color: rgba(255,255,255,.7); }
.payment-icons i { transition: color var(--transition); }
.payment-icons i:hover { color: var(--color-accent); }

.footer__badges { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer__badges-inner { display: flex; gap: 20px; flex-wrap: wrap; }
.security-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.05);
  padding: 7px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.1);
}
.security-badge i { color: var(--color-accent); }

.footer__bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 4px; }

/* ============================================================
   COOKIE BAR
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-header);
  z-index: 2000;
  border-top: 3px solid var(--color-accent);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-bar.visible { transform: none; }
.cookie-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-bar__inner p { font-size: 12.5px; color: rgba(255,255,255,.82); flex: 1; }

/* ============================================================
   WHATSAPP WIDGET
   ============================================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 80px; right: 24px;
  z-index: 1500;
}
.whatsapp-widget__toggle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s, box-shadow .18s;
  margin-left: auto;
}
.whatsapp-widget__toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.whatsapp-widget__chat {
  position: absolute;
  bottom: 70px; right: 0;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.whatsapp-widget__chat.open { display: flex; }

.whatsapp-widget__header {
  background: #075e54;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.whatsapp-widget__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-widget__header strong { font-size: 14px; }
.whatsapp-widget__header small { opacity: .75; font-size: 11px; }
.whatsapp-widget__header button {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.whatsapp-widget__body { padding: 16px; background: #e5ddd5; }
.whatsapp-bubble {
  background: #fff;
  border-radius: 8px 8px 8px 2px;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  display: inline-block;
}
.whatsapp-widget__footer { padding: 12px; background: #f0f0f0; }

/* ============================================================
   MINI CART
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1800;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.mini-cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 360px;
  background: #fff;
  z-index: 1900;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
.mini-cart.open { transform: none; }

.mini-cart__header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-cart__header h3 { font-size: 17px; color: var(--color-header); }
.mini-cart__header button {
  background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--color-text);
  line-height: 1;
}

.mini-cart__items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.mini-cart__empty { color: var(--color-text); font-size: 14px; text-align: center; margin-top: 24px; }

.mini-cart__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}
.mini-cart__item-img {
  width: 60px; height: 60px;
  background: var(--color-bg);
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ccc;
}
.mini-cart__item-info { flex: 1; }
.mini-cart__item-title { font-size: 13px; font-weight: 600; color: var(--color-heading); margin-bottom: 4px; }
.mini-cart__item-price { font-size: 14px; font-weight: 700; color: var(--color-price); }
.mini-cart__item-remove {
  background: none; border: none; cursor: pointer;
  color: #ccc; font-size: 18px; line-height: 1;
  transition: color var(--transition);
}
.mini-cart__item-remove:hover { color: var(--color-error); }

.mini-cart__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--color-border);
}
.mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.mini-cart__total span { font-size: 14px; color: var(--color-text); }
.mini-cart__total strong { font-size: 18px; color: var(--color-price); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--color-header);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  z-index: 3000;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s;
  opacity: 0;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-list__grid { grid-template-columns: repeat(4, 1fr); }
  .text-with-icons__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .collection-with-image__products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__top-bar { display: none; }
  .header__mobile-toggle { display: flex; }
  .header__search { order: 3; width: 100%; max-width: none; }
  .header__inner { flex-wrap: wrap; }
  .header__nav { display: none; }
  .header__nav.open { display: block; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list > li > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,.1);
    padding: 0;
    display: none;
  }
  .nav__item--has-dropdown.open .nav__dropdown { display: block; }
  .nav__dropdown li a { color: rgba(255,255,255,.7); padding-left: 20px; }

  .slide__placeholder { height: 300px; }
  .slide__title { font-size: 26px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-list__grid { grid-template-columns: repeat(4, 1fr); }
  .promotion-list__grid { grid-template-columns: 1fr; }
  .image-with-text__grid { grid-template-columns: 1fr; }
  .collection-with-image__inner { grid-template-columns: 1fr; }
  .collection-with-image__products { grid-template-columns: repeat(2, 1fr); }
  .text-with-icons__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }

  .mini-cart { width: 100%; }
}

@media (max-width: 480px) {
  .collection-list__grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .text-with-icons__grid { grid-template-columns: 1fr; }
  .section__title { font-size: 20px; }
  .slide__title { font-size: 22px; }
  .slide__text { font-size: 14px; }
}
