/* ==========================================================================
   ALO GHALYOON - MAIN STYLES
   ========================================================================== */

/* HERO SECTION */
.alo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--alo-bg);
  padding: 100px 0 80px;
}

.alo-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    linear-gradient(135deg, rgba(10, 46, 35, 0.7) 0%, rgba(15, 61, 46, 0.85) 100%),
    linear-gradient(180deg, #0A2E23 0%, #0F3D2E 100%);
  background-size: cover;
  background-position: center;
}

.alo-hero-bg.alo-has-image {
  background: 
    linear-gradient(135deg, rgba(10, 46, 35, 0.75) 0%, rgba(10, 46, 35, 0.9) 100%),
    var(--alo-hero-image) center/cover no-repeat;
}

.alo-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
}

.alo-hero-smoke {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.alo-hero-smoke::before,
.alo-hero-smoke::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.alo-hero-smoke::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: aloFloat 20s ease-in-out infinite;
}

.alo-hero-smoke::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(76, 175, 143, 0.3) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation: aloFloat 25s ease-in-out infinite reverse;
}

@keyframes aloFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

.alo-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.alo-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--alo-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--alo-gold);
  opacity: 0;
  bottom: -10px;
  left: calc(var(--i) * 5%);
  animation: aloParticleFloat 15s linear infinite;
  animation-delay: calc(var(--i) * -0.8s);
}

@keyframes aloParticleFloat {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10%, 90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(calc(var(--i) * 20px)); }
}

.alo-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.alo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--alo-border-light);
  color: var(--alo-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: var(--alo-radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.alo-hero-badge .alo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--alo-gold);
  box-shadow: 0 0 12px var(--alo-gold);
  animation: aloPulse 2s ease-in-out infinite;
}

@keyframes aloPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.alo-hero-title {
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--alo-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.alo-gradient-text {
  background: linear-gradient(135deg, var(--alo-gold-light) 0%, var(--alo-gold) 50%, var(--alo-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.alo-hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--alo-text);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.alo-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.alo-btn-hero {
  padding: 18px 40px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.alo-btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.alo-btn-hero:hover::before {
  left: 100%;
}

.alo-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(15, 61, 46, 0.6);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-lg);
  backdrop-filter: blur(20px);
}

.alo-stat {
  text-align: center;
  position: relative;
}

.alo-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--alo-border);
}

.alo-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--alo-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.alo-stat-label {
  font-size: 13px;
  color: var(--alo-text-muted);
  font-weight: 600;
}

.alo-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--alo-gold);
  animation: aloScrollBounce 2s ease-in-out infinite;
}

.alo-hero-scroll svg {
  width: 32px;
  height: 32px;
}

@keyframes aloScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* SECTION HEAD */
.alo-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.alo-section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--alo-border-light);
  color: var(--alo-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: var(--alo-radius-full);
  margin-bottom: 16px;
}

.alo-section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--alo-white);
}

.alo-gold-text {
  color: var(--alo-gold);
}

.alo-section-desc {
  color: var(--alo-text-muted);
  font-size: 16px;
  line-height: 2;
}

.alo-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.alo-section-divider::before,
.alo-section-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--alo-gold));
}

.alo-section-divider::after {
  background: linear-gradient(90deg, var(--alo-gold), transparent);
}

.alo-section-divider-icon {
  width: 12px;
  height: 12px;
  background: var(--alo-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--alo-gold);
}

/* FEATURES SECTION */
.alo-features {
  padding: 100px 0;
  background: var(--alo-bg-2);
  position: relative;
}

.alo-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.alo-feature {
  position: relative;
  padding: 40px 30px;
  background: linear-gradient(180deg, var(--alo-bg-3) 0%, var(--alo-bg-card) 100%);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-lg);
  text-align: center;
  transition: var(--alo-transition);
  overflow: hidden;
}

.alo-feature::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--alo-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.alo-feature:hover {
  transform: translateY(-8px);
  border-color: var(--alo-border-strong);
  box-shadow: var(--alo-shadow-lg);
}

.alo-feature:hover::before {
  transform: scaleX(1);
}

.alo-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid var(--alo-border-light);
  border-radius: var(--alo-radius-lg);
  color: var(--alo-gold);
  transition: var(--alo-transition);
}

.alo-feature:hover .alo-feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  box-shadow: var(--alo-shadow-gold);
}

.alo-feature-icon svg {
  width: 40px;
  height: 40px;
}

.alo-feature-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--alo-white);
}

.alo-feature-desc {
  color: var(--alo-text-muted);
  font-size: 14px;
  line-height: 1.9;
}

/* PROCESS / STEPS */
.alo-process {
  padding: 100px 0;
  background: var(--alo-bg);
}

.alo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.alo-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--alo-gold-dark) 0 10px, transparent 10px 20px);
  z-index: 0;
}

.alo-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 20px;
  background: var(--alo-bg-card);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-lg);
  transition: var(--alo-transition);
}

.alo-step:hover {
  transform: translateY(-6px);
  border-color: var(--alo-border-strong);
}

.alo-step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: var(--alo-shadow-gold);
  position: relative;
}

.alo-step-number::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px dashed var(--alo-gold);
  border-radius: 50%;
  opacity: 0.5;
}

.alo-step-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--alo-gold);
}

.alo-step-icon svg {
  width: 100%;
  height: 100%;
}

.alo-step-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--alo-white);
}

.alo-step-desc {
  color: var(--alo-text-muted);
  font-size: 14px;
  line-height: 1.9;
}

/* FLAVORS CAROUSEL */
.alo-flavors-section {
  padding: 100px 0;
  background: var(--alo-bg-2);
  overflow: hidden;
}

.alo-carousel {
  position: relative;
  padding: 0 60px;
}

.alo-carousel-viewport {
  overflow: hidden;
  border-radius: var(--alo-radius-lg);
}

.alo-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.alo-carousel-slide {
  flex-shrink: 0;
  width: calc((100% - 60px) / 4);
}

.alo-flavor-card {
  background: linear-gradient(180deg, var(--alo-bg-3) 0%, var(--alo-bg-card) 100%);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-lg);
  overflow: hidden;
  transition: var(--alo-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.alo-flavor-card:hover {
  transform: translateY(-6px);
  border-color: var(--alo-border-strong);
  box-shadow: var(--alo-shadow-lg);
}

.alo-flavor-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--alo-bg-3), var(--alo-bg-2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.alo-flavor-image svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.4));
  transition: var(--alo-transition);
}

.alo-flavor-card:hover .alo-flavor-image svg {
  transform: scale(1.15) rotate(-5deg);
}

.alo-flavor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--alo-transition);
}

.alo-flavor-card:hover .alo-flavor-image img {
  transform: scale(1.1);
}

.alo-flavor-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.alo-flavor-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 46, 35, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.alo-flavor-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  font-size: 11px;
  font-weight: 800;
  border-radius: var(--alo-radius-full);
  z-index: 3;
}

.alo-flavor-info {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.alo-flavor-name {
  font-size: 17px;
  font-weight: 900;
  color: var(--alo-white);
  margin-bottom: 6px;
}

.alo-flavor-desc {
  font-size: 13px;
  color: var(--alo-text-muted);
  margin-bottom: 12px;
}

.alo-flavor-price {
  font-family: 'Playfair Display', serif;
  color: var(--alo-gold);
  font-weight: 900;
  font-size: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--alo-border);
}

.alo-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--alo-shadow-gold);
  transition: var(--alo-transition);
  z-index: 3;
}

.alo-carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.alo-carousel-prev {
  right: 0;
}

.alo-carousel-next {
  left: 0;
}

.alo-carousel-btn svg {
  width: 22px;
  height: 22px;
}

.alo-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.alo-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: var(--alo-transition);
  border: none;
}

.alo-carousel-dot.alo-active {
  background: var(--alo-gold);
  width: 32px;
  border-radius: 6px;
}

.alo-carousel-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.alo-tab-btn {
  padding: 12px 28px;
  background: transparent;
  color: var(--alo-text-muted);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-full);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--alo-transition);
}

.alo-tab-btn.alo-active {
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  border-color: transparent;
  box-shadow: var(--alo-shadow-gold);
}

.alo-tab-btn:hover:not(.alo-active) {
  color: var(--alo-gold);
  border-color: var(--alo-border-light);
}

/* TAB CONTENT */
.alo-tab-content {
  display: none;
}

.alo-tab-content.alo-active {
  display: block;
}

/* ORDER FORM SECTION */
.alo-order-section {
  padding: 100px 0;
  background: var(--alo-bg);
  position: relative;
}

.alo-order-form {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--alo-bg-3) 0%, var(--alo-bg-card) 100%);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-xl);
  box-shadow: var(--alo-shadow-lg);
  overflow: hidden;
}

.alo-order-form-header {
  padding: 40px;
  text-align: center;
  border-bottom: 1px solid var(--alo-border);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
}

.alo-order-form-header h2 {
  font-size: 32px;
  font-weight: 900;
  margin: 12px 0 10px;
  color: var(--alo-white);
}

.alo-order-form-header p {
  color: var(--alo-text-muted);
  font-size: 15px;
}

.alo-order-form-body {
  padding: 40px;
}

.alo-form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px dashed var(--alo-border);
}

.alo-form-section:last-of-type {
  border-bottom: none;
}

.alo-form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--alo-white);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.alo-form-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

.alo-form-price-hint {
  margin-right: auto;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--alo-gold);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--alo-radius-full);
  border: 1px solid var(--alo-border);
}

.alo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.alo-form-group {
  margin-bottom: 16px;
}

.alo-form-full {
  grid-column: 1 / -1;
}

.alo-form-group label {
  display: block;
  color: var(--alo-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.alo-form-group input[type="text"],
.alo-form-group input[type="tel"],
.alo-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--alo-bg);
  border: 1px solid var(--alo-border);
  color: var(--alo-white);
  font-size: 15px;
  border-radius: var(--alo-radius);
  transition: var(--alo-transition);
  font-family: inherit;
}

.alo-form-group input:focus,
.alo-form-group textarea:focus {
  outline: none;
  border-color: var(--alo-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.alo-form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.alo-form-group input::placeholder,
.alo-form-group textarea::placeholder {
  color: var(--alo-text-dim);
}

.alo-form-check {
  padding: 14px 20px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius);
  margin-top: 8px;
}

.alo-form-check label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--alo-white);
  font-weight: 700;
  margin: 0;
}

.alo-form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--alo-gold);
  cursor: pointer;
}

.alo-flavor-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.alo-flavor-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--alo-bg);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius);
  transition: var(--alo-transition);
}

.alo-flavor-select:hover {
  border-color: var(--alo-border-light);
  background: rgba(212, 175, 55, 0.03);
}

.alo-flavor-select.alo-has-qty {
  border-color: var(--alo-gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.alo-flavor-select-info {
  flex: 1;
  min-width: 0;
}

.alo-flavor-select-info h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--alo-white);
  margin: 0 0 4px;
}

.alo-flavor-select-info p {
  font-size: 12px;
  color: var(--alo-text-muted);
  margin: 0;
}

.alo-extra-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  border: 1px solid var(--alo-border-light);
  border-radius: var(--alo-radius);
}

.alo-extra-head .alo-flavor-select-info h4 {
  font-size: 16px;
}

.alo-qty-box {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  background: var(--alo-bg-2);
  padding: 4px;
  border-radius: var(--alo-radius);
  border: 1px solid var(--alo-border);
}

.alo-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  font-size: 20px;
  font-weight: 900;
  border-radius: var(--alo-radius-sm);
  transition: var(--alo-transition);
  cursor: pointer;
  line-height: 1;
  border: none;
}

.alo-qty-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.alo-qty-btn:active {
  transform: scale(0.95);
}

.alo-qty-input {
  width: 46px;
  height: 32px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--alo-white);
  font-weight: 900;
  font-size: 15px;
  -moz-appearance: textfield;
}

.alo-qty-input::-webkit-outer-spin-button,
.alo-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.alo-live-invoice {
  margin: 30px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  border: 1px solid var(--alo-border-light);
  border-radius: var(--alo-radius-lg);
}

.alo-live-invoice h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--alo-gold);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--alo-border);
}

.alo-live-invoice h3 svg {
  width: 22px;
  height: 22px;
}

.alo-invoice-items {
  margin-bottom: 20px;
}

.alo-invoice-empty {
  text-align: center;
  color: var(--alo-text-muted);
  padding: 20px;
  font-size: 14px;
}

.alo-invoice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(10, 46, 35, 0.4);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-sm);
  margin-bottom: 8px;
  animation: aloFadeIn 0.3s ease;
}

.alo-invoice-item-name {
  color: var(--alo-white);
  font-weight: 700;
  font-size: 14px;
}

.alo-invoice-item-qty {
  color: var(--alo-gold);
  font-weight: 800;
  font-size: 14px;
  min-width: 30px;
  text-align: center;
}

.alo-invoice-item-price {
  color: var(--alo-gold-light);
  font-weight: 700;
  font-size: 13px;
  margin-right: auto;
}

.alo-invoice-total {
  padding-top: 16px;
  border-top: 1px dashed var(--alo-border);
}

.alo-invoice-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  color: var(--alo-text);
  font-size: 14px;
}

.alo-invoice-grand {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--alo-gold);
  font-size: 17px !important;
  font-weight: 900 !important;
}

.alo-invoice-grand span:first-child {
  color: var(--alo-white);
}

.alo-invoice-grand span:last-child {
  color: var(--alo-gold);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}

@keyframes aloFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.alo-submit-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-size: 16px;
  font-weight: 900;
  border-radius: var(--alo-radius);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--alo-transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.alo-submit-order::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.alo-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.alo-submit-order:hover::before {
  left: 100%;
}

.alo-submit-order svg {
  width: 22px;
  height: 22px;
}

.alo-order-error {
  padding: 14px;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #FF6B6B;
  border-radius: var(--alo-radius);
  margin-bottom: 16px;
  font-size: 14px;
  text-align: center;
  animation: aloShake 0.5s ease;
}

@keyframes aloShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

/* COVERAGE */
.alo-coverage {
  padding: 100px 0;
  background: var(--alo-bg-2);
}

.alo-coverage-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px;
  background: linear-gradient(135deg, var(--alo-bg-3), var(--alo-bg-card));
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-xl);
  box-shadow: var(--alo-shadow-lg);
}

.alo-area-group {
  margin-bottom: 30px;
}

.alo-area-group:last-child {
  margin-bottom: 0;
}

.alo-area-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--alo-border);
}

.alo-area-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--alo-border-light);
  color: var(--alo-gold);
  border-radius: var(--alo-radius-sm);
}

.alo-area-icon svg {
  width: 18px;
  height: 18px;
}

.alo-area-title h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--alo-gold);
  margin: 0;
}

.alo-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alo-area-tag {
  padding: 10px 18px;
  background: var(--alo-bg-card);
  border: 1px solid var(--alo-border);
  color: var(--alo-text);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--alo-radius-full);
  transition: var(--alo-transition);
  cursor: default;
}

.alo-area-tag:hover {
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--alo-shadow-gold);
}

/* TESTIMONIALS */
.alo-testimonials {
  padding: 100px 0;
  background: var(--alo-bg);
}

.alo-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.alo-testimonial {
  padding: 30px;
  background: var(--alo-bg-card);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-lg);
  position: relative;
  transition: var(--alo-transition);
}

.alo-testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--alo-gold);
  opacity: 0.2;
  line-height: 1;
}

.alo-testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--alo-border-strong);
}

.alo-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--alo-gold);
}

.alo-testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.alo-testimonial-text {
  color: var(--alo-text);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 20px;
  min-height: 90px;
}

.alo-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--alo-border);
}

.alo-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.alo-testimonial-info h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--alo-white);
  margin: 0 0 2px;
}

.alo-testimonial-info span {
  font-size: 12px;
  color: var(--alo-text-muted);
}

/* BLOG SECTION */
.alo-blog-section {
  padding: 100px 0;
  background: var(--alo-bg-2);
}

.alo-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.alo-blog-card {
  background: var(--alo-bg-card);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-lg);
  overflow: hidden;
  transition: var(--alo-transition);
  display: flex;
  flex-direction: column;
}

.alo-blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--alo-border-strong);
  box-shadow: var(--alo-shadow-lg);
}

.alo-blog-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--alo-bg-3), var(--alo-bg-card));
}

.alo-blog-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.alo-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.alo-blog-card:hover .alo-blog-thumb img {
  transform: scale(1.1);
}

.alo-blog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--alo-gold);
}

.alo-blog-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.4;
}

.alo-blog-date {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 14px;
  background: rgba(10, 46, 35, 0.9);
  color: var(--alo-gold);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--alo-radius-full);
  backdrop-filter: blur(10px);
  border: 1px solid var(--alo-border-light);
}

.alo-blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.alo-blog-content h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.6;
}

.alo-blog-content h3 a {
  color: var(--alo-white);
  transition: var(--alo-transition);
}

.alo-blog-content h3 a:hover {
  color: var(--alo-gold);
}

.alo-blog-excerpt {
  color: var(--alo-text-muted);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 20px;
  flex: 1;
}

.alo-blog-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--alo-gold);
  font-size: 14px;
  font-weight: 700;
  transition: var(--alo-transition);
  align-self: flex-start;
}

.alo-blog-more:hover {
  gap: 12px;
}

.alo-blog-more svg {
  width: 16px;
  height: 16px;
}

/* FINAL CTA */
.alo-final-cta {
  padding: 100px 0;
  background: var(--alo-bg);
}

.alo-final-cta-inner {
  position: relative;
  padding: 80px 60px;
  background: linear-gradient(135deg, #164838 0%, #0F3D2E 50%, #164838 100%);
  border: 1px solid var(--alo-border-light);
  border-radius: var(--alo-radius-xl);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--alo-shadow-lg);
}

.alo-final-cta-inner::before,
.alo-final-cta-inner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.alo-final-cta-inner::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: aloFloat 10s ease-in-out infinite;
}

.alo-final-cta-inner::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 175, 143, 0.3) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation: aloFloat 12s ease-in-out infinite reverse;
}

.alo-final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.alo-final-cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin: 16px 0;
  line-height: 1.3;
  color: var(--alo-white);
}

.alo-final-cta-content p {
  color: var(--alo-text-muted);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 36px;
}

.alo-final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.alo-testimonial:nth-child(1) .alo-testimonial-avatar {
  background: linear-gradient(135deg, #FF6B6B, #EE5A24);
}

.alo-testimonial:nth-child(2) .alo-testimonial-avatar {
  background: linear-gradient(135deg, var(--alo-green-accent), var(--alo-green-light));
}

.alo-testimonial:nth-child(3) .alo-testimonial-avatar {
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
}

/* FLAVORS PAGE */
.alo-flavors-page {
  padding: 60px 0 100px;
  background: var(--alo-bg);
}

.alo-flavors-page-head {
  text-align: center;
  margin-bottom: 60px;
  padding: 60px 30px;
  background: linear-gradient(135deg, var(--alo-bg-3), var(--alo-bg-card));
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-xl);
}

.alo-flavors-page-head h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin: 16px 0;
  color: var(--alo-white);
}

.alo-flavors-page-head p {
  color: var(--alo-text-muted);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
}

.alo-flavors-category-block {
  margin-bottom: 60px;
}

.alo-flavors-category-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding: 20px 30px;
  background: linear-gradient(135deg, var(--alo-bg-3), var(--alo-bg-card));
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-lg);
}

.alo-flavors-category-title-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  border-radius: var(--alo-radius);
  color: var(--alo-bg);
  flex-shrink: 0;
}

.alo-flavors-category-title-icon svg {
  width: 26px;
  height: 26px;
}

.alo-flavors-category-title h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
}

.alo-flavors-category-title p {
  font-size: 13px;
  color: var(--alo-text-muted);
  margin: 0;
}

.alo-flavors-category-title-price {
  margin-right: auto;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--alo-border-light);
  color: var(--alo-gold);
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--alo-radius-full);
}

.alo-flavors-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* SINGLE POST */
.alo-single {
  padding: 60px 0 100px;
  background: var(--alo-bg);
}

.alo-single-wrap {
  max-width: 850px;
  margin: 0 auto;
}

.alo-single-header {
  text-align: center;
  margin-bottom: 40px;
}

.alo-single-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--alo-white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.alo-single-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--alo-gold);
  font-size: 14px;
}

.alo-single-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.alo-single-meta svg {
  width: 16px;
  height: 16px;
}

.alo-single-thumb {
  margin-bottom: 40px;
  border-radius: var(--alo-radius-lg);
  overflow: hidden;
  border: 1px solid var(--alo-border);
}

.alo-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.alo-single-content {
  color: var(--alo-text);
  font-size: 17px;
  line-height: 2;
  padding: 40px;
  background: var(--alo-bg-card);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius-lg);
}

.alo-single-content h2,
.alo-single-content h3,
.alo-single-content h4 {
  color: var(--alo-gold);
  margin: 30px 0 16px;
}

.alo-single-content p {
  margin-bottom: 20px;
  color: var(--alo-text);
}

.alo-single-content img {
  margin: 30px auto;
  border-radius: var(--alo-radius);
  max-width: 100%;
  height: auto;
}

.alo-single-content a {
  color: var(--alo-gold);
  border-bottom: 1px dashed var(--alo-gold);
}

.alo-single-content ul,
.alo-single-content ol {
  padding-right: 24px;
  margin-bottom: 20px;
}

.alo-single-content li {
  margin-bottom: 10px;
  list-style: disc;
}

.alo-single-content blockquote {
  padding: 20px 30px;
  margin: 30px 0;
  background: rgba(212, 175, 55, 0.05);
  border-right: 4px solid var(--alo-gold);
  border-radius: var(--alo-radius);
  font-style: italic;
  color: var(--alo-gold-light);
}

/* PAGE HEADER */
.alo-page-header {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--alo-bg-3), var(--alo-bg-2));
  border-bottom: 1px solid var(--alo-border);
  text-align: center;
}

.alo-page-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--alo-white);
  margin-bottom: 12px;
}

.alo-page-header p {
  color: var(--alo-text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* PAGINATION */
.alo-pagination {
  margin-top: 40px;
  text-align: center;
}

.alo-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  margin: 0 4px;
  background: var(--alo-bg-card);
  color: var(--alo-text);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius);
  font-weight: 700;
  transition: var(--alo-transition);
}

.alo-pagination .page-numbers:hover,
.alo-pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  border-color: transparent;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .alo-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .alo-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .alo-steps::before {
    display: none;
  }
  .alo-testimonials-grid,
  .alo-blog-grid,
  .alo-flavors-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .alo-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .alo-stat:nth-child(2)::after {
    display: none;
  }
  .alo-carousel-slide {
    width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 768px) {
  .alo-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }
  
  .alo-features,
  .alo-flavors-section,
  .alo-process,
  .alo-coverage,
  .alo-testimonials,
  .alo-blog-section,
  .alo-order-section,
  .alo-final-cta {
    padding: 60px 0;
  }
  
  .alo-section-head {
    margin-bottom: 40px;
  }
  
  .alo-features-grid,
  .alo-steps,
  .alo-testimonials-grid,
  .alo-blog-grid,
  .alo-flavors-full-grid {
    grid-template-columns: 1fr;
  }
  
  .alo-carousel {
    padding: 0 40px;
  }
  
  .alo-carousel-slide {
    width: calc((100% - 20px) / 2);
  }
  
  .alo-carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .alo-carousel-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .alo-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 16px;
  }
  
  .alo-stat::after {
    display: none;
  }
  
  .alo-order-form-header,
  .alo-order-form-body {
    padding: 24px 20px;
  }
  
  .alo-form-grid {
    grid-template-columns: 1fr;
  }
  
  .alo-flavor-select-grid {
    grid-template-columns: 1fr;
  }
  
  .alo-extra-head {
    flex-direction: column;
    text-align: center;
  }
  
  .alo-coverage-wrap {
    padding: 30px 20px;
  }
  
  .alo-flavors-category-title {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .alo-flavors-category-title-price {
    margin-right: 0;
  }
  
  .alo-final-cta-inner {
    padding: 50px 24px;
  }
  
  .alo-final-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .alo-final-cta-actions .alo-btn {
    width: 100%;
    justify-content: center;
  }
  
  .alo-single-content {
    padding: 24px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .alo-carousel-slide {
    width: 100%;
  }
  
  .alo-carousel {
    padding: 0 30px;
  }
  
  .alo-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .alo-hero-actions .alo-btn {
    width: 100%;
    justify-content: center;
  }
  
  .alo-form-section-title {
    font-size: 17px;
  }
  
  .alo-form-price-hint {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}