/* ===== GOOGLE FONTS ===== */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");

/* ===== CSS VARIABLES ===== */
:root {
  /* Backgrounds */
  --bg-primary: #050a18;
  --bg-secondary: #0a1225;
  --bg-tertiary: #0f1a35;
  --bg-card: rgba(15, 26, 53, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.03);

  /* Accent Colors — Deep Purple + Electric Violet */
  --accent-primary: #8b5cf6;
  --accent-secondary: #06b6d4;
  --accent-tertiary: #f43f5e;
  --accent-gradient: linear-gradient(135deg, #8b5cf6, #06b6d4);
  --accent-gradient-hover: linear-gradient(135deg, #a78bfa, #22d3ee);
  --accent-glow: rgba(139, 92, 246, 0.4);

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: rgba(241, 245, 249, 0.65);
  --text-muted: rgba(241, 245, 249, 0.35);

  /* Borders & Shadows */
  --border-color: rgba(139, 92, 246, 0.1);
  --border-glow: rgba(139, 92, 246, 0.25);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(139, 92, 246, 0.25);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  background-image: url("https://images.unsplash.com/photo-1437252611977-07f74518abd7?q=80&w=1920&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
}

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* global animated background mesh */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(5, 10, 24, 0.55) 0%, rgba(5, 10, 24, 0.45) 50%, rgba(5, 10, 24, 0.6) 100%),
    radial-gradient(ellipse 600px 600px at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 60%, rgba(6, 182, 212, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 50% 90%, rgba(244, 63, 94, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: meshShift 20s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% {
    background:
      linear-gradient(180deg, rgba(5, 10, 24, 0.55) 0%, rgba(5, 10, 24, 0.45) 50%, rgba(5, 10, 24, 0.6) 100%),
      radial-gradient(ellipse 600px 600px at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 70%),
      radial-gradient(ellipse 500px 500px at 80% 60%, rgba(6, 182, 212, 0.06) 0%, transparent 70%),
      radial-gradient(ellipse 400px 400px at 50% 90%, rgba(244, 63, 94, 0.04) 0%, transparent 70%);
  }

  100% {
    background:
      linear-gradient(180deg, rgba(5, 10, 24, 0.55) 0%, rgba(5, 10, 24, 0.45) 50%, rgba(5, 10, 24, 0.6) 100%),
      radial-gradient(ellipse 600px 600px at 40% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 70%),
      radial-gradient(ellipse 500px 500px at 20% 30%, rgba(6, 182, 212, 0.06) 0%, transparent 70%),
      radial-gradient(ellipse 400px 400px at 70% 10%, rgba(244, 63, 94, 0.04) 0%, transparent 70%);
  }
}

section,
header,
footer {
  position: relative;
  z-index: 1;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 60px 0;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  filter: blur(5px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  filter: blur(0);
}

/* Floating Shapes Background */
.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  filter: blur(60px);
  opacity: 0.15;
  border-radius: 50%;
  animation: floatAround 25s infinite alternate ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-primary);
  top: -10%;
  left: -10%;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: var(--accent-secondary);
  bottom: 20%;
  right: -5%;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-tertiary);
  top: 40%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes floatAround {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(100px, 50px) rotate(15deg);
  }
}

/* Specific reveal variants */
.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal.reveal-left.visible,
.reveal.reveal-right.visible,
.reveal.reveal-scale.visible {
  transform: translate(0) scale(1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.heading_center {
  text-align: center;
}

.heading_center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ===== ANIMATED NOISE GRAIN OVERLAY ===== */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.015;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ===== HEADER / NAVIGATION ===== */
.header_section {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition-med);
}

.innerpage_header {
  position: relative;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

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

.navbar-brand span {
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.navbar-brand span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0.5;
  border-radius: 1px;
}

/* Menu button */
.custom_menu-btn {
  position: relative;
}

.custom_menu-btn button {
  margin: 0;
  padding: 12px;
  width: 52px;
  height: 52px;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 999;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.custom_menu-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-glow);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.custom_menu-btn button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.menu_btn-style button span.s-1 {
  transform: rotate(45deg) translate(3px, 3px);
}

.menu_btn-style button span.s-2 {
  opacity: 0;
}

.menu_btn-style button span.s-3 {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Overlay nav */
.overlay {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  background: rgba(5, 10, 24, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  overflow-x: hidden;
  transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}

.overlay-content {
  position: relative;
  top: 18%;
  width: 100%;
  text-align: center;
}

.overlay-content a {
  padding: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: block;
  transition: var(--transition-med);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.overlay-content a:hover {
  color: var(--accent-primary);
  transform: translateX(10px);
  text-shadow: 0 0 30px var(--accent-glow);
}

.menu_width {
  width: 100%;
}

/* ===== HERO / SLIDER SECTION ===== */
.slider_section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slider_section .slider_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider_section .slider_bg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25) saturate(0.6);
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.slider_section .slider_bg_box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 24, 0.7) 0%, rgba(5, 10, 24, 0.4) 40%, rgba(5, 10, 24, 0.85) 100%),
    linear-gradient(90deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 2;
}

/* Animated grid lines on hero */
.slider_section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

.slider_section .detail-box {
  position: relative;
  z-index: 4;
  color: #ffffff;
  padding: 60px 0;
}

.slider_section .detail-box h1 {
  font-weight: 900;
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 1.05;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease-out;
}

.slider_section .detail-box h1 span.highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slider_section .detail-box p {
  width: 70%;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.9;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slider_section .detail-box .slider-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 45px;
  background: var(--accent-gradient);
  color: #ffffff;
  border-radius: 50px;
  border: none;
  transition: var(--transition-med);
  margin-top: 35px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 25px var(--accent-glow);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  position: relative;
  overflow: hidden;
}

.slider_section .detail-box .slider-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-gradient-hover);
  opacity: 0;
  transition: opacity var(--transition-med);
  border-radius: 50px;
}

.slider_section .detail-box .slider-link:hover::before {
  opacity: 1;
}

.slider_section .detail-box .slider-link:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-glow-strong);
}

.slider_section .detail-box .slider-link:active {
  transform: translateY(-2px) scale(0.98);
}

.slider_section .detail-box .slider-link span {
  position: relative;
  z-index: 1;
}

.slider_section .detail-box .slider-link i {
  position: relative;
  z-index: 1;
}

/* Floating orbs behind hero */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: float 15s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.12);
  top: 10%;
  left: -5%;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.08);
  bottom: 10%;
  right: -5%;
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.1);
  }

  100% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

/* ===== SHOP / PRODUCTS SECTION ===== */
.shop_section {
  background: var(--bg-primary);
}

.shop_section .box {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 30px;
  padding-bottom: 20px;
  transition: var(--transition-med);
  position: relative;
  box-shadow: var(--shadow-md);
}

.shop_section .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-med);
  pointer-events: none;
  z-index: 1;
}

.shop_section .box:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
}

.shop_section .box::after {
  content: "View Details";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 10px;
  background: var(--accent-gradient);
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  transform: translateY(100%);
  transition: var(--transition-med);
  z-index: 10;
}

.shop_section .box:hover::after {
  transform: translateY(0);
}

.shop_section .box .img-box {
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 260px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  transition: var(--transition-med);
}

.shop_section .box:hover .img-box {
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.shop_section .box .img-box img {
  max-height: 200px;
  max-width: 100%;
  transition: var(--transition-slow);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.shop_section .box:hover .img-box img {
  transform: scale(1.1) rotate(2deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.shop_section .box .detail-box {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.shop_section .box .detail-box h6 {
  text-transform: capitalize;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

.shop_section .box .detail-box h6 span {
  display: block;
  margin-top: 5px;
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.shop_section .box .new {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}

.shop_section .box .new span {
  padding: 4px 14px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.shop_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.shop_section .btn-box a {
  padding: 14px 50px;
  background: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-med);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.shop_section .btn-box a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--accent-gradient);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.shop_section .btn-box a:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.shop_section .btn-box a:hover::before {
  width: 300%;
  height: 300%;
}

/* ===== ABOUT SECTION ===== */
.about_section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Decorative blurred shape */
.about_section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: 0;
}

.about_section .row {
  align-items: center;
}

.about_section .img-box {
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about_section .img-box img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: var(--transition-slow);
}

.about_section .img-box:hover img {
  transform: scale(1.03);
}

.about_section .img-box::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--accent-primary);
  border-left: 3px solid var(--accent-primary);
  border-radius: var(--radius-sm) 0 0 0;
  z-index: 5;
  transition: var(--transition-med);
}

.about_section .img-box::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--accent-secondary);
  border-right: 3px solid var(--accent-secondary);
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 5;
  transition: var(--transition-med);
}

.about_section .img-box:hover::before {
  width: 100px;
  height: 100px;
}

.about_section .img-box:hover::after {
  width: 100px;
  height: 100px;
}

.about_section .detail-box {
  padding-left: 30px;
  position: relative;
  z-index: 1;
}

.about_section .detail-box p {
  color: var(--text-secondary);
  margin-top: 20px;
  line-height: 1.9;
}

.about_section .detail-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  padding: 14px 40px;
  background: var(--accent-gradient);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: var(--transition-med);
}

.about_section .detail-box a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--accent-glow);
}

/* ===== OFFER SECTION ===== */
.offer_section {
  background: var(--bg-primary);
}

.offer_section .box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.offer_section .row>div {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.offer_section .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  filter: brightness(0.5) saturate(0.8);
}

.offer_section .box:hover img {
  transform: scale(1.08);
  filter: brightness(0.35) saturate(0.6);
}

.offer_section .box .detail-box {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(5, 10, 24, 0.6), rgba(5, 10, 24, 0.2));
  transition: var(--transition-med);
  padding: 20px;
}

.offer_section .box:hover .detail-box {
  background: linear-gradient(135deg, rgba(5, 10, 24, 0.75), rgba(5, 10, 24, 0.4));
}

.offer_section .box .detail-box h2 {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-align: center;
}

.offer_section .box .detail-box a {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  transition: var(--transition-med);
}

.offer_section .box .detail-box a:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.offer_section .offer-box1 {
  min-height: 500px;
  margin: 5px;
}

.offer_section .offer-box2 {
  min-height: 245px;
  margin: 5px;
}

.offer_section .offer-box3 {
  min-height: 245px;
  margin: 5px;
}

/* ===== BLOG SECTION ===== */
.blog_section {
  background: var(--bg-secondary);
}

.blog_section .box {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 25px;
  transition: var(--transition-med);
}

.blog_section .box:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.blog_section .box .img-box {
  position: relative;
  overflow: hidden;
}

.blog_section .box .img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-med);
  filter: brightness(0.7);
}

.blog_section .box:hover .img-box img {
  transform: scale(1.05);
  filter: brightness(0.55);
}

.blog_section .box .blog_date {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--accent-gradient);
  color: #fff;
  padding: 12px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px var(--accent-glow);
  border: 3px solid var(--bg-card);
  z-index: 5;
}

.blog_section .box .detail-box {
  padding: 30px 25px 25px;
}

.blog_section .box .detail-box h5 {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.blog_section .box .detail-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog_section .box .detail-box a {
  color: var(--accent-primary);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.blog_section .box .detail-box a:hover {
  color: var(--accent-secondary);
  gap: 10px;
}

/* ===== CLIENT / TESTIMONIAL SECTION ===== */
.client_section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.client_section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
}

.client_section .box {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  margin: 45px 25px;
  transition: var(--transition-med);
}

.client_section .box .img-box {
  min-width: 100px;
  max-width: 100px;
  margin-right: 30px;
}

.client_section .box .img-box img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background-image: var(--accent-gradient);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 0 20px var(--accent-glow);
}

.client_section .box .detail-box {
  display: flex;
  flex-direction: column;
}

.client_section .box .detail-box .name h6 {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.client_section .box .detail-box p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  font-style: italic;
}

.client_section .box .detail-box i.fa-quote-left {
  color: var(--accent-primary);
  font-size: 1.5rem;
  margin-top: 15px;
  opacity: 0.3;
}

.carousel_btn-container {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  opacity: 1;
  transition: var(--transition-med);
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: scale(1.1);
}

/* ===== INFO / FOOTER SECTION ===== */
.info_section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.info_section h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.info_form_social_row {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.info_section .info_form form {
  display: flex;
  align-items: stretch;
}

.info_section .info_form form input {
  flex: 1;
  background: var(--bg-glass);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-color);
  border-radius: 50px 0 0 50px;
  color: var(--text-primary);
  padding: 12px 25px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.info_section .info_form form input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.info_section .info_form form input::placeholder {
  color: var(--text-muted);
}

.info_section .info_form form button {
  padding: 12px 25px;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: var(--transition-med);
}

.info_section .info_form form button:hover {
  box-shadow: 0 4px 20px var(--accent-glow);
}

.info_section .social_box {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.info_section .social_box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 16px;
  transition: var(--transition-med);
}

.info_section .social_box a:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.info_main_row {
  padding-top: 10px;
}

.info_section .info_links_menu a {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.info_section .info_links_menu a:hover {
  color: var(--accent-primary);
  padding-left: 5px;
}

.info_section .info_insta .insta_box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info_section .info_insta .insta_box .img-box {
  width: 70px;
  min-width: 70px;
  margin-right: 15px;
}

.info_section .info_insta .insta_box .img-box img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.info_section .info_insta .insta_box p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.info_section .info_detail p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.info_section .info_contact a {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.info_section .info_contact a:hover {
  color: var(--accent-primary);
}

.info_section .info_contact a i {
  margin-right: 10px;
  color: var(--accent-primary);
  width: 20px;
  text-align: center;
  font-size: 14px;
}

.footer_section {
  background: var(--bg-primary);
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid var(--border-color);
}

.footer_section p {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ===== SCROLL-TRIGGERED REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 20px var(--accent-glow);
  }

  50% {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.35);
  }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* ===== TELEBIRR PAYMENT MODAL ===== */
.payment-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.payment-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 40px var(--accent-glow);
}

.payment-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition-fast);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.payment-modal-close:hover {
  color: var(--accent-primary);
  background: var(--bg-glass);
}

.telebirr-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.telebirr-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.telebirr-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0095DA, #00B74F);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
}

.telebirr-logo .logo-text {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #0095DA, #00B74F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.telebirr-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.payment-product-info {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-product-info .product-name {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.payment-product-info .product-price {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-primary);
}

.payment-steps {
  margin-bottom: 25px;
}

.payment-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.payment-step .step-number {
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0095DA, #00B74F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.payment-step .step-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-top: 4px;
}

.payment-step .step-text strong {
  color: var(--text-primary);
}

.telebirr-account {
  background: linear-gradient(135deg, rgba(0, 149, 218, 0.08), rgba(0, 183, 79, 0.08));
  border: 1px solid rgba(0, 149, 218, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 25px;
}

.telebirr-account .account-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.telebirr-account .account-number {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #0095DA, #00B74F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.telebirr-account .account-name {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(0, 149, 218, 0.3);
  color: #0095DA;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  margin-top: 10px;
  transition: var(--transition-fast);
}

.copy-btn:hover {
  background: rgba(0, 149, 218, 0.1);
}

.copy-btn.copied {
  color: #00B74F;
  border-color: #00B74F;
}

.payment-form {
  margin-bottom: 20px;
}

.payment-form label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-form input {
  width: 100%;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
  margin-bottom: 15px;
}

.payment-form input:focus {
  border-color: #0095DA;
  box-shadow: 0 0 10px rgba(0, 149, 218, 0.15);
}

.payment-form input::placeholder {
  color: var(--text-muted);
}

.payment-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0095DA, #00B74F);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-med);
  box-shadow: 0 4px 20px rgba(0, 149, 218, 0.3);
}

.payment-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 149, 218, 0.4);
}

.payment-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.payment-success.active {
  display: block;
}

.payment-success .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0095DA, #00B74F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: #fff;
  animation: pulse 2s infinite;
}

.payment-success h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #00B74F;
  margin-bottom: 10px;
}

.payment-success p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Buy Button */
.shop_section .box .buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 40px);
  margin: 15px auto 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.shop_section .box .buy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, #0095DA, #00B74F);
  transition: 0.3s;
  z-index: -1;
}

.shop_section .box .buy-btn:hover {
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 183, 79, 0.3);
  z-index: 1;
}

.shop_section .box .buy-btn:hover::before {
  width: 100%;
}

.shop_section .box .buy-btn i {
  margin-right: 0;
  font-size: 1.1rem;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 8px;
  padding-left: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-badge .telebirr-dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #0095DA, #00B74F);
  border-radius: 50%;
}

/* ===== USSD PUSH PAYMENT STYLES ===== */
.payment-tabs-container {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 25px;
}

.payment-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.payment-tab.active {
  background: var(--bg-card);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

.order-id-box {
  background: rgba(0, 149, 218, 0.1);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 25px;
  border: 1px dashed rgba(0, 149, 218, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.order-id-box p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.order-id-box strong {
  color: var(--text-primary);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.tab-instruction {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.phone-input-group {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 5px 15px;
  margin-bottom: 20px;
}

.phone-input-group:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(0, 149, 218, 0.2);
}

.phone-input-group .prefix {
  color: var(--text-muted);
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 15px;
  margin-right: 15px;
}

.phone-input-group input {
  border: none;
  background: transparent;
  padding: 10px 0;
  margin: 0;
  box-shadow: none !important;
}

/* USSD Loader */
.ussd-loader {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  text-align: center;
}

.ussd-loader.active {
  display: flex;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: #00B74F;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.timer-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin-top: 15px;
  overflow: hidden;
  position: relative;
}

.timer-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #0095DA, #00B74F);
  animation: progress 8s linear forwards;
}

@keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Drill Down Styles */
.category-box {
  cursor: pointer;
}

#backBtnContainer {
  text-align: left;
  padding-left: 15px;
}

#backBtnContainer button {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition-med);
}

#backBtnContainer button:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  transform: translateX(-5px);
}

#backBtnContainer button i {
  margin-right: 8px;
}

/* ===== SHOPPING CART UI (PREMIUM) ===== */
.cart-icon-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatCart 3s ease-in-out infinite;
}

@keyframes floatCart {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.cart-icon-container:hover {
  transform: scale(1.1) rotate(-5deg);
  animation: none;
}

.cart-btn-fab {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0095DA, #00B74F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 183, 79, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 26px;
  backdrop-filter: blur(5px);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff4757;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
  box-shadow: 0 2px 10px rgba(255, 71, 87, 0.4);
}

/* Cart Modal / Sidebar */
.cart-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 24, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.cart-sidebar {
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: rgba(15, 31, 58, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-modal-overlay.active .cart-sidebar {
  transform: translateX(0);
}

.cart-header {
  padding: 25px;
  background: linear-gradient(to right, rgba(0, 149, 218, 0.1), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.close-cart-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-cart-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 25px;
}

/* Scrollbar for cart */
.cart-items::-webkit-scrollbar {
  width: 5px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cart-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.cart-item:hover::before {
  opacity: 1;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.cart-item-price {
  color: var(--accent-primary);
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(0, 149, 218, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

.remove-item-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.remove-item-btn:hover {
  background: #ff4757;
  color: #fff;
  border-color: #ff4757;
  transform: scale(1.1);
}

.cart-footer {
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 10, 24, 0.8);
  backdrop-filter: blur(10px);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.cart-total span:first-child {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.cart-total span:last-child {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 183, 79, 0.4);
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #0095DA, #00B74F);
  color: white;
  text-align: center;
  border: none;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 183, 79, 0.3);
  position: relative;
  overflow: hidden;
}

.checkout-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.checkout-btn:hover {
  box-shadow: 0 15px 40px rgba(0, 183, 79, 0.5);
  transform: translateY(-3px);
}

.checkout-btn:hover::after {
  left: 100%;
}

/* Empty Cart State */
.empty-cart-msg {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty-cart-msg i {
  font-size: 60px;
  margin-bottom: 20px;
  opacity: 0.3;
  color: var(--accent-primary);
}

.empty-cart-msg p {
  font-size: 1.1rem;
}

/* Checkout Form Modal (Enhanced) */
.checkout-modal-content {
  background: rgba(15, 31, 58, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 24px;
  width: 90%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
  position: relative;
  animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Input enhancements */
.payment-form input {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  font-size: 1rem;
  color: #fff;
}

.payment-form input:focus {
  background: rgba(0, 0, 0, 0.4);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(0, 149, 218, 0.2);
}

/* ===== CHATBOT STYLES ===== */
.chat-custom-icon {
  position: fixed;
  bottom: 30px;
  left: 30px;
  /* Moved to Left */
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-primary);
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.chat-custom-icon:hover {
  transform: scale(1.1);
  color: #fff;
  background: var(--accent-gradient);
  border-color: transparent;
}

.chat-notification-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background: #00B74F;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  animation: pulse 2s infinite;
}

.chat-widget {
  position: fixed;
  bottom: 100px;
  left: 30px;
  /* Aligned Left */
  width: 350px;
  height: 500px;
  background: rgba(15, 31, 58, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: scale(0);
  transform-origin: bottom left;
  /* Origin Left */
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  pointer-events: none;
}

.chat-widget.active {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Responsive Chat */
@media (max-width: 480px) {
  .chat-widget.active {
    left: 5%;
    bottom: 90px;
    width: 90%;
  }
}

.chat-header {
  padding: 15px 20px;
  background: linear-gradient(90deg, rgba(0, 149, 218, 0.1), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 20px 20px 0 0;
}

.chat-avatar {
  position: relative;
}

.chat-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.online-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #00B74F;
  border-radius: 50%;
  border: 2px solid var(--bg-secondary);
}

.chat-title h4 {
  font-size: 1rem;
  margin: 0;
  color: #fff;
  font-family: "Outfit", sans-serif;
}

.chat-title p {
  font-size: 0.75rem;
  margin: 0;
  color: var(--text-muted);
}

.close-chat-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
}

.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
}

.bot-message {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.user-message {
  background: var(--accent-gradient);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-replies button {
  background: transparent;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.2s;
}

.quick-replies button:hover {
  background: var(--accent-primary);
  color: #fff;
}

.chat-footer {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-footer form {
  display: flex;
  gap: 10px;
}

.chat-footer input {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 25px;
  color: #fff;
  font-size: 0.9rem;
}

.chat-footer input:focus {
  border-color: var(--accent-primary);
  outline: none;
}

.chat-footer button {
  background: var(--accent-gradient);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   ADVANCED DESIGN UPGRADE: REVEALS & GLOWS
   ========================================= */

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulsing Buy Button */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(139, 92, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

.buy-btn {
  animation: pulse-glow 2s infinite;
}

.buy-btn:hover {
  animation: none;
  transform: scale(1.05);
  box-shadow: 0 8px 25px var(--accent-glow);
}

/* Hero Particle Mesh */
.slider_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* Text Shimmer Effect */
.highlight {
  background: linear-gradient(90deg, #8b5cf6, #06b6d4, #8b5cf6);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

/* Floating Admin Button */
.admin-floating-link {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.admin-floating-link:hover {
  background: var(--accent-primary);
  color: #fff !important;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 25px var(--accent-glow);
}

@media (max-width: 576px) {
  .admin-floating-link {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Admin Nav Button Hover */
.admin-nav-link:hover {
  background: var(--accent-primary);
  color: white !important;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}