/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(255,105,180,0.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height);
  position: relative; padding: 1.5rem 3rem;
  max-width: 1400px; margin: 0 auto;
}
.site-header nav {
  position: absolute; left: 50%; transform: translateX(-50%);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
  letter-spacing: 0.2em;
  color: white;
  transition: var(--transition);
}
.site-header.scrolled .logo { color: var(--pink); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-weight: 600; font-size: 1rem;
  color: rgba(255,255,255,0.9);
  transition: var(--transition); position: relative;
}
.site-header.scrolled .nav-links a { color: var(--dark); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--pink);
  transform: scaleX(0); transition: var(--transition);
  transform-origin: center;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.header-actions {
  display: flex; align-items: center; gap: 1.2rem;
}
.search-toggle, .cart-toggle {
  background: none; border: none;
  color: white; font-size: 1.2rem;
  padding: 0.5rem; border-radius: 50%;
  transition: var(--transition); cursor: pointer;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
}
.site-header.scrolled .search-toggle,
.site-header.scrolled .cart-toggle { color: var(--dark); }
.cart-toggle { position: relative; }
.cart-badge {
  position: absolute; top: 0; right: 0;
  background: var(--gradient-pink);
  color: white; font-size: 0.65rem;
  font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: translate(4px, -4px);
  display: none;
}
.cart-badge.show { display: flex; }

/* Hamburger */
.menu-toggle {
  display: none; background: none; border: none;
  color: white; font-size: 1.4rem;
  cursor: pointer; padding: 0.4rem;
  transition: var(--transition);
}
.site-header.scrolled .menu-toggle { color: var(--dark); }

/* Search bar */
.search-bar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  position: fixed; top: 80px; left: 0; right: 0; z-index: 999;
  padding: 1.2rem 3rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: none;
}
.search-bar.open { display: block; animation: slideDown 0.3s ease; }
.search-input-wrap {
  max-width: 600px; margin: 0 auto;
  position: relative;
}
.search-input-wrap input {
  width: 100%; padding: 1rem 3rem 1rem 1.5rem;
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-full);
  font-size: 1rem; outline: none;
  transition: border-color 0.2s;
  background: white; color: var(--dark);
  direction: rtl;
}
.search-input-wrap input:focus { border-color: var(--pink); }
.search-input-wrap i {
  position: absolute; left: 1.2rem; top: 50%;
  transform: translateY(-50%); color: var(--pink);
  font-size: 1rem;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Search results */
.search-results-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); overflow: hidden;
  max-height: 400px; overflow-y: auto;
  border: 1px solid var(--pink-light); display: none;
}
.search-results-dropdown.show { display: block; }
.search-result-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; cursor: pointer;
  transition: background 0.2s; border-bottom: 1px solid var(--pink-pale);
}
.search-result-item:hover { background: var(--pink-pale); }
.search-result-img {
  width: 55px; height: 55px;
  border-radius: var(--radius-sm); object-fit: cover;
  background: var(--pink-pale); flex-shrink: 0;
}
.search-result-name { font-weight: 700; font-size: 0.95rem; }
.search-result-price { color: var(--pink); font-weight: 700; font-size: 0.9rem; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -320px; bottom: 0; width: 300px;
  background: white; z-index: 100001;
  box-shadow: -5px 0 40px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.mobile-drawer.open { right: 0; }
.drawer-header {
  background: var(--gradient-pink);
  padding: 2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: white; letter-spacing: 0.2em;
}
.drawer-close {
  background: rgba(255,255,255,0.2); border: none;
  color: white; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer;
  font-size: 1rem; display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition);
}
.drawer-close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }
.drawer-links { flex: 1; padding: 1.5rem 0; overflow-y: auto; }
.drawer-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.8rem; color: var(--dark);
  font-size: 1.05rem; font-weight: 600;
  border: none; background: none; width: 100%; text-align: right;
  cursor: pointer; transition: var(--transition);
  border-right: 4px solid transparent;
}
.drawer-link i { color: var(--pink); width: 20px; }
.drawer-link:hover {
  background: var(--pink-pale);
  border-right-color: var(--pink);
  color: var(--pink);
}
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; z-index: 100000;
  transition: var(--transition);
}
.drawer-overlay.show { opacity: 1; visibility: visible; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-pink);
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding-top: 100px; padding-bottom: 80px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,20,147,0.3) 0%, transparent 40%);
}

/* Floating fashion icons */
.float-icon {
  position: absolute; pointer-events: none;
  opacity: 0.15; color: white; z-index: 0;
}
.float-icon:nth-child(2) { font-size: clamp(3.5rem, 6vw, 5.5rem); top: 12%; left: 10%; animation: float1 8s ease-in-out infinite; }
.float-icon:nth-child(3) { font-size: clamp(2.5rem, 4vw, 4rem); top: 18%; right: 12%; animation: float2 10s ease-in-out infinite; animation-delay: 1s; }
.float-icon:nth-child(4) { font-size: clamp(3rem, 5vw, 4.5rem); top: 75%; left: 12%; animation: float3 9s ease-in-out infinite; animation-delay: 2s; }
.float-icon:nth-child(5) { font-size: clamp(2.5rem, 4.5vw, 3.5rem); top: 70%; right: 10%; animation: float4 11s ease-in-out infinite; animation-delay: 0.5s; }
.float-icon:nth-child(6) { font-size: clamp(3rem, 5vw, 4rem); top: 45%; left: 5%; animation: float1 12s ease-in-out infinite; animation-delay: 3s; }
.float-icon:nth-child(7) { font-size: clamp(2.5rem, 4vw, 3rem); top: 50%; right: 6%; animation: float2 7s ease-in-out infinite; animation-delay: 1.5s; }

@media (max-width: 768px) {
  .float-icon:nth-child(2) { top: 8%; left: 2%; }
  .float-icon:nth-child(3) { top: 12%; right: 2%; }
  .float-icon:nth-child(4) { top: 80%; left: 5%; }
  .float-icon:nth-child(5) { top: 75%; right: 5%; }
  .float-icon:nth-child(6) { top: 40%; left: 2%; }
  .float-icon:nth-child(7) { top: 55%; right: 2%; }
}

@keyframes float1 { 0%,100%{transform:translate(0,0) rotate(-5deg)} 33%{transform:translate(25px,-30px) rotate(5deg)} 66%{transform:translate(-15px,-50px) rotate(-3deg)} }
@keyframes float2 { 0%,100%{transform:translate(0,0) rotate(3deg)} 33%{transform:translate(-30px,25px) rotate(-8deg)} 66%{transform:translate(20px,40px) rotate(5deg)} }
@keyframes float3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(30px,-40px) scale(1.1)} }
@keyframes float4 { 0%,100%{transform:translate(0,0) rotate(0deg)} 30%{transform:translate(-20px,-30px) rotate(10deg)} 60%{transform:translate(25px,-15px) rotate(-5deg)} }

.hero-content {
  position: relative; z-index: 1;
  max-width: 850px; padding: 2rem;
  animation: heroIn 1s ease-out both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600; color: white;
  line-height: 1.1; margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.hero-subtitle {
  font-size: 1.25rem; color: rgba(255,255,255,0.9);
  margin-bottom: 3rem; font-weight: 400;
  max-width: 550px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.8rem;
  letter-spacing: 0.1em; animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.2rem; }
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ===== CATEGORY FILTER ===== */
.filter-section { padding: 3rem 0 1rem; }
.filter-pills {
  display: flex; gap: 0.8rem;
  flex-wrap: wrap; justify-content: center;
}
.filter-pill {
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--pink-light);
  background: white;
  color: var(--gray); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition);
}
.filter-pill:hover { border-color: var(--pink); color: var(--pink); }
.filter-pill.active {
  background: var(--gradient-pink);
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 20px rgba(255,105,180,0.35);
}

/* ===== PRODUCTS GRID ===== */
.products-section {
  padding: 3rem 0 6rem;
  background: linear-gradient(to bottom, white, var(--pink-faint) 50%, white);
  scroll-margin-top: 80px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2.5rem;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer; position: relative;
  max-width: 260px;
  margin: 0 auto;
  width: 100%;
}
.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--pink-pale);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.1); }
.product-badge-sale {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white; padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 4px 15px rgba(239,68,68,0.35);
}
.product-badge-out {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(107,114,128,0.9);
  color: white; padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 700;
}
.product-wishlist {
  position: absolute; bottom: 1rem; left: 1rem;
  width: 38px; height: 38px;
  background: white; border: none;
  border-radius: 50%; color: var(--pink);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  opacity: 0;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: var(--pink); color: white; transform: scale(1.1); }

.product-body { padding: 1.5rem; }
.product-cat {
  font-size: 0.78rem; font-weight: 600;
  color: var(--pink); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.product-name {
  font-size: 1.2rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.9rem; color: var(--gray);
  margin-bottom: 1.2rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer {
  display: flex; align-items: center;
  justify-content: space-between;
}
.product-price-wrap { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
.price-current {
  white-space: nowrap;
  font-size: 1.5rem; font-weight: 900;
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-old {
  font-size: 1rem; color: #9CA3AF;
  text-decoration: line-through;
  white-space: nowrap;
}
.btn-add-cart {
  background: var(--gradient-pink);
  color: white; border: none;
  width: 44px; height: 44px;
  border-radius: 50%; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255,105,180,0.35);
}
.btn-add-cart:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(255,105,180,0.45); }
.btn-add-cart:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.product-modal {
  background: white; border-radius: var(--radius-lg);
  width: 100%; max-width: 900px;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: translateY(30px); transition: var(--transition);
}
.modal-overlay.open .product-modal { transform: translateY(0); }
.modal-gallery { position: sticky; top: 0; }
.modal-main-img { width: 100%; aspect-ratio: 1 / 1; max-height: 380px; object-fit: contain; border-radius: var(--radius-lg); margin-bottom: 1rem; background: white; border: 1px solid var(--border); }
.modal-thumbs {
  display: flex; gap: 0.5rem; padding: 0.8rem;
  flex-wrap: wrap; background: var(--pink-faint);
}
.modal-thumb {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  object-fit: cover; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
}
.modal-thumb.active, .modal-thumb:hover { border-color: var(--pink); }
.modal-info { padding: 2.5rem; overflow-y: auto; }
.modal-close {
  float: left; background: var(--pink-pale);
  border: none; width: 36px; height: 36px;
  border-radius: 50%; color: var(--pink);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--pink); color: white; transform: rotate(90deg); }
.modal-cat { color: var(--pink); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.modal-name { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; line-height: 1.3; }
.modal-price { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1.5rem; }
@media (max-width: 480px) { .modal-main-img { max-width: 280px; max-height: 280px; margin: 0 auto 1rem auto; display: block; } }
.modal-price .price-current { font-size: 2rem; }
.modal-desc { color: var(--gray); line-height: 1.9; margin-bottom: 1.5rem; }
.modal-features { margin-bottom: 1.5rem; }
.modal-features h4 { font-weight: 700; margin-bottom: 0.8rem; color: var(--dark); }
.feature-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--gray); font-size: 0.95rem; margin-bottom: 0.4rem;
}
.feature-item i { color: var(--pink); font-size: 0.85rem; }
.modal-details { margin-bottom: 2rem; }
.modal-details h4 { font-weight: 700; margin-bottom: 0.8rem; color: var(--dark); }
.detail-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0; border-bottom: 1px solid var(--pink-pale);
  font-size: 0.9rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--gray); }
.detail-value { font-weight: 600; color: var(--dark); }
.modal-qty {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.qty-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--pink-light);
  background: none; color: var(--pink);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--pink); color: white; border-color: var(--pink); }
.qty-num { font-size: 1.2rem; font-weight: 700; min-width: 30px; text-align: center; }

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
  position: fixed; top: 0; left: -420px; bottom: 0; width: 400px;
  background: white; z-index: 10001;
  box-shadow: 5px 0 50px rgba(0,0,0,0.12);
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { left: 0; }
.cart-header {
  background: var(--gradient-pink);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-title {
  font-size: 1.3rem; font-weight: 700;
  color: white; display: flex; align-items: center; gap: 0.6rem;
}
.cart-close {
  background: rgba(255,255,255,0.2); border: none;
  color: white; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty {
  text-align: center; padding: 4rem 2rem;
  color: var(--gray);
}
.cart-empty i { font-size: 4rem; color: var(--pink-light); margin-bottom: 1rem; display: block; }
.cart-item {
  display: flex; gap: 1rem; margin-bottom: 1rem;
  padding: 1rem; border-radius: var(--radius-md);
  background: var(--pink-faint); position: relative;
}
.cart-item-img {
  width: 75px; height: 75px;
  border-radius: var(--radius-sm); object-fit: cover;
  background: var(--pink-pale); flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.cart-item-price { color: var(--pink); font-weight: 700; font-size: 0.95rem; }
.cart-item-qty {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem;
}
.cart-item-qty button {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--pink-light); background: white;
  color: var(--pink); font-size: 0.9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-item-qty button:hover { background: var(--pink); color: white; border-color: var(--pink); }
.cart-item-qty span { font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-remove {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: none; border: none; color: #9CA3AF;
  font-size: 0.9rem; cursor: pointer; transition: color 0.2s;
}
.cart-item-remove:hover { color: #ef4444; }

.cart-footer { padding: 1.5rem 2rem; border-top: 1px solid var(--pink-pale); }
.cart-total {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 1.2rem;
}
.cart-total-label { font-size: 1.05rem; font-weight: 600; color: var(--gray); }
.cart-total-price { font-size: 1.5rem; font-weight: 900; color: var(--pink); }

/* Payment method selector in cart */
.payment-select { margin-bottom: 1.2rem; }
.payment-select label { font-size: 0.85rem; font-weight: 600; color: var(--gray); margin-bottom: 0.6rem; display: block; }
.payment-options { display: flex; gap: 0.6rem; }
.pay-opt {
  flex: 1; padding: 0.7rem;
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-md);
  background: white; cursor: pointer;
  text-align: center; transition: var(--transition);
}
.pay-opt:hover, .pay-opt.selected { border-color: var(--pink); background: var(--pink-pale); }
.pay-opt i { display: block; font-size: 1.3rem; color: var(--pink); margin-bottom: 0.3rem; }
.pay-opt span { font-size: 0.78rem; font-weight: 600; color: var(--dark); }

/* ===== PAYMENT SECTION ===== */
.payment-section {
  padding: 5rem 0;
  background: var(--gradient-light);
  scroll-margin-top: 100px;
}
.payment-cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.payment-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2.5rem 3rem; text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition); min-width: 220px;
}
.payment-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.payment-card i {
  font-size: 3rem; color: var(--pink);
  margin-bottom: 1.2rem; display: block;
}
.payment-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.payment-card p { color: var(--gray); font-size: 0.95rem; }

/* ===== ABOUT ===== */
.about-section { padding: 6rem 0; background: white; scroll-margin-top: 80px; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-label { display: block; }
.about-title {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 600; line-height: 1.2;
  color: var(--dark); margin-bottom: 1.5rem;
}
.about-title span { color: var(--pink); }
.about-text { color: var(--gray); font-size: 1.05rem; line-height: 1.9; margin-bottom: 2rem; }
.about-stats { display: flex; gap: 2.5rem; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700; color: var(--pink);
}
.stat-label { font-size: 0.85rem; color: var(--gray); font-weight: 600; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; max-width: 380px; margin: 0 auto;
  border-radius: var(--radius-xl);
  aspect-ratio: 1/1; object-fit: cover;
  background: var(--gradient-light);
}
.about-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gradient-pink);
  color: white; border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-badge .badge-num { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-img-badge .badge-text { font-size: 0.8rem; opacity: 0.9; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 600; color: white;
  letter-spacing: 0.2em; margin-bottom: 1rem;
}
.footer-brand-desc { color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.8rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-link:hover { background: var(--pink); color: white; border-color: var(--pink); transform: translateY(-3px); }
.footer-col-title { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1rem; text-align: center;
}
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ===== WhatsApp Button ===== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px; z-index: 9000;
  background: white;
  border-radius: 50%; color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 8px 25px rgba(255,105,180,0.4);
  transition: var(--transition); text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(255,105,180,0.6); }
.wa-float::before {
  content: ''; position: absolute;
  inset: -4px; border-radius: 50%;
  border: 2px solid rgba(255,105,180,0.4);
  animation: waPulse 2s infinite;
}
@keyframes waPulse { 0%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(1.5)} }

/* ===== Scroll to Top Button ===== */
.scroll-top {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 50px; height: 50px; z-index: 9000;
  background: var(--dark-mid); color: white;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.scroll-top.show {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.scroll-top:hover {
  background: var(--pink); transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ===== Toast ===== */
.toast-wrap {
  position: fixed; top: 6rem; right: 2rem;
  z-index: 20000; display: flex;
  flex-direction: column; gap: 0.8rem;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .toast-wrap { top: 5rem; right: 1rem; left: 1rem; align-items: center; }
  .toast { width: auto; justify-content: center; }
}
.toast {
  background: white; border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem; font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.6rem;
  max-width: 280px; font-size: 0.85rem;
  animation: toastIn 0.4s cubic-bezier(0.4,0,0.2,1) both;
  border-right: 4px solid var(--pink);
}
.toast.success { border-right-color: #10b981; }
.toast.success i { color: #10b981; }
.toast.error { border-right-color: #ef4444; }
.toast.error i { color: #ef4444; }
.toast i { color: var(--pink); font-size: 1.1rem; }
@keyframes toastIn { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .site-header nav { display: none; }
  .header-actions { gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
  .product-modal { grid-template-columns: 1fr; }
  .modal-gallery { position: static; }
  .cart-sidebar { width: 100%; left: -100%; }
  .payment-cards { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-title { font-size: 2.2rem; }
  .filter-section { padding: 2rem 0 0.5rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .search-bar { padding: 1rem 1.2rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .product-body { padding: 0.8rem; }
  .product-cat { font-size: 0.65rem; margin-bottom: 0.3rem; }
  .product-name { font-size: 0.8rem; line-height: 1.25; margin-bottom: 0.4rem; font-weight: 600; }
  .product-desc { display: none; }
  .product-price-wrap { gap: 0.3rem; flex-direction: column; align-items: flex-start; }
  .price-current { font-size: 1.1rem; }
  .price-old { font-size: 0.8rem; }
  .btn-add-cart { width: 32px; height: 32px; font-size: 0.8rem; }
  .product-badge-sale, .product-badge-out { padding: 0.2rem 0.4rem; font-size: 0.6rem; }
}


/* ===== PRODUCT PAGE ===== */
.product-page-container { padding: 8rem 0 4rem 0; min-height: 80vh; background: var(--bg); }
.breadcrumb { font-size: 0.9rem; color: var(--gray); margin-bottom: 2rem; }
.breadcrumb a { color: var(--text); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink); }
.product-grid-layout { display: grid; grid-template-columns: 45% 55%; gap: 3rem; align-items: start; }
.product-gallery { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 100px; }
.product-main-img { width: 100%; max-width: 450px; margin: 0 auto; aspect-ratio: 1 / 1; max-height: 450px; object-fit: contain; border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.product-thumbs { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; }
.product-thumb-img { width: 80px; height: 100px; object-fit: cover; border-radius: var(--radius); cursor: pointer; border: 2px solid transparent; opacity: 0.7; transition: all 0.3s; }
.product-thumb-img:hover { opacity: 1; }
.product-thumb-img.active { border-color: var(--pink); opacity: 1; }
.product-info-panel { display: flex; flex-direction: column; gap: 1.5rem; background: white; padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.product-meta { display: flex; gap: 1rem; align-items: center; }
.product-category-badge { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pink); background: rgba(236,72,153,0.1); padding: 0.3rem 0.8rem; border-radius: 2rem; }
.product-out-badge { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: var(--red); background: rgba(239,68,68,0.1); padding: 0.3rem 0.8rem; border-radius: 2rem; }
.product-title-lg { font-family: var(--font-display); font-size: 3rem; line-height: 1.1; color: var(--dark); }
.product-price-row { display: flex; align-items: center; gap: 1rem; }
.product-price-lg { font-size: 2rem; font-weight: 600; color: var(--dark); white-space: nowrap; }
.product-old-price-lg { font-size: 1.2rem; color: var(--gray); text-decoration: line-through; white-space: nowrap; }
.product-discount-lg { background: var(--pink); color: white; padding: 0.2rem 0.6rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; }
.product-desc-lg { font-size: 1.1rem; line-height: 1.6; color: var(--gray); }
.product-section { margin-top: 0.5rem; padding: 1.5rem; border-radius: 1.5rem; border: 2px solid var(--pink-pale); background: white; box-shadow: 0 4px 15px rgba(255,105,180,0.05); }
.product-section-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark); border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.product-features-list { list-style: none; display: flex; flex-direction: column; gap: 0; padding: 0; }
.product-features-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 1rem; color: var(--dark); padding: 0.6rem 0; border-bottom: 1px dashed var(--border); }
.product-features-list li:last-child { border-bottom: none; }
.product-features-list i { color: var(--pink); font-size: 1.1rem; }
.product-details-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.detail-row { display: flex; flex-direction: column; align-items: flex-start; background: white; padding: 0.8rem 1.2rem; border-radius: 1rem; border: 1.5px solid var(--pink-pale); min-width: 120px; box-shadow: 0 2px 10px rgba(255,105,180,0.04); }
.detail-key { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray); margin-bottom: 0.2rem; }
.detail-val { font-size: 1rem; font-weight: 600; color: var(--dark); }
.product-action-box { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.qty-selector { display: flex; align-items: center; justify-content: center; gap: 1.5rem; background: var(--pink-faint); padding: 0.5rem; border-radius: var(--radius-full); width: 100%; max-width: 250px; margin: 0 auto; }
.btn-add-lg { width: 100%; padding: 1rem; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
@media (max-width: 900px) { .product-grid-layout { grid-template-columns: 1fr; gap: 2rem; } .product-title-lg { font-size: 2.5rem; } .product-gallery { position: static; } }
@media (max-width: 480px) { .product-info-panel { padding: 1.5rem; } .product-main-img { max-width: 300px; max-height: 300px; } }


.product-colors { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.color-btn { padding: 0.5rem 1.2rem; border-radius: 2rem; border: 2px solid var(--pink-pale); background: white; color: var(--dark); cursor: pointer; transition: var(--transition); font-weight: 600; }
.color-btn:hover, .color-btn.active { border-color: var(--pink); background: var(--pink-faint); color: var(--pink); }

/* Force header visible on product page */
body.product-page .site-header { background: rgba(255, 255, 255, 0.98) !important; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important; }
body.product-page .site-header .logo { color: var(--pink) !important; }
body.product-page .site-header .nav-links a, body.product-page .site-header .search-toggle, body.product-page .site-header .cart-toggle, body.product-page .site-header .menu-toggle { color: var(--dark) !important; }

.btn-checkout-page { background: var(--dark); color: white; width: 100%; padding: 1rem; border-radius: 2rem; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
.btn-checkout-page:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.btn-whatsapp-page { background: #25D366; color: white; width: 100%; padding: 1rem; border-radius: 2rem; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
.btn-whatsapp-page:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); }

/* ===== QUICK ADD MODAL ===== */
.quick-add-modal {
  background: white; border-radius: 1.5rem 1.5rem 0 0;
  width: 100%; max-width: 500px;
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.modal-overlay.open .quick-add-modal { transform: translateX(-50%) translateY(0); }
@media (min-width: 501px) {
  .quick-add-modal {
    position: relative; border-radius: var(--radius-lg); bottom: auto; left: auto; transform: translateY(30px); margin: 2rem auto;
  }
  .modal-overlay.open .quick-add-modal { transform: translateY(0); }
}

.qa-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--pink-pale); padding-bottom: 1rem; }
.qa-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin: 0; }
.qa-close { background: none; border: none; font-size: 1.2rem; color: var(--gray); cursor: pointer; padding: 0.5rem; transition: color 0.2s; }
.qa-close:hover { color: var(--dark); }

.qa-product-row { display: flex; gap: 1rem; align-items: center; }
.qa-product-img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; border: 1px solid var(--pink-pale); }
.qa-product-info { flex: 1; }
.qa-product-name { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
.qa-product-price { display: flex; gap: 0.5rem; align-items: baseline; }
.qa-product-price .price-current { font-size: 1.1rem; color: var(--dark); font-weight: 700; -webkit-text-fill-color: var(--dark); background: none; }
.qa-product-price .price-old { font-size: 0.9rem; color: #9CA3AF; text-decoration: line-through; }

.qa-colors-section { margin-bottom: 0.5rem; }
.qa-color-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--gray); margin-bottom: 0.8rem; letter-spacing: 0.05em; }
.qa-color-label span { color: var(--dark); }
.qa-color-options { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.qa-color-swatch {
  width: 55px; height: 55px; border-radius: 50%; border: 2px solid transparent;
  padding: 2px; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qa-color-swatch img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.qa-color-swatch.active { border-color: var(--dark); }
.qa-color-swatch:hover { border-color: var(--gray); }

.qa-btn-add { background: var(--gradient-pink); color: white; width: 100%; padding: 1.1rem; border-radius: 3rem; font-size: 1.05rem; font-weight: 700; border: none; cursor: pointer; transition: transform 0.2s; box-shadow: 0 4px 15px rgba(255,105,180,0.3); }
.qa-btn-add:hover { transform: translateY(-2px); }

.qa-view-link { text-align: center; display: block; font-size: 0.9rem; color: var(--gray); text-decoration: underline; margin-top: -0.5rem; transition: color 0.2s; }
.qa-view-link:hover { color: var(--dark); }
