/* =========================================
   טמבוריה - חנות ציוד וחומרי אומנות
   עיצוב: אדום-שחור-קרם, רטרו-אומנותי
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Heebo:wght@300;400;500;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --red: #C0392B;
  --red-dark: #96281B;
  --red-light: #E74C3C;
  --black: #1A1A1A;
  --charcoal: #2C2C2C;
  --cream: #F5F0E8;
  --cream-dark: #E8E0CC;
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --white: #FDFCF8;
  --gray: #888;
  --gray-light: #CCC;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Heebo', Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--black);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 48px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

.badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge-red { background: var(--red); color: var(--white); }
.badge-gold { background: var(--gold); color: var(--black); }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--black);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.announcement-bar span {
  color: var(--white);
}

/* ---- Header / Navbar ---- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

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

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 8px;
  color: var(--charcoal);
  transition: var(--transition);
}

.nav-icon-btn:hover { color: var(--red); }

.cart-badge {
  position: absolute;
  top: 2px;
  left: 2px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--red); }
.mobile-close {
  position: absolute;
  top: 24px;
  left: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

/* Artistic paint splash overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 80% 50%, rgba(192, 57, 43, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.3) 100%);
}

/* Decorative diagonal stripe */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero h1 em {
  color: var(--red-light);
  font-style: italic;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 480px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-stats {
  position: absolute;
  bottom: 100px;
  left: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 48px;
  justify-content: flex-end;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Categories Section ---- */
.categories {
  padding: 80px 0;
  background: var(--cream);
}

.categories-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Decorative line */
.categories-header .section-title::before {
  content: '—  ';
  color: var(--red);
}
.categories-header .section-title::after {
  content: '  —';
  color: var(--red);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  border-radius: 2px;
}

.category-card:first-child {
  grid-column: span 2;
  height: 340px;
}

.category-img {
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

/* Fallback color gradients for categories when images missing */
.cat-power  { --bg: linear-gradient(135deg, #0a2a0a 0%, #1a5a1a 100%); }
.cat-hand   { --bg: linear-gradient(135deg, #2a1a00 0%, #7a4a00 100%); }
.cat-paint  { --bg: linear-gradient(135deg, #001a3a 0%, #0050a0 100%); }
.cat-electric{ --bg: linear-gradient(135deg, #2a2000 0%, #8a6000 100%); }
.cat-plumbing{ --bg: linear-gradient(135deg, #001a2a 0%, #004a7a 100%); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(192,57,43,0.85) 0%, rgba(192,57,43,0.2) 60%);
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.category-card:first-child .category-name {
  font-size: 2rem;
}

.category-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.category-card:hover .category-link {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Products Section ---- */
.products {
  padding: 80px 0;
  background: var(--white);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.view-all-link {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: var(--transition);
}

.view-all-link:hover {
  color: var(--red-dark);
  border-color: var(--red-dark);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border: 1.5px solid var(--gray-light);
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 1px;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

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

.product-card {
  background: var(--cream);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.product-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
}

.product-img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-actions {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.action-btn {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

.action-btn:hover {
  background: var(--red);
  color: var(--white);
}

.product-info {
  padding: 16px;
}

.product-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.stars { color: var(--gold); font-size: 0.75rem; }
.rating-count { font-size: 0.7rem; color: var(--gray); }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
}

.product-price-old {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-right: 6px;
}

.add-to-cart {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.add-to-cart:hover { background: var(--red-dark); }

/* ---- Banner / Promo ---- */
.promo-banner {
  background: var(--black);
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192,57,43,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.promo-text { position: relative; z-index: 1; }

.promo-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.promo-title span { color: var(--red-light); font-style: italic; }

.promo-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 300;
  max-width: 400px;
}

/* Countdown */
.countdown {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
}

.countdown-unit {
  text-align: center;
  min-width: 70px;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.countdown-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- About / Studio Section ---- */
.about {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  background: var(--charcoal);
  background-image: linear-gradient(135deg, #2a1a0a 0%, #5a3a1a 100%);
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--red);
  z-index: -1;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 40%;
  height: 40%;
  background: var(--gold);
  z-index: -1;
  opacity: 0.3;
}

.about-content {}

.about-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 4px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-text h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.feature-text p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---- Brands Section ---- */
.brands {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.brands h3 {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 40px;
}

.brands-track {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-item {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-light);
  letter-spacing: -0.03em;
  transition: var(--transition);
  cursor: default;
}
.brand-item:hover { color: var(--charcoal); }

/* ---- Testimonials ---- */
.testimonials {
  padding: 80px 0;
  background: var(--black);
}

.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.5); }

.testimonials-header { text-align: center; }

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(192,57,43,0.15);
  border-color: rgba(192,57,43,0.4);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  line-height: 0.5;
  margin-bottom: 16px;
}

.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}
.author-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Gallery ---- */
.gallery {
  padding: 80px 0;
  background: var(--cream);
}

.gallery-header { text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--charcoal);
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-img {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.gallery-item:nth-child(1) .gallery-img { height: 100%; }

.gallery-item:hover .gallery-img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  fill: var(--white);
}

/* Gallery fallback colors */
.gallery-item:nth-child(1) .gallery-img { background: linear-gradient(135deg, #3d1c02 0%, #8B4513 50%, #c0392b 100%); }
.gallery-item:nth-child(2) .gallery-img { background: linear-gradient(135deg, #0d3b52 0%, #1a6b8a 100%); }
.gallery-item:nth-child(3) .gallery-img { background: linear-gradient(135deg, #1a2a0a 0%, #4a6a1a 100%); }
.gallery-item:nth-child(4) .gallery-img { background: linear-gradient(135deg, #3a0a3a 0%, #8a2a6a 100%); }
.gallery-item:nth-child(5) .gallery-img { background: linear-gradient(135deg, #0a1a3a 0%, #1a4a8a 100%); }

/* ---- Services/Info Strip ---- */
.info-strip {
  background: var(--red);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.info-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  opacity: 0.9;
}

.info-item-text h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.info-item-text p {
  font-size: 0.8rem;
  opacity: 0.75;
  font-weight: 300;
}

/* ---- Newsletter ---- */
.newsletter {
  padding: 80px 40px;
  background: var(--cream-dark);
  text-align: center;
}

.newsletter .section-title { margin-bottom: 8px; }

.newsletter-sub {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 36px;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--cream-dark);
  border-left: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: var(--transition);
}

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

.newsletter-form input::placeholder {
  color: var(--gray-light);
}

.newsletter-form .btn-primary {
  clip-path: none;
  white-space: nowrap;
}

/* ---- Footer ---- */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 40px 32px;
}

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

.footer-brand .logo-name {
  color: var(--white);
  font-size: 1.8rem;
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-tagline { color: var(--red-light); }

.footer-about {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  opacity: 0.6;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--red-light);
  padding-right: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--red-light); }

/* ---- Cart Sidebar ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 3001;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }

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

.cart-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--charcoal);
  padding: 4px;
}

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

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}
.cart-empty svg { width: 64px; height: 64px; margin: 0 auto 16px; opacity: 0.3; fill: var(--gray); }
.cart-empty p { font-size: 1rem; }

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

.cart-item-img {
  width: 72px;
  height: 72px;
  background: var(--cream-dark);
  flex-shrink: 0;
  object-fit: cover;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.cart-item-price { color: var(--red); font-weight: 700; font-size: 0.95rem; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--gray-light);
  background: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { border-color: var(--red); color: var(--red); }
.qty-val { font-weight: 700; font-size: 0.9rem; min-width: 20px; text-align: center; }

.cart-remove {
  background: none;
  border: none;
  color: var(--gray-light);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  align-self: flex-start;
  transition: var(--transition);
}
.cart-remove:hover { color: var(--red); }

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

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.cart-subtotal span:last-child { font-weight: 700; font-size: 1.1rem; }

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.cart-checkout-btn:hover { background: var(--red-dark); }

/* ---- Toast Notification ---- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 5000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  border-right: 4px solid var(--red);
  max-width: 300px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-4px); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .category-card:first-child { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .promo-banner { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-left: 2px solid var(--cream-dark); border-top: none; }
  .info-strip { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .categories-grid { grid-template-columns: 1fr; }
  .category-card:first-child { grid-column: span 1; }
  .navbar { padding: 0 20px; }
  .hero-content { padding: 60px 24px; }
  .hero-stats { display: none; }
  .info-strip { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .cart-sidebar { width: 100%; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---- Scroll Animation Classes ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
