/* Cultstore-Style Ultra-Clean Minimalist Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --cult-black: #111111;
  --cult-gray-light: #f7f7f8;
  --cult-gray-border: #eeeeee;
  --cult-orange: #ff5238;
  --cult-text-primary: #1a1a1e;
  --cult-text-secondary: #707072;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--cult-text-primary);
  background-color: #ffffff;
  padding-bottom: 68px;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* Minimal Top Ticker */
.cult-announcement {
  background: #f7f7f8;
  border-bottom: 1px solid #eeeeee;
  color: #111111;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  text-align: center;
}

/* Category Story Circles (Like Cultstore / Instagram stories) */
.story-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.story-circle-wrapper {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 2px;
  background: #ffffff;
  border: 1.5px solid #e5e5e7;
  transition: all 0.2s ease;
  overflow: hidden;
}

.story-circle-item.active .story-circle-wrapper {
  border-color: var(--cult-orange);
  box-shadow: 0 0 0 2px rgba(255, 82, 56, 0.2);
}

.story-circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f5f7;
}

.story-circle-title {
  font-size: 0.68rem;
  font-weight: 600;
  color: #222222;
  text-align: center;
}

/* Minimal Product Cards (Clean Cultstore Layout) */
.cult-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.cult-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.cult-card-img {
  position: relative;
  aspect-ratio: 1 / 1.15;
  background: #f7f7f8;
  overflow: hidden;
}

.cult-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cult-card:hover .cult-card-img img {
  transform: scale(1.04);
}

/* Badges */
.badge-tag-cult {
  background: #111111;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.badge-discount-cult {
  background: var(--cult-orange);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
}

.badge-rating {
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Quick Size Pills */
.size-btn {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f3f4f6;
  color: #111111;
  border: 1px solid #e5e7eb;
  transition: all 0.15s ease;
  cursor: pointer;
}

.size-btn:hover, .size-btn.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Mobile Bottom Navigation Bar (Clean Minimal White) */
.cult-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  display: flex;
  height: 56px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.cult-bottom-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888888;
  font-size: 0.65rem;
  font-weight: 600;
  gap: 2px;
  transition: color 0.15s ease;
}

.cult-bottom-item.active {
  color: #111111;
  font-weight: 700;
}

/* Floating WhatsApp Direct Chat */
.whatsapp-float-btn {
  background: #25d366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease;
}
.whatsapp-float-btn:hover {
  transform: scale(1.06);
}

/* Toast Container */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast-item {
  animation: slideIn 0.2s ease-out forwards;
}

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

/* Cultstore Auto-Sliding Hero Carousel */
.hero-carousel-container {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  width: 100%;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}

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

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.68);
}

.hero-slide-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  width: 100%;
}

.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
}

.hero-nav-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-nav-arrow.prev {
  left: 16px;
}

.hero-nav-arrow.next {
  right: 16px;
}

.hero-dots-wrapper {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 25;
}

.hero-dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-dot-btn.active {
  width: 26px;
  border-radius: 12px;
  background: var(--cult-orange);
}

/* Horizontal Sliding Product Rails */
.rail-slider-container {
  position: relative;
}

.product-rail-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.product-rail-track::-webkit-scrollbar {
  display: none;
}
.product-rail-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.rail-product-card {
  flex: 0 0 210px;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .rail-product-card {
    flex: 0 0 240px;
  }
}

.rail-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.15s ease;
}

.rail-arrow-btn:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

