/* Shopee Color Palette */
:root {
  --shopee-orange: #ff5722;
  --shopee-orange-light: #ff7043;
  --shopee-orange-dark: #e64a19;
  --shopee-white: #ffffff;
  --shopee-gray: #f5f5f5;
  --shopee-dark: #333333;
  --shopee-light-gray: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--shopee-gray);
  color: var(--shopee-dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--shopee-orange), var(--shopee-orange-dark));
  color: var(--shopee-white);
  padding: 30px 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Main Content */
.main {
  padding: 40px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.product-card {
  background: var(--shopee-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image-container {
  position: relative;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 87, 34, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.click-text {
  color: var(--shopee-white);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 20px;
  border: 2px solid var(--shopee-white);
  border-radius: 8px;
}

/* Footer Styles */
.footer {
  background: var(--shopee-dark);
  color: var(--shopee-white);
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-title {
    font-size: 2rem;
  }
  
  .header-subtitle {
    font-size: 1.2rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .product-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .header {
    padding: 20px 0;
  }
  
  .header-title {
    font-size: 1.6rem;
  }
  
  .header-subtitle {
    font-size: 1rem;
  }
  
  .main {
    padding: 20px 0;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-image {
    height: 280px;
  }
  
  .click-text {
    font-size: 1.2rem;
  }
}