* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(94, 198, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #061121 0%, #0b1f3d 45%, #081423 100%);
  color: #ffffff;
}

a {
  text-decoration: none;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 17, 33, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(94, 198, 255, 0.18);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
}

.brand-block {
  text-align: center;
  margin-bottom: 14px;
}

.brand-title {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.brand-subtitle {
  margin: 8px 0 0;
  color: #c7eaff;
  font-size: 0.95rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.top-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-nav a {
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(11, 95, 165, 0.82), rgba(30, 164, 255, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.2s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.top-nav a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30, 164, 255, 0.2);
}

/* Hero */

.hero-banner {
  max-width: 1200px;
  margin: 26px auto 0;
  padding: 0 20px;
}

.hero-card {
  border-radius: 28px;
  padding: 44px 28px;
  background-image:
    linear-gradient(rgba(5,14,26,0.60), rgba(5,14,26,0.60)),
    url('/assets/images/delstate-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card * {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.85);
}

.hero-title {
  margin: 0;
  max-width: 780px;
  font-size: 2.4rem;
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.9);
}

.hero-text {
  margin: 16px 0 0;
  max-width: 720px;
  color: #f3f8ff;
  font-size: 1rem;
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: bold;
  transition: 0.2s ease;
}

.primary-btn {
  background: linear-gradient(90deg, #d81919, #ff4343);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(216, 25, 25, 0.30);
}

.secondary-btn {
  background: rgba(11, 95, 165, 0.88);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 22px rgba(0,0,0,0.28);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.pickup-badge {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(216, 25, 25, 0.92);
  color: #ffffff;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(216, 25, 25, 0.18);
}

/* Section head */

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

.section-head h3 {
  margin: 0;
  font-size: 1.7rem;
  color: #ffffff;
}

.section-head p {
  margin: 8px 0 0;
  color: #c7d9ea;
}

/* Categories */

.category-section {
  margin-top: 34px;
}

.category-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.category-tile {
  background: linear-gradient(180deg, rgba(11, 31, 61, 0.95), rgba(6, 17, 33, 0.98));
  border: 1px solid rgba(94, 198, 255, 0.14);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1ea4ff, #0b5fa5);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.category-tile h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.category-tile p {
  margin: 0;
  color: #c7d9ea;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Catalog */

.catalog-section {
  margin-top: 38px;
}

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 31, 61, 0.96), rgba(6, 17, 33, 0.98));
  border: 1px solid rgba(94, 198, 255, 0.14);
  box-shadow: 0 16px 32px rgba(0,0,0,0.28);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.38);
}

.product-topbar {
  height: 6px;
  background: linear-gradient(90deg, #d81919, #1ea4ff, #5ec6ff);
}

.product-image-wrap {
  padding: 22px 22px 0;
}

.product-placeholder {
  height: 160px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(94,198,255,0.28), transparent 30%),
    linear-gradient(135deg, #0b5fa5, #12325b);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.product-content {
  padding: 18px 22px 22px;
}

.product-tag {
  margin: 0 0 10px;
  color: #5ec6ff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: bold;
}

.product-name {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  color: #ffffff;
  min-height: 64px;
}

.product-price {
  margin: 16px 0 8px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #5ec6ff;
}

.product-note {
  margin: 0 0 18px;
  color: #cfd8e3;
  font-size: 0.92rem;
}

.buy-btn {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(90deg, #d81919, #ff4343);
  box-shadow: 0 12px 25px rgba(216, 25, 25, 0.22);
  transition: 0.2s ease;
}

.buy-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* Trust */

.trust-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.trust-box {
  background: linear-gradient(180deg, rgba(11,31,61,0.94), rgba(6,17,33,0.98));
  border: 1px solid rgba(94,198,255,0.14);
  border-radius: 20px;
  padding: 22px;
}

.trust-box h4 {
  margin: 0 0 10px;
}

.trust-box p {
  margin: 0;
  color: #c7d9ea;
  line-height: 1.5;
}

/* Footer */

.site-footer {
  text-align: center;
  padding: 26px 20px 36px;
  color: #b9cde0;
  border-top: 1px solid rgba(94,198,255,0.12);
  background: rgba(6,17,33,0.7);
}

.site-footer p {
  margin: 6px 0;
}

/* Generic */

.loading-card {
  padding: 26px;
  border-radius: 20px;
  text-align: center;
  background: rgba(11,31,61,0.92);
  border: 1px solid rgba(94,198,255,0.14);
  color: #d8ebf7;
}

/* Mobile */

@media (max-width: 700px) {
  .brand-title {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-card {
    padding: 32px 20px;
    min-height: 300px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    text-align: center;
  }
  
.product-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.section-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-head-row .hero-btn {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

}