/* ================================
   VARIABLES & RESET
   ================================ */
:root {
  --primary: #c2185b;
  --primary-dark: #880e4f;
  --primary-light: #f8bbd9;
  --accent: #e91e63;
  --background: #fff5f8;
  --background-alt: #fce4ec;
  --foreground: #4a1a2c;
  --foreground-muted: #7c4156;
  --card-bg: #ffffff;
  --card-border: #f8bbd9;
  --success: #4caf50;
  --warning: #ff9800;
  --shadow-sm: 0 1px 3px rgba(194, 24, 91, 0.1);
  --shadow-md: 0 4px 12px rgba(194, 24, 91, 0.15);
  --shadow-lg: 0 8px 24px rgba(194, 24, 91, 0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.hidden {
  display: none !important;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-arkki {
  background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-arkki:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

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

.icon-sm {
  width: 16px;
  height: 16px;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

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

.nav-links a:not(.btn) {
  color: var(--foreground);
  font-weight: 500;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* ================================
   DELIVERY BANNER
   ================================ */
.delivery-banner {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 0.35rem 0.5rem;
  box-shadow: var(--shadow-sm);
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
  font-size: 0.75rem;
  white-space: nowrap;
}

.banner-item svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 768px) {
  .delivery-banner {
    top: auto;
    bottom: 0;
    padding: 0.5rem 0.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  }

  .banner-container {
    gap: 0.4rem;
    justify-content: space-around;
  }

  .banner-item {
    font-size: 0.55rem;
    gap: 0.15rem;
    flex-direction: column;
    text-align: center;
  }

  .banner-item svg {
    width: 14px;
    height: 14px;
  }
  
  .main-content {
    padding-top: 0;
    padding-bottom: 50px;
  }
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(74, 26, 44, 0.6) 0%,
    rgba(194, 24, 91, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content .highlight {
  color: var(--primary-light);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-arrow svg {
  width: 32px;
  height: 32px;
  color: white;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ================================
   MAIN CONTENT
   ================================ */
.main-content {
  padding-top: 26px;
  padding-bottom: 0;
}

.section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: var(--background-alt);
  max-width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-alt > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--foreground-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* ================================
   INTRO SECTION
   ================================ */
.intro-text {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.intro-text p {
  margin-bottom: 1rem;
  color: var(--foreground-muted);
}

.link-primary {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.link-primary:hover {
  border-bottom-color: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--foreground-muted);
  font-size: 0.95rem;
}

/* ================================
   FILTER BUTTONS
   ================================ */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--card-border);
  background: white;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ================================
   PRODUCTS GRID
   ================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card.hidden {
  display: none;
}

.product-image {
  position: relative;
  overflow: hidden;
  background: var(--background-alt);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-popular {
  background: var(--primary);
  color: white;
}

.badge-premium {
  background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
  color: #4a1a2c;
}

.badge-colorful {
  background: linear-gradient(135deg, #e91e63, #9c27b0, #2196f3, #4caf50, #ffeb3b);
  color: white;
}

.product-content {
  padding: 1.25rem;
}

.product-content h3 {
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--foreground-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.product-price .price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.product-price .shipping {
  font-size: 0.8rem;
  color: var(--success);
}

.product-rating {
  color: #ffc107;
  font-size: 0.9rem;
}

/* ================================
   COLORS SECTION
   ================================ */
.colors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.color-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.color-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.color-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.color-dot.red { background: linear-gradient(135deg, #e53935, #c62828); }
.color-dot.white { background: linear-gradient(135deg, #fafafa, #e0e0e0); border: 1px solid #ccc; }
.color-dot.yellow { background: linear-gradient(135deg, #fdd835, #f9a825); }
.color-dot.orange { background: linear-gradient(135deg, #ff9800, #e65100); }
.color-dot.pink { background: linear-gradient(135deg, #f48fb1, #ec407a); }
.color-dot.mixed { background: linear-gradient(135deg, #e91e63, #9c27b0, #2196f3, #4caf50); }

.color-info {
  display: flex;
  flex-direction: column;
}

.color-name {
  font-weight: 600;
  color: var(--foreground);
}

.color-meaning {
  font-size: 0.85rem;
  color: var(--foreground-muted);
}

/* ================================
   ARKKI SECTION
   ================================ */
.badges-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge-tag {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-green {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-blue {
  background: #e3f2fd;
  color: #1565c0;
}

.badge-purple {
  background: #f3e5f5;
  color: #7b1fa2;
}

.arkki-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.arkki-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--background-alt);
}

.arkki-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.arkki-item:hover img {
  transform: scale(1.03);
}

.arkki-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ================================
   DELIVERY SECTION
   ================================ */
.delivery-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.delivery-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.delivery-feature svg {
  color: var(--primary);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.city-card {
  background: var(--card-bg);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.city-card:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.city-more {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-style: italic;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col p {
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  opacity: 0.85;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}

.footer-email:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  opacity: 0.85;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links img {
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.footer-links img:hover {
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 4rem;
  }
}

/* ================================
   SCROLL TO TOP
   ================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 4rem;
  }
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 480px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .colors-grid {
    grid-template-columns: 1fr;
  }
  
  .arkki-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .scroll-top {
    bottom: 4rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}
