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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

.contact-badge {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #2563eb;
  color: white;
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-badge::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.contact-badge.visible {
  right: 20px;
  opacity: 1;
  transform: translateY(0);
}

.contact-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.3);
  background: #1d4ed8;
}

header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #2563eb;
}

.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #2563eb;
  color: white;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 50%;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9));
  background-size: cover;
  background-position: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.carousel-slide.active {
  opacity: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.hero p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.cta-button {
  background: #2563eb;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.products {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.products h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #1e293b;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

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

.product-card h3 {
  padding: 1rem;
  font-size: 1.25rem;
}

.product-card p {
  padding: 0 1rem;
  color: #2563eb;
  font-weight: 600;
}

.add-to-cart {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  border: none;
  background: #2563eb;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.add-to-cart:hover {
  background: #1d4ed8;
}

footer {
  background: #1e293b;
  color: white;
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-email {
  color: #4CAF50 !important;
  font-weight: 600;
}

.footer-email:hover {
  color: #45a049 !important;
}

.cart-popup {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.cart-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.remove-item {
  background: #ef4444;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.remove-item:hover {
  background: #dc2626;
}

.privacy-container {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
}

.privacy-text {
  max-height: 150px;
  overflow-y: auto;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 0.9rem;
  color: #64748b;
}

.privacy-check {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

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

.cart-content {
  padding: 2rem;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-close {
  cursor: pointer;
  font-size: 1.5rem;
  color: #64748b;
  transition: color 0.3s ease;
}

.cart-close:hover {
  color: #1e293b;
}

.cart-items {
  margin-bottom: 1rem;
}

.cart-total {
  font-weight: 600;
  text-align: right;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #eee;
}

.checkout-button {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  border: none;
  background: #2563eb;
  color: white;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.checkout-button:hover {
  background: #1d4ed8;
}

.checkout-button.disabled {
  background: #94a3b8;
  cursor: not-allowed;
  pointer-events: none;
}

.checkout-popup {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.checkout-popup.active {
  right: 0;
}

.checkout-content {
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.checkout-close {
  cursor: pointer;
  font-size: 1.5rem;
  color: #64748b;
  transition: color 0.3s ease;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-form input {
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
}

.checkout-form h4 {
  margin-bottom: 1rem;
  color: #1e293b;
}

.checkout-submit {
  background: #2563eb;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.checkout-submit:hover {
  background: #1d4ed8;
}

.showcase {
  padding: 6rem 2rem;
  background: #f8fafc;
}

.showcase h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #1e293b;
}

.showcase-slider {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.showcase-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}

.showcase-item {
  position: relative;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 0 0 calc(33.333% - 2rem);
  max-width: 400px;
}

.showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.showcase-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.showcase-item h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.5rem;
  color: #1e293b;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.showcase-item .price {
  padding: 0.5rem 1.5rem 1.5rem;
  color: #2563eb;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.showcase-item .tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #2563eb;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(30, 41, 59, 0.95);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-banner button {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cookie-accept {
  background: #2563eb;
  color: white;
}

.cookie-accept:hover {
  background: #1d4ed8;
}

.cookie-reject {
  background: #ef4444;
  color: white;
}

.cookie-reject:hover {
  background: #dc2626;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .cart-popup {
    width: 100%;
    right: -100%;
  }
}
