/* ============================================
   AMULYTO - Matching SPIRILET Template
   Cream + Navy Theme
   ============================================ */

:root {
  --bg: #fffaf4;
  --text: #0e1b4d;
  --accent: #0e1b4d;
  --white: #ffffff;
  --border: rgba(14, 27, 77, 0.12);
  --border-strong: rgba(14, 27, 77, 0.25);
  --shadow: 0 0.4rem 0.5rem rgba(14, 27, 77, 0.06);
  --font: 'Libre Baskerville', 'Georgia', serif;
  --radius-card: 1.8rem;
  --radius-btn: 40px;
  --radius-input: 26px;
}

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

html {
  scroll-behavior: smooth;
}

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; outline: none; background: transparent; border: none; }

::selection { background: var(--accent); color: var(--white); }

/* ---------- Announcement Banner ---------- */
.announcement-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ---------- Header ---------- */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.search-btn {
  color: var(--text);
  display: flex;
  align-items: center;
}

.search-btn svg { width: 20px; height: 20px; }

.logo {
  text-align: center;
}

.logo-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text);
  display: block;
}

.logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text);
  opacity: 0.7;
  margin-top: -2px;
}

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

.header-icon {
  color: var(--text);
  display: flex;
  align-items: center;
  position: relative;
}

.header-icon svg { width: 20px; height: 20px; }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.cart-badge.visible { opacity: 1; }

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 40px 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav a {
  font-size: 13px;
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav a:hover { opacity: 1; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: 0.2s;
}

/* ---------- Language Switcher ---------- */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 4px 8px;
  border-radius: 6px;
}

.lang-btn:hover { opacity: 1; }

.lang-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(14, 27, 77, 0.12);
  min-width: 140px;
  z-index: 120;
  overflow: hidden;
  display: none;
}

.lang-dropdown.open { display: block; }

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text);
  transition: background 0.15s;
}

.lang-option:hover {
  background: rgba(14, 27, 77, 0.04);
}

/* ---------- Page Content ---------- */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Filter Bar ---------- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.filter-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.filter-label {
  opacity: 0.6;
}

.filter-select {
  font-size: 13px;
  color: var(--text);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  cursor: pointer;
  appearance: auto;
}

.filter-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.sort-select {
  font-size: 13px;
  color: var(--text);
  border: none;
  background: transparent;
  cursor: pointer;
  appearance: auto;
}

.products-count {
  opacity: 0.5;
  font-size: 13px;
}

/* ---------- Products Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 60px;
}

/* ---------- Product Card ---------- */
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
  box-shadow: 0 0.6rem 1.2rem rgba(14, 27, 77, 0.1);
  transform: translateY(-2px);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  background: #f0ebe4;
  padding: 12px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}

/* Card hover: two stacked images */
.product-card-image .card-img-front,
.product-card-image .card-img-back {
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border-radius: 1.2rem;
  transition: opacity 0.45s ease;
}

.product-card-image .card-img-front {
  object-fit: cover;
  opacity: 1;
  z-index: 1;
}

.product-card-image .card-img-back {
  object-fit: contain;
  opacity: 0;
  z-index: 0;
  background: #f0ebe4;
}

.product-card.has-hover-img:hover .card-img-front { opacity: 0; }
.product-card.has-hover-img:hover .card-img-back  { opacity: 1; }

/* Zodiac placeholder */
.zodiac-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 1.2rem;
  position: relative;
}

.zodiac-symbol {
  font-size: 3rem;
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  z-index: 1;
}

.zodiac-tagline {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  z-index: 1;
  font-weight: 700;
  text-align: center;
  padding: 0 10px;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card-body {
  padding: 12px 16px 16px;
}

.product-card-name {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
  cursor: pointer;
}

.product-card-name:hover {
  text-decoration: underline;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.stars {
  display: flex;
  gap: 1px;
}

.stars svg {
  width: 13px;
  height: 13px;
  fill: #fbbf24;
}

.rating-count {
  font-size: 12px;
  opacity: 0.6;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.price-original {
  text-decoration: line-through;
  opacity: 0.45;
}

.price-current {
  font-weight: 400;
}

.btn-add-cart {
  display: block;
  width: 100%;
  padding: 12px 20px;
  text-align: center;
  font-size: 13px;
  font-family: var(--font);
  letter-spacing: 0.5px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  color: var(--white);
  background: var(--accent);
  transition: background 0.2s, color 0.2s;
}

.btn-add-cart:hover {
  background: transparent;
  color: var(--accent);
}

/* ---------- Ads / Reclame Section ---------- */
.ads-section {
  padding: 20px 0 40px;
  background: var(--bg);
}

.ads-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ad-card {
  overflow: hidden;
  transition: transform 0.3s;
}

.ad-card:hover {
  transform: translateY(-3px);
}

.ad-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ---------- Reviews Section ---------- */
.reviews-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
}

.reviews-section h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
}

.reviews-subtitle {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 36px;
}

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

.review-card {
  overflow: hidden;
  background: transparent;
}

.review-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Newsletter Section ---------- */
.newsletter-section {
  text-align: center;
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

.newsletter-section p {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-input);
  font-size: 14px;
  color: var(--text);
  background: transparent;
}

.newsletter-input::placeholder { color: var(--text); opacity: 0.4; }

.newsletter-input:focus { border-color: var(--accent); }

.btn-subscribe {
  padding: 12px 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-input);
  font-size: 13px;
  font-family: var(--font);
  letter-spacing: 0.5px;
  border: 1px solid var(--accent);
  transition: 0.2s;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: transparent;
  color: var(--accent);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-logo-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-logo-sub {
  font-size: 9px;
  letter-spacing: 1.5px;
  opacity: 0.6;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer-col ul a {
  font-size: 13px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-col ul a:hover { opacity: 1; }

.footer-col p {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 1; }

.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  opacity: 0.5;
}

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 27, 77, 0.3);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
  font-size: 18px;
  font-weight: 400;
}

.cart-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.5;
}

.cart-close:hover { opacity: 1; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  opacity: 0.4;
  font-size: 14px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-thumb .zodiac-symbol { font-size: 1.6rem; }

.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; opacity: 0.7; margin-bottom: 8px; }

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  transition: 0.2s;
}

.qty-btn:hover { border-color: var(--accent); }

.cart-item-qty { font-size: 13px; min-width: 20px; text-align: center; }

.cart-item-remove {
  font-size: 11px;
  opacity: 0.4;
  margin-left: auto;
  transition: 0.2s;
}

.cart-item-remove:hover { opacity: 1; }

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
}

.cart-total-value { font-weight: 700; }

.cart-note {
  font-size: 11px;
  opacity: 0.5;
  margin-bottom: 14px;
}

.btn-checkout {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  transition: 0.2s;
}

.btn-checkout:hover {
  background: transparent;
  color: var(--accent);
}

/* ---------- Product Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 27, 77, 0.4);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: 0.3s;
  position: relative;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--text);
  opacity: 0.4;
  transition: 0.2s;
}

.modal-close:hover { opacity: 1; }

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}

.modal-image .zodiac-placeholder {
  border-radius: 1.2rem;
}

.modal-image .zodiac-symbol { font-size: 5rem; }

.modal-info {
  padding: 36px 28px;
}

.modal-zodiac {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 6px;
}

.modal-name {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}

.modal-dates {
  font-size: 13px;
  opacity: 0.5;
  margin-bottom: 14px;
}

.modal-desc {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 18px;
}

.modal-meta {
  margin-bottom: 18px;
}

.modal-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.modal-meta-label { opacity: 0.5; }

.modal-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 16px;
}

/* ---------- Modal Thumbnail Gallery ---------- */
.modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 0 20px 16px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.modal-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}

.modal-thumb:hover { opacity: 0.9; }

.modal-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Lightbox / Zoom ---------- */
#lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out;
  padding: 24px;
}

#lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

#lightbox-img {
  max-width: min(90vw, 800px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.3s, src 0s;
  user-select: none;
  -webkit-user-drag: none;
}

#lightbox-overlay.open #lightbox-img {
  transform: scale(1);
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

#lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Navigation arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.92);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

#lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-family: var(--font);
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
}

/* Zoom cursor on modal image */
.modal-image img {
  cursor: zoom-in;
}

@media (max-width: 768px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  #lightbox-img { max-width: 96vw; max-height: 80vh; border-radius: 8px; }
}

/* ---------- Toast ---------- */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-btn);
  font-size: 13px;
  transform: translateX(120%);
  transition: 0.3s;
}

.toast.show { transform: translateX(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-top { padding: 12px 16px; }
  .nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 150;
    padding: 20px;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 16px; }
  .menu-toggle { display: flex; }
  .page-content { padding: 0 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .filter-bar { flex-wrap: wrap; gap: 10px; }
  .ads-container { padding: 0 16px; }
  .ads-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .reviews-section { padding: 40px 16px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .newsletter-section { padding: 40px 16px; }
  .newsletter-form { flex-direction: column; }
  .footer { padding: 32px 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-image { aspect-ratio: 4/3; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .logo-name { font-size: 20px; letter-spacing: 2px; }
  .product-card-body { padding: 10px 12px 14px; }
  .product-card-name { font-size: 13px; }
  .btn-add-cart { padding: 10px 14px; font-size: 12px; }
  .lang-btn span { display: none; }
}
