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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #333;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-alt { background: #F0FDFC; }

/* ── Announce Bar ── */
.announce-bar {
  background: #004C54;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.5px;
}

/* ── Header ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid #B2EBE8;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #004C54;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.site-nav a:hover { color: #00B4A6; background: #F0FDFC; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #004C54;
  background: #F0FDFC;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s;
  position: relative;
}
.cart-link:hover { background: #B2EBE8; }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: #00B4A6;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #004C54 0%, #00897B 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: rgba(255,255,255,0.03);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-inner { max-width: 620px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00B4A6;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #009688; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: #fff; }

/* ── Trust Strip ── */
.trust-strip {
  background: #F0FDFC;
  border-bottom: 1px solid #B2EBE8;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 16px 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
}
.trust-item svg { color: #00B4A6; }

/* ── Section Heading ── */
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #004C54;
  margin-bottom: 10px;
}
.section-heading p { color: #777; font-size: 15px; max-width: 520px; margin: 0 auto; }
.section-heading .divider {
  width: 48px; height: 3px;
  background: #00B4A6;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ── Featured 3 Grid ── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* ── Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Product Card ── */
.product-card {
  background: #fff;
  border: 1px solid #B2EBE8;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  background: #F0FDFC;
}
.product-card-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.badge-sold {
  position: absolute;
  top: 10px; left: 10px;
  background: #E6FAF9;
  color: #00897B;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.product-card-body { padding: 14px 16px 18px; }
.product-card-body h3 {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  min-height: 36px;
}
.stars { color: #FBBF24; font-size: 12px; margin-bottom: 6px; }
.price-row { display: flex; align-items: center; gap: 8px; }
.price-now { font-size: 17px; font-weight: 700; color: #004C54; }
.price-was { font-size: 13px; color: #999; text-decoration: line-through; }
.card-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 9px;
  background: #004C54;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.card-btn:hover { background: #00B4A6; }

/* ── Product Detail ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-detail-img { border-radius: 10px; overflow: hidden; border: 1px solid #B2EBE8; }
.product-detail-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-info h1 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #004C54; margin-bottom: 12px; line-height: 1.3; }
.product-info .badge-orders { display: inline-flex; align-items: center; gap: 5px; background: #FEF3C7; color: #92400E; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px; margin-bottom: 16px; }
.product-info .price-big { font-size: 2rem; font-weight: 800; color: #00B4A6; margin-bottom: 5px; }
.product-info .price-orig { font-size: 14px; color: #999; text-decoration: line-through; margin-bottom: 20px; }
.product-info p.desc { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 24px; }
.variant-group { margin-bottom: 18px; }
.variant-group label { font-size: 13px; font-weight: 700; color: #004C54; display: block; margin-bottom: 6px; }
.variant-group select { width: 100%; padding: 11px 14px; border: 1px solid #B2EBE8; border-radius: 6px; font-size: 14px; background: #fff; color: #333; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.qty-box { display: flex; align-items: center; border: 1px solid #B2EBE8; border-radius: 6px; overflow: hidden; }
.qty-box button { width: 36px; height: 40px; background: #F0FDFC; border: none; cursor: pointer; font-size: 18px; color: #333; transition: background 0.2s; }
.qty-box button:hover { background: #B2EBE8; }
.qty-box span { width: 44px; text-align: center; font-weight: 600; }
.btn-atc { flex: 1; padding: 13px; background: #00B4A6; color: #fff; font-size: 15px; font-weight: 700; border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.btn-atc:hover { background: #009688; transform: translateY(-1px); }
.product-features { background: #F0FDFC; border-radius: 8px; padding: 18px 20px; margin-top: 20px; }
.product-features li { font-size: 13px; color: #444; padding: 5px 0; display: flex; gap: 8px; align-items: center; }

/* ── Reviews ── */
.reviews-section { margin-top: 64px; padding-top: 40px; border-top: 1px solid #B2EBE8; }
.reviews-section h2 { font-size: 1.6rem; font-weight: 800; color: #004C54; margin-bottom: 28px; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card { background: #F0FDFC; border: 1px solid #B2EBE8; border-radius: 8px; padding: 20px; }
.review-card .reviewer { font-weight: 700; font-size: 14px; color: #004C54; margin-bottom: 4px; }
.review-card .review-date { font-size: 11px; color: #999; margin-bottom: 8px; }
.review-card p { font-size: 14px; color: #555; line-height: 1.6; }

/* ── Cart & Checkout ── */
.page-header { background: #004C54; color: #fff; padding: 40px 0; margin-bottom: 40px; }
.page-header h1 { font-size: 1.8rem; font-weight: 800; }
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.cart-table th { background: #F0FDFC; padding: 14px 16px; font-size: 13px; font-weight: 700; text-align: left; color: #004C54; border-bottom: 2px solid #B2EBE8; }
.cart-table td { padding: 16px; border-bottom: 1px solid #B2EBE8; vertical-align: middle; font-size: 14px; }
.cart-item-img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; border: 1px solid #B2EBE8; }
.cart-summary { background: #F0FDFC; border: 1px solid #B2EBE8; border-radius: 10px; padding: 28px; max-width: 380px; margin-left: auto; }
.cart-summary h3 { font-size: 16px; font-weight: 700; color: #004C54; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid #B2EBE8; }
.summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; color: #004C54; padding: 14px 0 18px; }

/* ── Checkout Form ── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-form-section h3 { font-size: 16px; font-weight: 700; color: #004C54; margin: 24px 0 16px; border-bottom: 1px solid #B2EBE8; padding-bottom: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; color: #444; display: block; margin-bottom: 5px; }
.form-group input, .form-group select { width: 100%; padding: 11px 14px; border: 1px solid #B2EBE8; border-radius: 6px; font-size: 14px; background: #fff; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: #00B4A6; }
.payment-tabs { display: flex; gap: 12px; margin-bottom: 24px; }
.pay-tab { flex: 1; padding: 14px; border: 2px solid #B2EBE8; border-radius: 8px; text-align: center; cursor: pointer; font-size: 14px; font-weight: 600; color: #666; transition: all 0.2s; background: #fff; }
.pay-tab.active { border-color: #00B4A6; color: #00B4A6; background: #F0FDFC; }
.pay-tab:hover { border-color: #00B4A6; }
.order-sidebar { background: #F0FDFC; border: 1px solid #B2EBE8; border-radius: 10px; padding: 24px; position: sticky; top: 90px; }
.order-sidebar h3 { font-size: 15px; font-weight: 700; color: #004C54; margin-bottom: 18px; }
.order-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #B2EBE8; }
.order-item-img { width: 48px; height: 48px; object-fit: cover; border-radius: 5px; border: 1px solid #B2EBE8; flex-shrink: 0; }
.order-item-info { flex: 1; }
.order-item-info p { font-size: 12px; color: #333; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.order-item-price { font-size: 14px; font-weight: 700; color: #004C54; flex-shrink: 0; }

/* ── Policy Pages ── */
.policy-content { max-width: 780px; margin: 0 auto; padding: 48px 24px; }
.policy-content h1 { font-size: 2rem; font-weight: 800; color: #004C54; margin-bottom: 8px; }
.policy-content .last-updated { font-size: 13px; color: #999; margin-bottom: 32px; }
.policy-content h2 { font-size: 1.15rem; font-weight: 700; color: #004C54; margin: 28px 0 10px; }
.policy-content p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.policy-content ul { margin: 10px 0 14px 20px; }
.policy-content ul li { font-size: 15px; color: #555; line-height: 1.8; }

/* ── Footer ── */
.site-footer { background: #004C54; color: rgba(255,255,255,0.75); margin-top: 80px; }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand h3 { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 1px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; }
.footer-payments { display: flex; gap: 8px; }
.pay-chip { background: rgba(255,255,255,0.1); border-radius: 4px; padding: 4px 10px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); }

/* ── Toast ── */
.toast { position: fixed; bottom: 24px; right: 24px; background: #222; color: #fff; padding: 14px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; z-index: 9999; transform: translateY(80px); opacity: 0; transition: all 0.3s ease; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Empty Cart ── */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state h2 { font-size: 1.5rem; color: #004C54; margin-bottom: 12px; }
.empty-state p { color: #777; margin-bottom: 28px; }

/* ── Responsive ── */
@media(max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
}
@media(max-width: 768px) {
  .site-nav { display: none; }
  .featured-grid, .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-detail { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 64px 0; }
  .hero h1 { font-size: 1.8rem; }
}
@media(max-width: 480px) {
  .featured-grid, .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
