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

:root {
  --primary: #e85d04;
  --primary-dark: #c44d03;
  --primary-light: #f8961e;
  --secondary: #264653;
  --accent: #2a9d8f;
  --bg: #fdf8f4;
  --card-bg: #ffffff;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --border: #ede4db;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --radius: 12px;
  --radius-sm: 8px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.accent { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-sm { padding: 6px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,244,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover { color: var(--primary); }

.cart-link {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.hero-section {
  margin-top: 90px;
  padding: 20px 0;
  background: #f7efe8;
}

.hero-layout {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 16px;
  align-items: stretch;
}

.hero-categories {
  background: white;
  border-radius: 8px;
  padding: 12px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.hero-cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.hero-cat-item:hover {
  background: #fff5f0;
  color: var(--primary);
  border-left-color: var(--primary);
}

.hero-cat-item i {
  width: 18px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

.hero-cat-item:hover i {
  color: var(--primary);
}

.hero-banner-area {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #e85d04 0%, #f48c06 50%, #e85d04 100%);
  min-height: 380px;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.hero-slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px;
  height: 100%;
  gap: 16px;
}

.hero-slide-text {
  flex: 0 0 40%;
  color: white;
}

.hero-slide-text h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-accent {
  color: white;
}

.hero-slide-text p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-shop {
  background: white;
  color: #e85d04;
}

.btn-shop:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-contact {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-contact:hover {
  background: rgba(255,255,255,0.15);
}

.hero-slide-images {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-slide-images img {
  height: 220px;
  width: auto;
  max-width: 30%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
  transition: transform 0.3s;
}

.hero-slide-images img:hover {
  transform: scale(1.08);
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  background: white;
  width: 28px;
  border-radius: 5px;
}

.hero-sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-card {
  background: white;
  border-radius: 8px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.2s;
}

.sidebar-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.sidebar-card i {
  font-size: 22px;
  color: var(--primary);
}

.sidebar-card strong {
  display: block;
  font-size: 13px;
  color: #333;
}

.sidebar-card small {
  font-size: 11px;
  color: #888;
}

.promise-section {
  padding: 24px 0;
  background: #fffcf9;
  border-bottom: 1px solid var(--border);
}

.promise-text {
  text-align: center;
  font-size: 16px;
  color: #444;
}

.promise-accent {
  color: var(--primary);
  font-weight: 600;
}

.contact-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f7efe8 0%, #fdf8f4 50%, #f7efe8 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #f0ebe6;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(232,93,4,0.1);
}

.contact-card-highlight {
  background: linear-gradient(135deg, #e85d04, #f48c06);
  color: white;
  border: none;
}

.contact-card-highlight h4,
.contact-card-highlight p {
  color: white;
}

.contact-card-highlight .contact-card-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: rgba(232,93,4,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #e85d04;
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.contact-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 24px;
  background: white;
  color: #e85d04;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-wa-btn:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

.categories-section {
  padding: 60px 0;
}

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

.category-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.category-card:hover,
.category-card.active {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card .cat-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.category-card h3 {
  font-size: 16px;
  font-weight: 600;
}

.menu-section {
  padding: 60px 0 80px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  background: white;
  border-radius: 50px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

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

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.package-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-img {
  width: 100%;
  height: 220px;
  background: #faf5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 48px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s;
}

.package-card:hover .package-img img {
  transform: scale(1.05);
}

.package-info {
  padding: 20px;
}

.package-category {
  display: inline-block;
  background: rgba(232, 93, 4, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.package-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.package-info p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.add-cart-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-cart-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: white;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.cart-sidebar.active { right: 0; }

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

.cart-header h3 {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.close-btn:hover { background: var(--bg); }

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

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.cart-empty i { font-size: 48px; margin-bottom: 16px; display: block; }

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

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-info .item-price { color: var(--primary); font-weight: 600; font-size: 15px; }

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

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}

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

.qty-value { font-weight: 600; min-width: 20px; text-align: center; }

.remove-item {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  align-self: flex-start;
}

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

.cart-summary { margin-bottom: 16px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-light);
}

.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  border-top: 2px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal {
  background: white;
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-sm { max-width: 400px; }

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

.modal-header h3 { font-size: 20px; }

.modal-body { padding: 24px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.checkout-summary {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}

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

.success-icon {
  font-size: 64px;
  color: var(--accent);
  margin-bottom: 16px;
}

.success-icon i { display: block; }

.info-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  border-radius: 24px;
  padding: 10px 16px;
  z-index: 900;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,93,4,0.35);
  transition: all 0.3s;
  animation: fabPulse 2.5s infinite;
}

.info-fab i {
  font-size: 14px;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-fab-label {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.info-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(232,93,4,0.45);
  background: var(--primary-dark);
}

@keyframes fabPulse {
  0% { box-shadow: 0 4px 20px rgba(232,93,4,0.35); }
  50% { box-shadow: 0 4px 30px rgba(232,93,4,0.55); }
  100% { box-shadow: 0 4px 20px rgba(232,93,4,0.35); }
}

.footer {
  background: #1b2e38;
  color: rgba(255,255,255,0.8);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer h4 { color: white; margin-bottom: 16px; font-size: 18px; }

.footer a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer a:hover { color: var(--primary-light); }

.footer-social-section {
  text-align: center;
  padding: 30px 0 10px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 0;
}

.social-links a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white !important;
  font-size: 32px;
  transition: all 0.3s;
  margin-bottom: 0 !important;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
}

.social-links a[title="Facebook"]:hover { background: #1877f2; }
.social-links a[title="Instagram"]:hover { background: #e4405f; }
.social-links a[title="Twitter"]:hover { background: #000; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.empty-state i { font-size: 64px; margin-bottom: 16px; display: block; opacity: 0.5; }

.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--secondary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  z-index: 3000;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.toast.show { transform: translateY(0); opacity: 1; }

@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-categories {
    flex-direction: row;
    overflow-x: auto;
    padding: 8px;
    gap: 0;
  }
  .hero-cat-item {
    white-space: nowrap;
    padding: 8px 14px;
    border-left: none;
    border-bottom: 2px solid transparent;
    font-size: 13px;
  }
  .hero-cat-item:hover {
    border-left-color: transparent;
    border-bottom-color: var(--primary);
  }
  .hero-sidebar-right {
    flex-direction: row;
  }
  .sidebar-card {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }

  .hero-section { padding: 12px 0; }
  .hero-slide-text h1 { font-size: 24px; }
  .hero-slide-images img { height: 120px; }
  .hero-slide-content { flex-direction: column; padding: 24px 20px; }
  .hero-slide-text { text-align: center; max-width: 100%; }
  .agro-card { padding: 16px 14px; }
  .agro-card i { font-size: 28px; }

  .hero-sidebar-right {
    flex-direction: column;
  }
  .sidebar-card strong { font-size: 12px; }

  .section-title { font-size: 24px; }

  .contact-grid { grid-template-columns: 1fr; max-width: 400px; }

  .packages-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

  .cart-sidebar { width: 100%; }

  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

@media (max-width: 480px) {
  .packages-grid { grid-template-columns: 1fr; }
  .hero-slide-text h1 { font-size: 20px; }
  .hero-slide-images img { height: 90px; }
  .hero-categories { display: none; }
  .sidebar-card small { display: none; }
}

/* ===== WAREHOUSE GALLERY ===== */
.warehouse-gallery-section {
  padding: 60px 0;
  background: #fff;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 15px;
  max-width: 600px;
  margin: -10px auto 32px;
  line-height: 1.6;
}

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

.warehouse-gallery-wide {
  grid-column: span 2;
}

.warehouse-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  background: #f0ebe4;
  cursor: pointer;
}

.warehouse-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.warehouse-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  padding: 24px 14px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.warehouse-gallery-overlay span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .warehouse-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .warehouse-gallery-wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .warehouse-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
