/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00bcd4;
  --primary-dark: #00838f;
  --secondary-color: #4caf50;
  --accent-color: #ff9800;
  --danger-color: #f44336;
  --bg-color: #f5f5f5;
  --card-bg: #ffffff;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

.hidden {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Navbar */
.navbar {
  background: #ffffff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-menu-btn,
.navbar-cart-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #333;
  font-size: 20px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.navbar-menu-btn:hover,
.navbar-cart-btn:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

.navbar-menu-btn:active,
.navbar-cart-btn:active {
  transform: scale(0.95);
}

/* Navbar Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-main {
  font-size: 32px;
  font-weight: 900;
  color: #1a1a2e;
  font-family: 'Inter', sans-serif;
  letter-spacing: -2px;
  line-height: 1;
}

.logo-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.logo-plus {
  font-size: 8px;
  font-weight: 700;
  color: #666;
  letter-spacing: 2px;
}

.logo-tagline {
  font-size: 7px;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.5px;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Slide Menu */
.slide-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background: #ffffff;
  z-index: 999;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.slide-menu.active {
  left: 0;
}

.slide-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e8e8e8;
}

.slide-menu-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.slide-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #666;
  font-size: 16px;
  transition: all 0.3s ease;
}

.slide-menu-close:hover {
  background: #e53935;
  color: white;
}

/* Menu List */
.slide-menu-list {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
}

.slide-menu-list li {
  border-bottom: 1px solid #f0f0f0;
}

.slide-menu-list li:last-child {
  border-bottom: none;
}

.slide-menu-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.slide-menu-list a:hover {
  background: #f8f8f8;
  color: var(--primary-color);
  padding-left: 24px;
}

.slide-menu-list a i {
  width: 20px;
  color: #999;
  font-size: 14px;
  transition: color 0.3s ease;
}

.slide-menu-list a:hover i {
  color: var(--primary-color);
}

/* Menu CTA */
.slide-menu-cta {
  padding: 16px 20px;
  border-top: 1px solid #e8e8e8;
}

.menu-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/* Menu Contact */
.slide-menu-contact {
  padding: 16px 20px;
  background: #f8f8f8;
  border-top: 1px solid #e8e8e8;
}

.contact-item {
  margin-bottom: 12px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--primary-color);
}

/* Old header styles - kept for compatibility */
.header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.logo {
  text-align: center;
}

.logo img {
  max-height: 50px;
  width: auto;
}

/* Hero Section */
.hero {
  background-image: url('images/products/bjk-dik-yaka-siyah.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 16px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: background-image 0.5s ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

/* Removed old pulse effect */

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1.2;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: #ff5722;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
  animation: floatingHero 3s ease-in-out infinite;
}

.hero-title {
  font-size: 42px;
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hero-title .highlight {
  color: #ffd600;
  position: relative;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 500px;
}

/* Hero Showcase / Slider */
.hero-showcase {
  flex: 1;
  position: relative;
  height: 550px;
  /* Increased from 420px */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateX(100px) rotateY(-20deg) scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) rotateY(0) scale(1);
  z-index: 10;
}

.hero-slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: #ffd600;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 214, 0, 0.5);
}

.hero-floating-badge {
  position: absolute;
  bottom: 40px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatingHero 4s ease-in-out infinite;
  z-index: 15;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-floating-badge i {
  color: #FFD700;
  font-size: 18px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.hero-floating-badge span {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-floating-badge i {
  color: #ffd600;
  font-size: 20px;
}

.hero-floating-badge span {
  font-weight: 700;
  font-size: 14px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff5722;
  color: white !important;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
  transition: all 0.3s ease;
  animation: pulseBtn 2s infinite;
}

@keyframes floatingHero {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulseBtn {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 87, 34, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
  }
}

/* Response for Hero */
/* Response for Hero */
/* Response for Hero */
@media (max-width: 992px) {
  .hero {
    padding: 40px 16px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    display: flex;
    /* Force flex in column */
  }

  .hero-content {
    text-align: center;
    width: 100%;
    order: 2;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-showcase {
    order: 1;
    height: 300px;
    min-height: 280px;
    width: 100%;
    max-width: 100%;
    display: block;
    position: relative;
    margin-bottom: 20px;
  }

  .hero-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* Ensure slider is behind overlays */
    z-index: 1;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show full image */
    transform: none;
    /* No 3D on mobile */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform: none;
  }

  .hero-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    justify-content: center;
    z-index: 10;
    margin-top: 0;
  }

  .hero-floating-badge {
    position: absolute;
    top: 20px;
    right: 16px;
    bottom: auto;
    left: auto;
    transform: none;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: auto;
    padding: 8px 16px;
    border-radius: 50px;
  }

  .hero-floating-badge i {
    color: #FFD700;
    font-size: 16px;
  }

  .hero-floating-badge span {
    font-size: 12px;
    font-weight: 700;
    color: white;
  }

  .hero-floating-badge i {
    color: #ffd600;
  }

  .hero-desc {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btn {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
}

/* Order Section */
.order-section {
  padding: 24px 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.section-header p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Package Header */
.package-header {
  text-align: center;
  margin-bottom: 20px;
}

.package-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.package-subtitle {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Package Selection */
.package-selection {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.package-option {
  cursor: pointer;
  display: block;
}

.package-option input {
  display: none;
}

.package-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid #e8e8e8;
  border-left: 4px solid transparent;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.package-option:hover .package-card {
  border-left-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.package-option input:checked+.package-card {
  border-left-color: var(--primary-color);
  background: linear-gradient(90deg, rgba(0, 188, 212, 0.03) 0%, white 100%);
}

.package-option input:checked+.package-card .package-radio {
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.package-option input:checked+.package-card .package-radio::after {
  opacity: 1;
  transform: scale(1);
}

/* Radio Button */
.package-radio {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 4px;
}

.package-radio::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Package Content */
.package-content {
  flex: 1;
}

.package-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.package-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.old-price {
  font-size: 15px;
  color: #e53935;
  text-decoration: line-through;
  font-weight: 500;
}

.new-price {
  font-size: 20px;
  font-weight: 800;
  color: #43a047;
}

.package-unit {
  font-size: 12px;
  color: #43a047;
  margin-bottom: 10px;
}

/* Package Badges */
.package-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

.badge i {
  font-size: 10px;
}

.badge-cod {
  background: #fff3e0;
  color: #f57c00;
}

.badge-free {
  background: #e8f5e9;
  color: #43a047;
}

.badge-fast {
  background: #e3f2fd;
  color: #1976d2;
}

/* Color Selection */
.selection-section {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.selection-header {
  text-align: center;
  margin-bottom: 12px;
}

.selection-badge {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.selection-info {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Team Selection Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.team-option {
  cursor: pointer;
}

.team-option input {
  display: none;
}

.team-card {
  background: transparent;
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  padding: 10px 5px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.team-logo {
  width: 100%;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  transition: transform 0.3s ease;
}

.team-card span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 5px;
}

.team-option input:checked+.team-card {
  background: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.team-option input:checked+.team-card .team-logo {
  transform: scale(1.1);
}

.team-option input:checked+.team-card.bjk {
  border-color: #000;
  background: #f0f0f0;
}

.team-option input:checked+.team-card.fb {
  border-color: #002d72;
  background: #e3f2fd;
}

.team-option input:checked+.team-card.gs {
  border-color: #a90432;
  background: #fff8e1;
}

/* Model Selection Styles */
.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.model-option {
  cursor: pointer;
}

.model-option input {
  display: none;
}


.model-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.model-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.model-card span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.model-option input:checked+.model-card {
  background: #fff;
  border-color: #00bcd4;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.2);
}

/* Color Selection */
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.color-option .color-img.kirmizi {
  background: linear-gradient(180deg, #d32f2f 0%, #f44336 50%, #d32f2f 100%);
}

/* Size Row & Group Styles */
.size-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.size-group {
  flex: 1;
  min-width: 140px;
}

.size-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.child-sizes {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed #e0e0e0;
}

.child-sizes h3 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.child-info {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.child-sizes.hidden {
  display: none;
}

.child-field.hidden {
  display: none;
}

.color-option img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.color-name {
  display: block;
  text-align: center;
  padding: 8px 4px;
  background: #f5f5f5;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
}

.color-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.confirm-selection-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #f44336 0%, #c62828 100%);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.confirm-selection-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

/* Size Selection */
.size-section {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.size-section h3 {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

/* Size Dropdown Styles */
.size-dropdown-wrapper {
  position: relative;
  width: 100%;
}

.size-dropdown {
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: 1.5px solid #e1e8ed;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.size-dropdown:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

.size-dropdown:hover {
  border-color: var(--primary-color);
}

.size-dropdown option {
  background: white;
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 14px;
}

.size-dropdown option:hover,
.size-dropdown option:checked {
  background: var(--primary-color);
}

.size-dropdown-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 14px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.size-dropdown:focus+.size-dropdown-icon {
  transform: translateY(-50%) rotate(180deg);
}

/* Delivery Section */
.delivery-section {
  background: white;
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.delivery-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg-color);
}

.delivery-header i {
  font-size: 20px;
  color: var(--primary-color);
}

.delivery-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.delivery-notice {
  background: transparent;
  padding: 8px 0;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.5;
}

.delivery-notice i {
  color: var(--text-light);
  font-size: 14px;
}

.delivery-notice span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  margin-bottom: 24px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Trust Section */
.trust-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.trust-item i {
  font-size: 24px;
  color: var(--primary-color);
}

.trust-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* Terms Section */
.terms-section {
  background: #fff3e0;
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
}

.terms-section p {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-section a {
  color: var(--primary-color);
  text-decoration: none;
}

.terms-section a:hover {
  text-decoration: underline;
}

.terms-section i {
  color: var(--accent-color);
  margin-right: 4px;
}

/* FAQ Section */
.faq-section {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.faq-section h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-color);
}

.faq-section h3 i {
  color: var(--primary-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  padding-right: 12px;
}

.faq-question i {
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 14px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ============================================
  RESPONSIVE DESIGN - FULL MOBILE SUPPORT
  ============================================ */

/* Extra Large Screens (Desktop) */
@media (min-width: 769px) {
  .container {
    max-width: 520px;
  }

  .hero {
    padding: 48px 24px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-btn {
    padding: 18px 40px;
    font-size: 18px;
  }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .header {
    padding: 14px 0;
  }

  .logo img {
    max-height: 45px;
  }

  .hero {
    padding: 28px 16px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 18px;
  }

  .package-card {
    padding: 14px 16px;
  }

  .package-badge {
    font-size: 13px;
  }

  .new-price {
    font-size: 16px;
  }
}

/* Mobile Large (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header {
    padding: 12px 0;
  }

  .logo img {
    max-height: 40px;
  }

  .hero {
    padding: 24px 12px;
  }

  .hero-badge {
    padding: 5px 16px;
    font-size: 11px;
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .hero-btn {
    padding: 14px 24px;
    font-size: 14px;
    gap: 8px;
    width: 100%;
    justify-content: center;
  }

  .order-section {
    padding: 20px 0 32px;
  }

  .section-header {
    padding: 16px;
    margin-bottom: 20px;
  }

  .section-header h2 {
    font-size: 17px;
  }

  .section-header p {
    font-size: 12px;
  }

  .package-selection {
    gap: 10px;
    margin-bottom: 20px;
  }

  .package-card {
    padding: 12px 14px;
    flex-wrap: wrap;
  }

  .package-badge {
    font-size: 12px;
    flex: 1;
    min-width: 120px;
  }

  .package-badge.popular::after {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .package-price {
    gap: 8px;
  }

  .old-price {
    font-size: 12px;
  }

  .new-price {
    font-size: 15px;
  }

  .package-check {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .selection-section {
    padding: 16px;
    margin-bottom: 20px;
  }

  .selection-badge {
    padding: 6px 16px;
    font-size: 11px;
  }

  .selection-info {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .color-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }

  .color-option .color-img {
    height: 100px;
  }

  .color-option .color-img::before {
    width: 40px;
    height: 55px;
  }

  .color-name {
    font-size: 10px;
    padding: 6px 2px;
  }

  .color-check {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: 5px;
    right: 5px;
  }

  .confirm-selection-btn {
    padding: 12px 16px;
    font-size: 12px;
  }

  .size-section {
    background: white !important;
    padding: 16px;
    margin-bottom: 20px;
  }

  .size-section h3 {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .size-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
  }

  .size-option span {
    padding: 10px 4px;
    font-size: 12px;
  }

  .delivery-section {
    padding: 20px 16px;
    margin-bottom: 20px;
  }

  .delivery-header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .delivery-header i {
    font-size: 24px;
  }

  .delivery-header h3 {
    font-size: 13px;
    text-align: center;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .form-group textarea {
    min-height: 80px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .submit-btn {
    padding: 16px 20px;
    font-size: 16px;
    gap: 10px;
    margin-bottom: 20px;
  }

  .trust-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }

  .trust-item {
    padding: 12px 8px;
    gap: 6px;
  }

  .trust-item i {
    font-size: 20px;
  }

  .trust-item span {
    font-size: 10px;
  }

  .terms-section {
    padding: 14px;
    margin-bottom: 20px;
  }

  .terms-section p {
    font-size: 10px;
  }

  .faq-section {
    padding: 16px;
  }

  .faq-section h3 {
    font-size: 13px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .faq-question {
    padding: 12px 0;
  }

  .faq-question span {
    font-size: 12px;
  }

  .faq-answer p {
    font-size: 12px;
    padding: 0 0 12px;
  }

  .whatsapp-btn {
    width: 54px;
    height: 54px;
    font-size: 28px;
    bottom: 20px;
    right: 16px;
  }
}

/* Mobile Medium (400px and below) */
@media (max-width: 400px) {
  .hero-title {
    font-size: 22px;
  }

  .hero-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .color-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .color-option .color-img {
    height: 110px;
  }

  .color-name {
    font-size: 11px;
    padding: 8px 4px;
  }

  .size-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .size-option span {
    padding: 12px 8px;
    font-size: 13px;
  }

  .trust-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-item {
    flex-direction: row;
    justify-content: center;
    padding: 14px 16px;
  }

  .trust-item i {
    font-size: 22px;
  }

  .trust-item span {
    font-size: 12px;
  }
}

/* Mobile Small (360px and below) */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .logo img {
    max-height: 35px;
  }

  .hero {
    padding: 20px 10px;
  }

  .hero-badge {
    padding: 4px 12px;
    font-size: 10px;
  }

  .hero-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .hero-btn {
    padding: 12px 16px;
    font-size: 12px;
  }

  .section-header h2 {
    font-size: 15px;
  }

  .package-badge {
    font-size: 11px;
  }

  .new-price {
    font-size: 14px;
  }

  .selection-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .confirm-selection-btn {
    font-size: 11px;
    padding: 10px 12px;
  }

  .delivery-header h3 {
    font-size: 12px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 14px 16px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 16px;
    right: 12px;
  }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
  .hero-title {
    font-size: 18px;
  }

  .hero-btn {
    padding: 10px 14px;
    font-size: 11px;
  }

  .package-card {
    padding: 10px 12px;
  }

  .package-badge {
    font-size: 10px;
  }

  .old-price {
    font-size: 10px;
  }

  .new-price {
    font-size: 13px;
  }

  .color-option .color-img {
    height: 90px;
  }

  .size-option span {
    padding: 10px 6px;
    font-size: 12px;
  }

  .submit-btn {
    font-size: 13px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

  .hero-btn:hover,
  .package-card:hover,
  .color-option:hover,
  .size-option:hover span,
  .confirm-selection-btn:hover,
  .submit-btn:hover,
  .whatsapp-btn:hover,
  .modal-btn:hover {
    transform: none;
  }

  .hero-btn:active {
    transform: scale(0.98);
  }

  .submit-btn:active {
    transform: scale(0.98);
  }

  .whatsapp-btn:active {
    transform: scale(0.95);
  }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 16px 12px;
  }

  .hero-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .hero-btn {
    padding: 10px 20px;
  }

  .whatsapp-btn {
    width: 46px;
    height: 46px;
    font-size: 24px;
    bottom: 12px;
    right: 12px;
  }
}

/* Safe Area / Notch Support */
@supports (padding: env(safe-area-inset-bottom)) {
  .whatsapp-btn {
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: calc(16px + env(safe-area-inset-right));
  }

  .order-section {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  max-width: 320px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.modal h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.modal p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.modal-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #00bcd4 0%, #00838f 100%);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn:hover {
  transform: translateY(-2px);
}

/* ==================== */
/* Policy Pages Styles */
/* ==================== */

.page-content {
  padding: 24px 0 40px;
  min-height: calc(100vh - 200px);
  background: #f8f9fa;
}

.page-header {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: var(--radius);
  margin-bottom: 24px;
  color: white;
}

.page-header h1 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page-header h1 i {
  font-size: 28px;
  color: var(--primary-color);
}

.page-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.content-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.content-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.content-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.content-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-card ul li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid #f5f5f5;
}

.content-card ul li:last-child {
  border-bottom: none;
}

.content-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Highlight Box */
.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 188, 212, 0.05) 100%);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.highlight-box.success {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
  border-color: #4caf50;
}

.highlight-box i {
  font-size: 32px;
  color: var(--primary-color);
}

.highlight-box.success i {
  color: #4caf50;
}

.highlight-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.highlight-box p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Steps List */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00bcd4 0%, #00838f 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
}

.step-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-card h2 i {
  color: var(--primary-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item>i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 16px;
}

.contact-info-item .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item span:not(.label) {
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--primary-color);
}

/* Contact Form */
.contact-form {
  margin-top: 16px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 480px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Cargo Logos */
.cargo-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.cargo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f8f8f8;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.cargo-item i {
  color: var(--primary-color);
}

/* Back to Home */
.back-to-home {
  text-align: center;
  margin-top: 30px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}

/* Page Footer */
.page-footer {
  background: #1a1a2e;
  padding: 20px 0;
  text-align: center;
}

.page-footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Active menu item */
.slide-menu-list a.active {
  background: #f0f0f0;
  color: var(--primary-color);
  padding-left: 24px;
}

.slide-menu-list a.active i {
  color: var(--primary-color);
}

/* Logo link style */
.navbar-logo a.logo-text {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* New Selection Styles */
.color-option {
  position: relative;
  cursor: pointer;
  background: white;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.color-option-info {
  padding: 10px 8px;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #f0f0f0;
}

.color-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.team-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 800;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Badge Team Colors */
.bjk-badge {
  background: #000;
  color: #fff;
}

.gs-badge {
  background: #a90432;
  color: #fdb912;
}

.fb-badge {
  background: #002d72;
  color: #fdb912;
}

.product-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  line-height: 1.2;
}

.color-option:hover {
  border-color: var(--primary-color);
}

.color-option.selected {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
  transform: translateY(-3px);
}

.color-option.selected .color-check {
  opacity: 1;
}

.selection-footer {
  padding: 20px 0 10px;
  text-align: center;
}

.confirm-selection-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #00BCD4 0%, #00acc1 100%);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.confirm-selection-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 188, 212, 0.4);
}

.confirm-selection-btn:disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
}

.confirm-selection-btn i {
  font-size: 18px;
}

/* Image Zoom / Lightbox */
.zoom-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 100 !important;
  transition: all 0.3s ease;
  border: none;
  pointer-events: auto !important;
}

.zoom-badge:hover {
  transform: scale(1.1);
  background: var(--primary-color);
  color: white;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 15px;
  font-weight: 600;
}

/*  zel Paket Stilleri */
#custom-package-details {
  background: #f8f9fa;
  border: 2px dashed var(--primary-color);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
  animation: fadeIn 0.3s ease;

}

.custom-pkg-header {
  margin-bottom: 20px;
  text-align: center;

}

.custom-pkg-header label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);

}

.person-count-input {
  width: 100px;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin: 0 auto;
  display: block;

}

.custom-items-container {
  display: flex;
  flex-direction: column;
  gap: 15px;

}

.custom-item-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 15px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  align-items: center;

}

.custom-item-row h4 {
  font-size: 14px;
  color: var(--primary-color);
  margin: 0;

}

.custom-item-row select {
  padding: 8px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  width: 100%;

}

.custom-price-preview {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-color);
  padding: 15px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: var(--radius-sm);

}

@media (max-width: 480px) {
  .custom-item-row {
    grid-template-columns: 1fr;

  }


}

/* Custom Package Enhanced Styles */
/* Header & Container */
#custom-package-details {
  background: #f8fbff;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
  animation: fadeIn 0.4s ease-out;

}

.custom-pkg-header {
  margin-bottom: 30px;
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

}

.custom-pkg-header label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.5px;

}

.person-count-input {
  width: 100%;
  max-width: 200px;
  padding: 12px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #3498db;
  border-radius: 8px;
  color: #2c3e50;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;

}

.person-count-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);

}

/* Person Row (Card) */
.custom-item-row {
  background: white;
  border: 1px solid #e1e8ed;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.2s;

}

.custom-item-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

.custom-item-row h4 {
  font-size: 18px;
  color: #2c3e50;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f2f5;
  display: flex;
  align-items: center;
  gap: 10px;

}

.custom-item-row h4::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: #3498db;
  border-radius: 2px;

}

/* Grid Layout for Selections */
.custom-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;

}

.custom-selection-group {
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.custom-selection-label {
  font-size: 13px;
  font-weight: 600;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;

}

/* Checkbox/Radio Styling for Visual Selection */
.visual-radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;

}

.visual-radio-label {
  cursor: pointer;
  position: relative;
  flex: 1;
  min-width: 80px;

}

.visual-radio-input {
  display: none;

}

.visual-radio-card {
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 0.7;

}

.visual-radio-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 6px;

}

.visual-radio-card span {
  font-size: 12px;
  font-weight: 600;
  color: #34495e;
  line-height: 1.2;

}

/* Selected State */
.visual-radio-input:checked+.visual-radio-card {
  border-color: #3498db;
  background: #f0f9ff;
  opacity: 1;
  /* Make selected fully opaque */
  transform: scale(1.05);
  /* Slight pop */
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);

}

.visual-radio-input:checked+.visual-radio-card span {
  color: #3498db;

}

/* Color Options Specifics */
.color-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 8px;

}

.color-radio-card {
  border: 2px solid #e1e8ed;
  border-radius: 6px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.2s;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.color-radio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;

}

.color-radio-input:checked+.color-radio-card {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
  transform: scale(1.1);

}

/* Size Dropdown Styling */
.custom-size-select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 15px;
  color: #2c3e50;
  background-color: white;
  cursor: pointer;

}

.custom-size-select:focus {
  border-color: #3498db;
  outline: none;

}

/* Price Preview */
.custom-price-preview {
  background: #2c3e50;
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.custom-price-preview span {
  font-size: 24px;
  color: #2ecc71;

}

/* Responsive */
@media (max-width: 768px) {
  .custom-selection-grid {
    grid-template-columns: 1fr;

  }

  .visual-radio-group {
    justify-content: space-between;

  }


}



/* Social Media Floating Buttons */
.social-buttons-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  z-index: 9999;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
  background-color: #25d366;
}

.whatsapp-btn:hover {
  background-color: #20b858;
}

.instagram-btn {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Helper Classes */
.hidden {
  display: none !important;
}

/* Section Highlight Animation for Auto-Scroll */
.section-highlight {
  animation: sectionPulse 1.5s ease-out;
}

@keyframes sectionPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  }

  25% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0.05);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.02);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Selection section animation entrance */
.selection-section {
  transition: all 0.4s ease-out;
}

.selection-section:not(.hidden) {
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delivery section animation */
.delivery-section {
  transition: all 0.4s ease-out;
}

.delivery-section.section-highlight {
  border-color: var(--primary-color) !important;
}

.hidden {
  display: none !important;

}