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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  background-color: #fafafa;
  color: #333;
}

/* Layout Utils */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 896px;
}

/* Header Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.navbar {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  margin: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: white;
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: inline-block;
  }
}

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

.nav-menu.desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-menu.desktop {
    display: flex;
  }
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #e0e0e0;
}

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

.cart-btn {
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease;
}

.cart-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.icon {
  width: 20px;
  height: 20px;
}

.contact-btn {
  display: none;
  background-color: #1E90FF;
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (min-width: 640px) {
  .contact-btn {
    display: inline-block;
  }
}

.contact-btn:hover {
  background-color: #0B5DA0;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 8px;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 16px;
  margin-top: 8px;
  border-radius: 8px;
  padding: 16px 24px;
  flex-direction: column;
  gap: 16px;
}

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

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 80px;
}

@media (min-width: 768px) {
  .hero {
    height: 600px;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.hero-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: bold;
  color: white;
  margin-bottom: 16px;
  max-width: 784px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 64px;
  }
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 640px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 20px;
  }
}

.cta-button {
  background-color: #1E90FF;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0B5DA0;
}

/* Showcase Section */
.showcase {
  padding: 64px 24px;
  background-color: white;
}

@media (min-width: 768px) {
  .showcase {
    padding: 96px 24px;
  }
}

.showcase-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
}

@media (min-width: 768px) {
  .showcase-grid {
    gap: 48px;
  }
}

.showcase-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 192px;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

@media (min-width: 768px) {
  .showcase-card {
    height: 256px;
  }
}

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

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-text {
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .showcase-text {
    font-size: 40px;
  }
}

/* Categories Section */
.categories {
  background-color: black;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .categories {
    padding: 96px 24px;
  }
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .categories-grid {
    gap: 24px;
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-card:hover {
  background-color: #2a2a2a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.category-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  color: white;
}

.category-card:hover .category-icon {
  background-color: #3a3a3a;
}

.category-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.category-label {
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-align: center;
}

/* Products Section */
.products {
  background-color: #1E90FF;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .products {
    padding: 96px 24px;
  }
}

.products .section-title {
  color: white;
  margin-bottom: 48px;
}

.products-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.product-image {
  width: 100%;
  height: 256px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 24px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.product-price {
  font-size: 20px;
  font-weight: bold;
  color: black;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #d0d0d0;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .footer {
    padding: 80px 24px;
  }
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section {
  color: #d0d0d0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-weight: bold;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 600;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(208, 208, 208, 0.8);
}

.footer-title {
  font-weight: 600;
  margin-bottom: 16px;
  color: #d0d0d0;
}

.footer-links {
  list-style: none;
  space-y: 8px;
}

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

.footer-links a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #1E90FF;
}

.footer-links li {
  font-size: 14px;
  color: #d0d0d0;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(208, 208, 208, 0.2);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 14px;
  color: rgba(208, 208, 208, 0.8);
}

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

.social-link {
  color: #d0d0d0;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  background-color: rgba(208, 208, 208, 0.1);
  color: #1E90FF;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
