/* Hero Section */
.hero {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 70px;
}
.hero-content { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    animation: heroLogoFloat 3s ease-in-out infinite;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (min-width: 1024px) {
    .hero-logo {
        height: 100px;
        border-radius: 20px;
    }
}

.hero-subtitle { font-size: 1.3rem; opacity: 0.9; color: white; }

/* Loading and Empty States */
.loading-spinner,
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #64748b;
}

.loading-spinner i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3b82f6;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.empty-state h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

/* Product Features */
.product-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #475569;
  line-height: 1.6;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* Products */
.products-section { padding: 80px 0; background: #fff; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.product-card { background: #ffffff; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.product-image { height: 220px; overflow: hidden; background: #f8fafc; display: flex; align-items: center; justify-content: center; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-content { padding: 1.5rem; }
.product-content h3 { font-size: 1.3rem; color: #1e40af; margin-bottom: .5rem; }
.product-content p { color: #64748b; line-height: 1.6; }
.product-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; margin-top: 1rem; border-top: 1px solid #e5e7eb; }
.price { font-weight: 700; color: #3b82f6; }
.btn { text-decoration: none; display: inline-block; padding: .6rem 1.1rem; border-radius: 10px; font-weight: 600; transition: all .3s ease; }
.btn-primary { background: #3b82f6; color: white; }
.btn-primary:hover { background: #2563eb; transform: translateY(-1px); }
.btn-light { background: white; color: #3b82f6; border: 1px solid #3b82f6; }
.btn-light:hover { background: #eff6ff; }

.order-cta { margin-top: 3rem; text-align: center; }
.order-cta h2 { font-size: 2rem; color: #1e40af; margin-bottom: .5rem; }
.order-cta p { color: #64748b; margin-bottom: 1rem; }

@media (max-width: 480px){ .hero{ padding: 90px 0 60px;} .hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    animation: heroLogoFloat 3s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
@media (min-width: 1024px) {
    .hero-logo {
        height: 100px;
        border-radius: 20px;
        padding: 10px;
    }
 }
