/* ============================================================
   EARNEST APPAREL - Digital Printing Store
   Professional Landing Page Stylesheet
   Color Palette: Red (#E31937) / White (#FFFFFF) / Dark (#1a1a2e)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary: #E31937;
  --primary-dark: #B71530;
  --primary-light: #FF3D57;
  --secondary: #1a1a2e;
  --secondary-light: #16213e;
  --accent: #e94560;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --text-dark: #2d2d2d;
  --text-light: #f8f9fa;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* ─── Section Common ────────────────────────────────────────── */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar-custom {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1050;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary) !important;
}

.navbar-brand-custom img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.navbar-custom.scrolled .navbar-brand-custom img {
  height: 38px;
}

.navbar-custom .nav-link {
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary) !important;
  background: rgba(227, 25, 55, 0.06);
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: var(--transition);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.cart-btn {
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-xl);
  padding: 8px 20px !important;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 25, 55, 0.4);
  color: var(--white) !important;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  animation: badgePop 0.3s ease;
}

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

  50% {
    transform: scale(1.3);
  }

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

/* ─── HERO ──────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(227, 25, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroPulse 6s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227, 25, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroPulse 8s ease-in-out infinite reverse;
}

@keyframes heroPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 25, 55, 0.15);
  border: 1px solid rgba(227, 25, 55, 0.3);
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(227, 25, 55, 0.3);
  border-radius: 4px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 35px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(227, 25, 55, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(227, 25, 55, 0.5);
  color: var(--white);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 14px 35px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  max-width: 400px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(227, 25, 55, 0.3));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

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

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

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about-section {
  background: var(--white);
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge h3 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--gray-700);
}

.about-features li i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 25, 55, 0.1);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ─── BENEFITS ───────────────────────────────────────────────── */
.benefits-section {
  background: var(--off-white);
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(227, 25, 55, 0.1), rgba(227, 25, 55, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h5 {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.benefit-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── PRODUCTS ───────────────────────────────────────────────── */
.products-section {
  background: var(--white);
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 10px 24px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(227, 25, 55, 0.3);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-image-wrapper {
  position: relative;
  padding: 20px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
}

.product-image-wrapper img {
  max-height: 180px;
  width: auto;
  transition: var(--transition-slow);
  object-fit: contain;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--gray-200);
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.product-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
}

.btn-add-cart {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-add-cart:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(227, 25, 55, 0.3);
}

/* ─── TRUSTED BY (MARQUEE) ──────────────────────────────────── */
.trusted-section {
  background: var(--off-white);
  padding: 60px 0;
  overflow: hidden;
}

.trusted-section .section-title {
  color: var(--secondary);
}

.trusted-section .section-subtitle {
  color: var(--gray-600);
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 25px 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--off-white), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--off-white), transparent);
}

.marquee-track {
  display: flex;
  gap: 30px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  flex-shrink: 0;
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 15px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.marquee-item:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.marquee-item img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: var(--transition);
}

.marquee-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* ─── SPONSORSHIP ────────────────────────────────────────────── */
.sponsorship-section {
  background: var(--off-white);
}

.sponsorship-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.sponsorship-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.sponsorship-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.sponsorship-card:hover::after {
  transform: scaleX(1);
}

.sponsorship-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(227, 25, 55, 0.1), rgba(227, 25, 55, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.sponsorship-card:hover .sponsorship-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.sponsorship-card h4 {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}

.sponsorship-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── PORTFOLIO ──────────────────────────────────────────────── */
.portfolio-section {
  background: var(--white);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 24px;
}

.portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 46, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay-content h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.portfolio-overlay-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-section {
  background: var(--off-white);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.contact-item {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(227, 25, 55, 0.1), rgba(227, 25, 55, 0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h6 {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.contact-item p {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

.contact-item a {
  color: var(--primary);
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(227, 25, 55, 0.4);
  color: var(--white);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 350px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom span {
  color: var(--primary);
  font-weight: 600;
}

/* ─── CART SIDEBAR ───────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

.cart-header h4 {
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header h4 i {
  color: var(--primary);
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.cart-close:hover {
  background: var(--primary);
  color: var(--white);
}

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

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
}

.cart-item-img {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.cart-item-details h6 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.cart-item-details .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition);
}

.qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-item-qty span {
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  font-size: 1rem;
  padding: 5px;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: var(--primary);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-500);
  text-align: center;
  padding: 40px;
}

.cart-empty i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.cart-empty h5 {
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.cart-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

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

.cart-total h5 {
  font-weight: 600;
  color: var(--secondary);
  margin: 0;
}

.cart-total .total-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ─── SCROLL TO TOP ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(227, 25, 55, 0.3);
  font-size: 1.1rem;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(227, 25, 55, 0.5);
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waFloat {

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

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

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-logo-img {
    max-width: 350px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
    padding-top: 100px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-desc {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    margin-top: 3rem;
  }

  .hero-logo-img {
    max-width: 280px;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .navbar-brand-custom {
    font-size: 1.1rem;
  }

  .about-img-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 25px;
    flex-wrap: wrap;
  }

  .hero-stat h3 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .hero-logo-img {
    max-width: 220px;
  }

  .portfolio-item img {
    height: 200px;
  }

  .cart-sidebar {
    width: 100%;
    max-width: 100vw;
  }

  .marquee-item {
    width: 100px;
    height: 65px;
    padding: 10px;
  }

  .marquee-item img {
    max-width: 70px;
    max-height: 40px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .product-image-wrapper {
    min-height: 180px;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .about-content h2 {
    font-size: 1.7rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--secondary) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 15px 40px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  border: none;
  cursor: pointer;
}

.btn-cta-wa:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  color: var(--primary);
}

/* ─── Toast Notification ─────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-notification {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  animation: toastSlide 0.4s ease, toastFadeOut 0.4s ease 2.6s forwards;
  min-width: 280px;
  max-width: 380px;
}

.toast-notification i {
  font-size: 1.2rem;
  color: var(--primary);
}

.toast-notification span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
}

@keyframes toastSlide {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

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

@keyframes toastFadeOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ─── Loader ──────────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.page-loader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}