/* ==========================================================================
   MÄ°X MÄ°NERAL - DESIGN SYSTEM & CAROUSEL SLIDER STYLESHEET
   ========================================================================== */

:root {
  --primary-navy: #003566;
  --primary-blue: #004B93;
  --accent-cyan: #00A8FF;
  --accent-light-blue: #E6F4FE;
  --accent-green: #2ECC71;
  --accent-magenta: #E91E63;
  --dark-bg: #001E3D;
  --light-bg: #F8F9FA;
  --border-color: #E2E8F0;
  --text-main: #2D3748;
  --text-muted: #64748B;
  --white: #FFFFFF;
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 53, 102, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 53, 102, 0.14);
  --shadow-glow: 0 0 25px rgba(0, 168, 255, 0.35);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 60px 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-cyan);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 168, 255, 0.3);
}

.btn-primary:hover {
  background: #008AD6;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

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

.btn-outline {
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background-color: #002855;
  color: #D0E1F9;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-features {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-features i {
  color: var(--accent-cyan);
  margin-right: 4px;
}

.top-bar-features .divider {
  opacity: 0.3;
}

.top-bar-social {
  display: flex;
  gap: 14px;
}

.top-bar-social a {
  color: #A0C4E8;
  font-size: 0.9rem;
}

.top-bar-social a:hover {
  color: var(--accent-cyan);
}

/* MAIN HEADER */
.main-header {
  background-color: var(--white);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.02);
}

.search-box {
  flex: 1;
  max-width: 540px;
  position: relative;
}

.search-box form {
  display: flex;
  border: 2px solid var(--accent-cyan);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.search-box button {
  background: var(--accent-cyan);
  color: var(--white);
  padding: 0 22px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.search-box button:hover {
  background: #0088D1;
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: 4px;
  max-height: 350px;
  overflow-y: auto;
  z-index: 200;
  display: none;
}

.search-results-dropdown.active {
  display: block;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}

.search-item:hover {
  background: var(--accent-light-blue);
}

.search-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.search-item-info h5 {
  font-size: 0.88rem;
  color: var(--primary-navy);
}

.search-item-info p {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary-navy);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.action-btn:hover {
  background: var(--accent-light-blue);
}

.action-icon {
  font-size: 1.4rem;
  color: var(--primary-navy);
}

.icon-wrap {
  position: relative;
}

.badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent-cyan);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.action-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.action-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.mobile-toggle {
  display: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--primary-navy);
}

/* NAVIGATION BAR */
.main-nav {
  background-color: var(--primary-navy);
  color: var(--white);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cat-dropdown {
  position: relative;
}

.cat-dropdown-btn {
  background: var(--accent-cyan);
  color: var(--white);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.cat-dropdown-btn:hover {
  background: #0088D1;
}

.cat-dropdown-btn .arrow {
  margin-left: auto;
  font-size: 0.8rem;
}

.cat-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 150;
  display: none;
  border: 1px solid var(--border-color);
}

.cat-dropdown-menu.show {
  display: block;
}

.cat-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  border-bottom: 1px solid #F1F5F9;
}

.cat-dropdown-menu li a i {
  color: var(--accent-cyan);
  width: 18px;
}

.cat-dropdown-menu li a:hover {
  background: var(--accent-light-blue);
  color: var(--accent-cyan);
  padding-left: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #E2E8F0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a.active, .nav-links a:hover {
  color: var(--accent-cyan);
}

.sub-arrow {
  font-size: 0.7rem;
}

.phone-pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-pill:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

/* ULTRA PROFESSIONAL MULTI-SLIDE CAROUSEL SLIDER */
.slider-section {
  position: relative;
  background: linear-gradient(135deg, #001A35 0%, #003566 50%, #004B93 100%);
  overflow: hidden;
  color: var(--white);
}

.slider-wrapper {
  position: relative;
  min-height: 520px;
}

.slide-item {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(0.98);
  padding: 60px 0 80px;
  display: flex;
  align-items: center;
}

.slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
}

.slide-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 168, 255, 0.2);
  border: 1px solid rgba(0, 168, 255, 0.4);
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}

.slide-title .highlight {
  background: linear-gradient(90deg, #00A8FF, #00FFC6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-desc {
  font-size: 1.08rem;
  color: #E2E8F0;
  margin-bottom: 30px;
  max-width: 520px;
  line-height: 1.6;
}

.slide-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 35px;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-feat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.feat-icon {
  background: rgba(0, 168, 255, 0.2);
  color: var(--accent-cyan);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feat-text strong {
  display: block;
  font-size: 0.84rem;
  color: var(--white);
}

.feat-text span {
  font-size: 0.72rem;
  color: #CBD5E1;
}

/* TAILOR-MADE LAYERED HERO SHOWCASE COMPONENT */
.hero-showcase-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.glow-bg {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.45) 0%, rgba(0, 75, 147, 0) 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(25px);
  z-index: 1;
  animation: pulse-glow 3.5s ease-in-out infinite alternate;
}

.glow-green {
  background: radial-gradient(circle, rgba(46, 204, 113, 0.45) 0%, rgba(0, 75, 147, 0) 70%);
}

@keyframes pulse-glow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.bottles-group {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.bottle-item {
  position: relative;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.bottle-item:hover {
  transform: translateY(-12px) scale(1.06);
  z-index: 10 !important;
}

.bottle-item.b-1 { transform: rotate(-6deg) translateX(35px); z-index: 3; }
.bottle-item.b-2 { transform: translateY(-18px) scale(1.08); z-index: 5; }
.bottle-item.b-3 { transform: rotate(6deg) translateX(-35px); z-index: 2; }

.canister-body {
  width: 155px;
  height: 255px;
  border-radius: 22px 22px 14px 14px;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), inset 0 2px 12px rgba(255, 255, 255, 0.5), inset -6px -6px 18px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 28px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.c-yellow { background: linear-gradient(135deg, #FFF9C4 0%, #F1C40F 60%, #B7950B 100%); }
.c-purple { background: linear-gradient(135deg, #F3E5F5 0%, #9B59B6 60%, #512E5F 100%); }
.c-blue { background: linear-gradient(135deg, #E0F7FA 0%, #00A8FF 60%, #004B93 100%); }
.c-pink { background: linear-gradient(135deg, #FCE4EC 0%, #E91E63 60%, #880E4F 100%); }
.c-teal { background: linear-gradient(135deg, #E0F2F1 0%, #00BFA5 60%, #004D40 100%); }

.canister-cap {
  position: absolute;
  top: -12px;
  width: 56px;
  height: 18px;
  background: #002855;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.canister-handle {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 22px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}

.bottle-label {
  width: 84%;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 12px 6px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  border: 1px solid #E2E8F0;
}

.lbl-brand {
  font-size: 0.64rem;
  font-weight: 900;
  color: #003566;
  letter-spacing: 1px;
}

.lbl-name {
  font-size: 0.74rem;
  font-weight: 800;
  color: #00A8FF;
  margin: 3px 0;
  line-height: 1.1;
}

.lbl-vol {
  font-size: 0.6rem;
  font-weight: 700;
  color: #64748B;
  background: #F1F5F9;
  border-radius: 4px;
  padding: 2px 5px;
  display: inline-block;
}

/* Floating Badges */
.float-badge {
  position: absolute;
  background: rgba(0, 30, 61, 0.88);
  border: 1px solid rgba(0, 168, 255, 0.45);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 10px 18px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  animation: float 4s ease-in-out infinite;
}

.fb-top-right {
  top: 15px;
  right: 0px;
  animation-delay: 0s;
}

.fb-bottom-left {
  bottom: 15px;
  left: 0px;
  animation-delay: 2s;
}

.float-badge i {
  font-size: 1.4rem;
  color: #00A8FF;
  background: rgba(0, 168, 255, 0.18);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-badge strong {
  display: block;
  font-size: 0.84rem;
  color: #FFFFFF;
}

.float-badge span {
  display: block;
  font-size: 0.72rem;
  color: #CBD5E1;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 30, 61, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  width: 32px;
  border-radius: 12px;
  background: var(--accent-cyan);
}

/* CATEGORIES SECTION */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent-cyan);
  margin-top: 6px;
  border-radius: 2px;
}

.view-all-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.cat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}

.cat-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: #F0F7FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
}

.cat-card:hover .cat-icon-wrap {
  background: var(--accent-cyan);
  color: var(--white);
}

.cat-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
}

/* SUB BANNERS SECTION */
.sub-banners-section {
  padding: 40px 0;
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.banner-card {
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background-size: cover;
  background-position: center;
}

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

.banner-content {
  max-width: 75%;
  z-index: 2;
  color: var(--white);
}

.banner-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.banner-content p {
  font-size: 0.85rem;
  opacity: 0.95;
  margin-bottom: 16px;
}

.banner-btn {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  display: inline-block;
}

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

.banner-badge-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
}

/* FEATURED PRODUCTS */
.product-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--border-color);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--accent-cyan);
  color: var(--white);
  border-color: var(--accent-cyan);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #BEE3F8;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-cyan);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

.product-fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  border: 1px solid var(--border-color);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  z-index: 2;
}

.product-fav-btn.active {
  color: var(--accent-magenta);
  border-color: var(--accent-magenta);
}

.product-img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 6px;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: var(--transition);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
  line-height: 1.35;
  height: 42px;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #F1C40F;
  margin-bottom: 12px;
}

.product-rating span {
  color: var(--text-muted);
  margin-left: 4px;
}

.product-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.product-add-btn {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--accent-cyan);
  color: var(--accent-cyan);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.product-add-btn:hover {
  background: var(--accent-cyan);
  color: var(--white);
}

/* DARK STATS SECTION */
.dark-stats-section {
  background: linear-gradient(135deg, #001E3D 0%, #003566 100%);
  color: var(--white);
  padding: 80px 0;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.stats-info .sub-label {
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.stats-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 10px 0 20px;
}

.stats-info p {
  color: #CBD5E1;
  font-size: 1rem;
  margin-bottom: 30px;
}

.stats-counters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-icon {
  font-size: 2rem;
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
}

.stat-title {
  font-size: 0.88rem;
  color: #94A3B8;
}

/* SERVICE HIGHLIGHTS */
.service-highlights {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light-blue);
  color: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.service-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.service-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* NEWSLETTER */
.newsletter-section {
  padding: 60px 0;
}

.newsletter-box {
  background: linear-gradient(135deg, #003566 0%, #005691 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-icon {
  font-size: 2.5rem;
  color: var(--accent-cyan);
}

.newsletter-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  width: 450px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
}

.newsletter-form button {
  background: var(--accent-cyan);
  color: var(--white);
  padding: 0 24px;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

/* FOOTER */
.main-footer {
  background: #001830;
  color: #A0AEC0;
  padding-top: 60px;
  font-size: 0.88rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-contact ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  background: #001224;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* FLOATING ELEMENTS */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--primary-navy);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  z-index: 999;
  animation: pulse-wa 2s infinite;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #2D3748;
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* CART DRAWER & MODALS */
.cart-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8FAFC;
}

.close-btn { background: transparent; font-size: 1.8rem; }
.cart-body { flex: 1; padding: 20px; overflow-y: auto; }

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; }
.cart-item-details { flex: 1; }
.cart-item-title { font-size: 0.88rem; font-weight: 700; color: var(--primary-navy); }
.cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--accent-cyan); }
.cart-qty-ctrl { display: flex; align-items: center; gap: 8px; }
.cart-qty-ctrl button { width: 24px; height: 24px; background: var(--border-color); border-radius: 4px; }

.cart-footer { padding: 20px; border-top: 1px solid var(--border-color); background: #F8FAFC; }
.cart-summary { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: var(--primary-navy); }

.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
}

.modal.active { opacity: 1; pointer-events: auto; }

.modal-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.close-modal { position: absolute; top: 16px; right: 18px; font-size: 1.8rem; background: transparent; }
.modal-header { text-align: center; margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border-color); border-radius: var(--radius-sm); }

.toast-container { position: fixed; bottom: 30px; left: 30px; z-index: 1200; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--primary-navy); color: var(--white); padding: 12px 20px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 10px; border-left: 4px solid var(--accent-cyan); }

@media (max-width: 1024px) {
  .slide-container { grid-template-columns: 1fr; text-align: center; }
  .slide-desc { margin: 0 auto 30px; }
  .slide-actions { justify-content: center; }
  .banners-grid { grid-template-columns: 1fr; }
  .stats-wrapper { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-showcase-wrap { height: 320px; margin-top: 30px; }
  .canister-body { width: 120px; height: 200px; }
}

@media (max-width: 768px) {
  .top-bar, .search-box, .hide-mobile { display: none; }
  .mobile-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--primary-navy); flex-direction: column; padding: 20px; }
  .nav-links.show { display: flex; }
  .slide-title { font-size: 2.2rem; }
  .newsletter-box { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; flex-direction: column; }
  .footer-content { grid-template-columns: 1fr; }
}
/* REAL PRODUCT PHOTOS TRIO COMPONENT */
.real-products-trio {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -15px;
  width: 100%;
  max-width: 480px;
}

.trio-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 20px 45px rgba(0, 20, 45, 0.45), 0 0 25px rgba(0, 168, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0.4s ease;
  width: 155px;
  height: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.trio-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.trio-card:hover {
  transform: translateY(-14px) scale(1.08) !important;
  z-index: 10 !important;
  box-shadow: 0 25px 50px rgba(0, 168, 255, 0.45);
}

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

.t-left {
  transform: rotate(-7deg) translateX(25px);
  z-index: 3;
}

.t-center {
  transform: translateY(-16px) scale(1.1);
  z-index: 5;
}

.t-right {
  transform: rotate(7deg) translateX(-25px);
  z-index: 2;
}

.trio-badge {
  background: #003566;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 6px;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}