/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #cf1b2b;          /* rubi i thellë, jo neon */
  --red-dark: #9c1420;
  --red-light: #ec3a47;
  --ember: #ff7a1a;        /* theks ambër për gradientë */
  --gold: #f2b705;         /* theks ari, përdoret pak */
  --black: #0b0c10;        /* qymyr i ftohtë */
  --dark: #14161c;
  --dark2: #1d2027;
  --gray: #f6f7f9;
  --gray2: #e5e8ed;
  --text: #14161c;
  --text-light: #5f6672;
  --white: #ffffff;
  --font: 'Poppins', sans-serif;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: #fff; font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== AGE MODAL ===== */
.age-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.age-modal.hidden { display: none; }
.age-modal-box {
  background: var(--dark);
  border: 1px solid var(--red);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px; width: 90%;
  text-align: center;
  color: white;
}
.age-modal-logo {
  font-size: 24px; font-weight: 900;
  letter-spacing: 2px; color: var(--red);
  margin-bottom: 24px;
}
.age-modal-box h2 { font-size: 26px; margin-bottom: 16px; }
.age-modal-box p { color: #aaa; margin-bottom: 12px; }
.age-modal-box p strong { color: white; }
.age-sub { font-size: 13px; color: #888 !important; }
.age-sub a { color: var(--red); }
.age-buttons { display: flex; gap: 12px; margin-top: 28px; }
.btn-confirm {
  flex: 1; padding: 14px;
  background: var(--red); color: white;
  border: none; border-radius: var(--radius);
  font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background var(--transition);
  letter-spacing: 0.5px;
}
.btn-confirm:hover { background: var(--red-dark); }
.btn-deny {
  flex: 1; padding: 14px;
  background: transparent; color: #666;
  border: 1px solid #444; border-radius: var(--radius);
  font-family: var(--font); font-size: 14px;
  cursor: pointer; transition: all var(--transition);
}
.btn-deny:hover { border-color: #666; color: #999; }

/* ===== TOP BAR ===== */
.inventory-status { padding: 12px 20px; background: #fff3cd; color: #513c06; text-align: center; }
.inventory-status[hidden] { display: none; }
.inventory-status button { padding: 4px 10px; cursor: pointer; text-decoration: underline; }
.top-bar {
  background: var(--black);
  color: #aaa; font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #1f1f1f;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 16px; align-items: center; }
.top-bar-left .divider { color: #444; }
.top-bar-right { display: flex; gap: 14px; align-items: center; }
.top-bar-right a { color: #777; transition: color var(--transition); display: flex; }
.top-bar-right a:hover { color: var(--red); }
.whatsapp-contact { display: inline-flex; align-items: center; gap: 5px; color: inherit; }
.whatsapp-contact svg { flex-shrink: 0; color: #25d366; }
.whatsapp-contact:focus-visible { outline: 2px solid #25d366; outline-offset: 4px; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray2);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: 24px;
}

.logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 900; font-size: 22px; letter-spacing: 1px;
  color: var(--black);
  flex-shrink: 0;
}
.logo-fire { font-size: 26px; }
.logo-accent { color: var(--red); }
.site-logo { display: block; width: 144px; height: 44px; object-fit: contain; object-position: left center; }

.main-nav ul { display: flex; gap: 4px; }
.main-nav ul li a {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: all var(--transition); white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--red); background: rgba(207,27,43,0.06);
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.search-btn, .cart-btn {
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray2); background: none;
  cursor: pointer; color: var(--text); position: relative;
  transition: all var(--transition);
}
.search-btn:hover, .cart-btn:hover {
  border-color: var(--red); color: var(--red);
}
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--red); color: white;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}

.search-bar {
  display: none; padding: 12px 0;
  border-top: 1px solid var(--gray2);
}
.search-bar.open { display: flex; gap: 8px; }
.search-bar input {
  flex: 1; padding: 10px 16px; border-radius: var(--radius);
  border: 1px solid var(--gray2); font-family: var(--font);
  font-size: 14px; outline: none;
}
.search-bar input:focus { border-color: var(--red); }
.search-bar button {
  padding: 10px 20px; background: var(--red); color: white;
  border: none; border-radius: var(--radius);
  font-family: var(--font); font-weight: 600; cursor: pointer;
}

/* ===== HERO ===== */
.hero { overflow: hidden; }
.hero-slide {
  min-height: 520px;
  display: flex; align-items: center;
  position: relative; padding: 60px 20px;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%;
  z-index: 2; position: relative; padding-right: 430px;
}
.hero-tag {
  display: inline-block;
  background: rgba(207,27,43,0.15);
  border: 1px solid rgba(207,27,43,0.4);
  color: var(--red-light); padding: 6px 16px;
  border-radius: 20px; font-size: 13px; font-weight: 500;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900; color: white; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1px;
}
.text-red { color: var(--red); }
.hero-content p {
  color: rgba(255,255,255,0.7); font-size: 17px;
  margin-bottom: 32px; font-weight: 300;
}
.hero-content .hero-shipping-offer { color: #fff; font-size: 14px; font-weight: 700; margin: -14px 0 26px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  width: min(610px, 47vw); height: 350px;
}
.hero-atmosphere-card {
  width: 100%; aspect-ratio: 4 / 2.3; overflow: hidden;
  border-radius: 18px; border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 24px 60px rgba(0,0,0,.42), 0 0 0 8px rgba(207,27,43,.10);
  transform: rotate(2deg); position: absolute; right: 0; top: 12px; background: #111;
}
.hero-atmosphere-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.1), rgba(0,0,0,.52)); }
.hero-atmosphere-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-atmosphere-caption { position: absolute; z-index: 1; right: 16px; bottom: 14px; color: white; font-size: 11px; font-weight: 800; letter-spacing: 1.4px; }
.hero-product-card {
  position: absolute; left: 0; bottom: -8px; width: min(178px, 15vw); aspect-ratio: 735 / 950;
  overflow: hidden; border-radius: 18px; background: #fff; border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 24px 55px rgba(0,0,0,.55), 0 0 0 7px rgba(207,27,43,.18); transform: rotate(-4deg);
}
.hero-product-card img { width: 100%; height: 100%; display: block; object-fit: contain; }
.hero-trust { margin-top: 22px; color: rgba(255,255,255,.75); font-size: 13px; font-weight: 500; }
.hero-emoji { font-size: 80px; line-height: 1.3; filter: drop-shadow(0 0 30px rgba(207,27,43,0.5)); }
.hero-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(207,27,43,0.2) 0%, transparent 70%);
  pointer-events: none;
}


/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--font); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--red); color: white; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-white { background: white; color: var(--dark); border-color: white; }
.btn-white:hover { background: var(--gray); }

/* ===== WELCOME BANNER ===== */
.welcome-banner {
  background: var(--red);
  color: white; text-align: center;
  padding: 12px 20px; font-size: 14px;
}
.welcome-banner strong { font-weight: 700; }

/* ===== FEATURES BAR ===== */
.features-bar { padding: 32px 0; background: var(--gray); border-bottom: 1px solid var(--gray2); }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature-item {
  display: flex; align-items: center; gap: 14px;
}
.feature-icon { font-size: 28px; flex-shrink: 0; }
.feature-item strong { display: block; font-size: 14px; font-weight: 600; }
.feature-item span { font-size: 12px; color: var(--text-light); }

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-header h2 { font-size: 26px; font-weight: 700; }
.section-header p { color: var(--text-light); font-size: 15px; }
.see-all { color: var(--red); font-weight: 600; font-size: 14px; }
.see-all:hover { text-decoration: underline; }

/* ===== CATEGORIES GRID ===== */
.categories-section { padding: 60px 0; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative; border-radius: 12px;
  overflow: hidden; aspect-ratio: 3/2;
  display: flex; align-items: flex-end;
  cursor: pointer; transition: transform var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.cat-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform var(--transition);
}
.category-card:hover .cat-photo { transform: scale(1.04); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 1;
}
.cat-emoji {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-size: 52px; z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.cat-content {
  position: relative; z-index: 3;
  padding: 20px; color: white; width: 100%;
}
.cat-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.cat-content span { font-size: 12px; color: rgba(255,255,255,0.75); }

.category-flakadan { background: linear-gradient(135deg, #3d0000, #800000); }
.category-tymuese  { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.category-stroboskop { background: linear-gradient(135deg, #0d0d0d, #2d2d00); }
.category-maska    { background: linear-gradient(135deg, #1a001a, #3d0026); }

/* ===== PRODUCT OF THE WEEK ===== */
.product-of-week {
  padding: 60px 0; background: var(--black);
}
.potw-inner { position: relative; }
.potw-badge {
  display: inline-block;
  background: var(--red); color: white;
  padding: 6px 20px; border-radius: 20px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 28px;
}
.potw-content {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; align-items: center;
}
.potw-image {
  position: relative; text-align: center;
}
.product-placeholder {
  background: var(--dark2);
  border: 1px solid #333;
  border-radius: 16px;
  aspect-ratio: 1; display: flex;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 12px;
  color: white;
}
.product-placeholder span { font-size: 80px; }
.product-placeholder p { font-size: 16px; font-weight: 600; color: #aaa; }
.potw-discount-badge {
  position: absolute; top: -12px; right: -12px;
  background: var(--red); color: white;
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
}
.potw-info { color: white; }
.potw-category {
  color: var(--red); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  display: block; margin-bottom: 10px;
}
.potw-info h2 { font-size: 36px; font-weight: 900; margin-bottom: 16px; }
.potw-desc { color: #aaa; font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.potw-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.potw-features li { color: #ccc; font-size: 14px; }
.potw-price { margin-bottom: 24px; }
.price-current { font-size: 36px; font-weight: 900; color: white; }
.price-old { font-size: 20px; color: #666; text-decoration: line-through; margin-left: 10px; }
.potw-actions { display: flex; gap: 14px; }
.potw-actions .btn-outline { border-color: rgba(255,255,255,0.3); }

/* ===== NEW PRODUCTS ===== */
.new-products { padding: 60px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  border: 1px solid var(--gray2);
  border-radius: 12px; overflow: hidden;
  transition: all var(--transition);
  background: white;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: transparent;
}
.product-img {
  position: relative;
  background: var(--gray);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-placeholder-sm {
  font-size: 64px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
  transition: transform var(--transition);
}
.product-card:hover .product-placeholder-sm { transform: scale(1.1); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: white;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px; letter-spacing: 0.5px;
}
.product-badge.new { background: #00a854; }
.product-actions-hover {
  position: absolute; bottom: 12px; right: 12px;
  opacity: 0; transform: translateY(6px);
  transition: all var(--transition);
}
.product-card:hover .product-actions-hover { opacity: 1; transform: translateY(0); }
.product-actions-hover button {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--red); border: none; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
}
.product-actions-hover a {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--red); color: white; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.product-info { padding: 16px; }
.product-category {
  font-size: 11px; color: var(--red);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.product-info h4 {
  font-size: 15px; font-weight: 600;
  margin: 6px 0 8px; color: var(--text);
  transition: color var(--transition);
}
.product-info h4 a:hover { color: var(--red); }
.product-price { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.btn-add-cart {
  width: 100%; padding: 10px;
  background: var(--dark); color: white;
  border: none; border-radius: var(--radius);
  font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
}
a.btn-add-cart { display: flex; align-items: center; justify-content: center; text-decoration: none; }
.btn-add-cart:hover { background: var(--red); }

/* ===== MOMENTS GALLERY ===== */
.moments-gallery { padding: 60px 0; background: #111; }
.gallery-banner { position: relative; min-height: 260px; overflow: hidden; display: flex; align-items: center; margin-bottom: 26px; }
.gallery-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-banner-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.32)); }
.gallery-banner-content { position: relative; color: white; padding-top: 34px; padding-bottom: 34px; }
.gallery-banner-content span { color: #ff685f; font-size: 12px; font-weight: 800; letter-spacing: 1.6px; }
.gallery-banner-content h2 { font-size: clamp(30px, 4vw, 46px); margin: 8px 0; }
.gallery-banner-content p { color: rgba(255,255,255,.82); max-width: 460px; }
.moments-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
.moment-card { position: relative; overflow: hidden; margin: 0; border-radius: 10px; background: #222; }
.moment-card-wide { grid-column: span 2; }
.moment-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.moment-card:hover img { transform: scale(1.05); }
.moment-card figcaption { position: absolute; inset: auto 0 0; padding: 36px 15px 13px; color: white; font-size: 13px; font-weight: 700; background: linear-gradient(transparent, rgba(0,0,0,.85)); }
.moments-more { color: #aaa; text-align: center; font-size: 14px; margin: 22px 0 0; }

/* ===== INSTAGRAM BANNER ===== */
.instagram-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 100%);
}
.insta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.insta-text { color: white; }
.insta-tag {
  display: inline-block; color: var(--red);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 10px;
}
.insta-text h2 { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.insta-text p { color: #aaa; margin-bottom: 24px; }
.insta-icons { display: flex; gap: 16px; font-size: 48px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: #aaa; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid #1f1f1f;
}
.footer-logo {
  font-size: 20px; font-weight: 900;
  color: white; margin-bottom: 16px;
  letter-spacing: 1px;
}
.footer-logo span { color: var(--red); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; background: #1f1f1f;
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; transition: background var(--transition);
}
.footer-social a:hover { background: var(--red); }
.footer-col h4 {
  color: white; font-size: 15px; font-weight: 700;
  margin-bottom: 20px; letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }
.contact-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.footer-payments {
  display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap;
}
.footer-payments span {
  background: #1f1f1f; color: #aaa;
  padding: 5px 12px; border-radius: 4px;
  font-size: 12px; font-weight: 600;
}
.footer-bottom {
  padding: 20px 0; text-align: center;
  border-top: 1px solid #1a1a1a;
  display: flex; flex-direction: column; gap: 6px;
}
.footer-bottom p { font-size: 13px; }
.footer-warning { color: #666; font-size: 12px; }

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--dark); color: white;
  padding: 14px 24px; border-radius: var(--radius);
  border-left: 3px solid var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  font-size: 14px; font-weight: 500;
  transform: translateY(100px); opacity: 0;
  transition: all 0.3s ease;
  z-index: 9000;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }

/* ===== EFEKTE & GRADIENTË PROFESIONALË ===== */

/* butoni primar me gradient + shkëlqim */
.btn-primary {
  background: linear-gradient(135deg, #ec3a47 0%, #cf1b2b 50%, #9c1420 100%);
  box-shadow: 0 4px 14px rgba(207,27,43,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ec3a47 0%, #cf1b2b 60%, #9c1420 100%);
  box-shadow: 0 8px 24px rgba(207,27,43,0.5);
  transform: translateY(-2px);
}

/* hero: theksim ngjyre me gradient teksti + glow pas */
.hero-slide::after {
  content: ""; position: absolute; right: -10%; top: 50%;
  width: 600px; height: 600px; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(207,27,43,0.28) 0%, transparent 60%);
  pointer-events: none;
}
.text-red {
  background: linear-gradient(90deg, #ec3a47, #ff7a1a);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tag { backdrop-filter: blur(4px); }

/* welcome banner me gradient + shkëlqim lëvizës */
.welcome-banner {
  background: linear-gradient(90deg, #9c1420, #ec3a47, #9c1420);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% 0; } }

/* feature icon në rreth me gradient */
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(207,27,43,0.12), rgba(255,122,0,0.1));
  border: 1px solid rgba(207,27,43,0.15);
  font-size: 24px;
}

/* titujt e seksioneve me vijë gradient poshtë */
.section-header h2, .section-center h2 { position: relative; display: inline-block; }
.section-center h2::after {
  content: ""; position: absolute; left: 50%; bottom: -10px;
  transform: translateX(-50%); width: 56px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, #ec3a47, #ff7a1a);
}

/* kartat e kategorive: shkëlqim në hover */
.category-card { box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.category-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 50% 120%, rgba(207,27,43,0.45), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.category-card:hover::after { opacity: 1; }
.category-card:hover { box-shadow: 0 16px 40px rgba(207,27,43,0.3); }
.cat-emoji { transition: transform .3s; }
.category-card:hover .cat-emoji { transform: translate(-50%, -65%) scale(1.12); }

/* produkti i javës: sfond me gradient + glow rrethor */
.product-of-week { position: relative; overflow: hidden; }
.product-of-week::before {
  content: ""; position: absolute; left: -5%; top: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(207,27,43,0.22), transparent 60%);
  pointer-events: none;
}
.potw-badge {
  background: linear-gradient(135deg, #ec3a47, #ff7a1a);
  box-shadow: 0 4px 16px rgba(255,80,0,0.35);
}
.potw-image .product-placeholder {
  background: linear-gradient(160deg, #1f1f1f, #2a0a0a);
  box-shadow: 0 20px 60px rgba(207,27,43,0.15);
}

/* kartat e produkteve: kornizë me shkëlqim në hover */
.product-card { position: relative; }
.product-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  padding: 1px; background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.product-card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, #ec3a47, #ff7a1a);
}
.product-img { background: linear-gradient(160deg, #f7f7f7, #ececec); }
.btn-add-cart { background: linear-gradient(135deg, #1f1f1f, #2d2d2d); }
.btn-add-cart:hover { background: linear-gradient(135deg, #cf1b2b, #9c1420); }

/* instagram banner me gradient më i pasur */
.instagram-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 50%, #3d0008 100%);
  position: relative; overflow: hidden;
}
.instagram-banner::after {
  content: ""; position: absolute; right: -8%; bottom: -40%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,122,0,0.18), transparent 60%);
}
.insta-icons span { transition: transform .3s; cursor: default; }
.insta-icons span:hover { transform: translateY(-6px) scale(1.15); }

/* footer: vijë gradient sipër */
.footer { position: relative; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #ec3a47, #ff7a1a, #ec3a47);
}
.footer-logo span { color: var(--red); }

/* shportë: numri me gradient */
.cart-count { background: linear-gradient(135deg, #ec3a47, #9c1420); }

/* ===== BUTONI PLUSKUES I WHATSAPP ===== */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 8500;
  display: flex; align-items: center; gap: 0;
  height: 60px; width: 60px; padding: 0 15px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border-radius: 50px;
  box-shadow: 0 6px 22px rgba(37,211,102,0.45);
  overflow: hidden; white-space: nowrap;
  transition: width .35s ease, box-shadow .25s;
  animation: waPulse 2.6s infinite;
}
.wa-fab svg { flex-shrink: 0; }
.wa-fab-label { font-weight: 700; font-size: 15px; margin-left: 10px; opacity: 0; transition: opacity .2s; }
.wa-fab:hover {
  width: 178px; box-shadow: 0 10px 30px rgba(37,211,102,0.6);
  animation: none;
}
.wa-fab:hover .wa-fab-label { opacity: 1; }
@keyframes waPulse {
  0% { box-shadow: 0 6px 22px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 6px 22px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 22px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 560px) {
  .wa-fab { right: 16px; bottom: 16px; height: 54px; width: 54px; }
}

/* ===== STOCK / PHOTO / EXTRAS (shtesa) ===== */
.product-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-img .product-photo { position: absolute; inset: 0; }
.product-placeholder .product-photo { border-radius: 16px; }

.stock-tag { font-size: 11px; font-weight: 600; display: inline-block; margin-bottom: 8px; }
.stock-tag.in  { color: #00a854; }
.stock-tag.low { color: #f59e0b; }
.stock-tag.out { color: #9c1420; }
.potw-stock { margin-bottom: 16px; }
.potw-stock .stock-tag { font-size: 13px; }

.product-card.is-out { opacity: 0.75; }
.product-card.is-out .product-img { filter: grayscale(0.6); }
.out-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.55);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 15px; letter-spacing: 2px;
}
.btn-add-cart:disabled { background: #ccc; cursor: not-allowed; }

.section-center { justify-content: center; text-align: center; flex-direction: column; gap: 6px; }

/* hero subtle pattern */
.hero-slide {
  background:
    radial-gradient(circle at 78% 32%, rgba(209, 27, 43, .36), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(255, 122, 26, .20), transparent 31%),
    radial-gradient(circle at 26% 108%, rgba(100, 13, 24, .58), transparent 42%),
    linear-gradient(118deg, #07090e 0%, #11080d 43%, #26050d 76%, #100306 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(110deg, rgba(255,255,255,.035) 1px, transparent 1px), radial-gradient(rgba(255,97,97,.17) 1px, transparent 1px);
  background-size: 36px 36px, 26px 26px; opacity: .52; pointer-events: none;
}

/* card entrance */
.product-card, .category-card { animation: fadeUp 0.4s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .potw-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: block; position: absolute;
    top: 100%; left: 0; right: 0;
    background: white; padding: 16px;
    box-shadow: var(--shadow-hover);
    border-top: 1px solid var(--gray2);
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .hamburger { display: flex; }
  .top-bar-left span:not(:first-child) { display: none; }
  .top-bar-left .divider { display: none; }
  .hero-image { display: none; }
  .hero-content { padding-right: 0; }
  .hero-content h1 { font-size: 36px; }
  .moments-gallery { padding: 42px 0; }
  .gallery-banner { min-height: 220px; }
  .moments-grid { grid-auto-rows: 185px; gap: 10px; }
  .insta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .potw-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; }
  .age-buttons { flex-direction: column; }
}
