/* ==========================================================================
   TeeSpace - Main Stylesheet
   ========================================================================== */
/* --------------------------------------------------------------------------
   CSS Variables & Base
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors (Logo Inspired) */
  --primary: #E88C2A;
  --primary-dark: #C96F18;
  --primary-light: #FFF2DE;
  --secondary: #8E3A2F;
  --secondary-dark: #6E2B23;
  --secondary-light: #F6E4E1;
  --accent: #F4B02A;
  --accent-dark: #D89214;
  --secondary-dark: #4A2A1F;
  --secondary-dark-soft: #6A4A3A;
  --text-muted: #7A6A60;
  --text-light: #A89A90;
  --white: white;
  --bg-light: #FFF9F2;
  --bg-cream: #F8E8D0;
  --border-color: #E8D9C8;
  /* Optional Highlight Colors */
  --red-sale: #B23A2A;
  --orange-hot: #E88C2A;
  /* Border Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(74, 42, 31, .08);
  --shadow: 0 10px 30px rgba(74, 42, 31, .10);
  --shadow-lg: 0 20px 40px rgba(74, 42, 31, .15);
  /* Transition */
  --transition: all .3s ease-in-out;
  /* Font */
  --font-primary: "Poppins", sans-serif;
  /* --font-primary:  "Cormorant Garamond", serif; */



  --font-heading: "Outfit", sans-serif;
  /* --font-primary: "DM Serif Display", serif; */
  --font-subheading: "Parisienne", cursive;


  /* --font-primary: 'Playfair Display', serif; */



  /* Font Sizes */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 24px;
  --font-size-xl: 32px;
  --font-size-2xl: 40px;
  --font-size-3xl: 48px;
  --font-size-4xl: 56px;
  /* Headings */
  --h1-size: 50px;
  --h2-size: 42px;
  --h3-size: 32px;
  --h4-size: 24px;
  --h5-size: 20px;
  --h6-size: 18px;
  /* Paragraph */
  --para-size: 13px;
  --para-small: 14px;
  --para-large: 18px;
  /* Font Weight */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  /* Line Height */
  --line-height-sm: 1.4;
  --line-height-base: 1.6;
  --line-height-lg: 1.8;
  /* Spacing */
  --space-xs: 5px;
  --space-sm: 10px;
  --space-md: 15px;
  --space-lg: 20px;
  --space-xl: 30px;
  --space-2xl: 35px;
  --space-3xl: 60px;
  --space-4xl: 80px;
  /* Section */
  --section-padding-sm: 40px;
  --section-padding: 80px;
  --section-padding-lg: 100px;
  /* Container */
  --container-width: 1320px;
  /* Buttons */
  --btn-height: 48px;
  --btn-padding-x: 30px;
  --btn-font-size: 16px;
}

/* All Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-heading,
.card-title,
.product-title,
.category-title,
.promo-card h3,
.hero-content h1,
.product-card .product-info h5 {
  color: var(--secondary-dark) !important;
  font-family: var(--font-heading);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary-dark);
  /* background-color: var(--secondary-light); */
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Placeholder styling for images not yet added */
.product-image-wrap img,
.category-image img,
/* .hero-image img, */
.promo-image img,
.template-image img,
.instagram-item img,
.laptop-mockup img,
.phone-mockup img,
.author-avatar img,
.mini-thumb img,
.brand-logo img {
  background: linear-gradient(135deg,
      var(--bg-light) 0%,
      var(--border-color) 100%);
  object-fit: cover;
}

/* Lists */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =====================================================
   Image Placeholder
===================================================== */
.image-placeholder {
  background: linear-gradient(135deg,
      var(--bg-light) 0%,
      var(--border-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/* =====================================================
   Utility Classes
===================================================== */
.section-padding {
  padding: 70px 0;
}

.section-title {
  font-size: var(--h4-size);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
  margin-bottom: 0;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 14px;
}

/* =====================================================
   Primary Button
===================================================== */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* =====================================================
   Dark Button
===================================================== */
.btn-dark-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary-dark);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.btn-dark-custom:hover {
  background: var(--secondary-dark-soft);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* =====================================================
   Outline Button
===================================================== */
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--secondary-dark);
  border: 2px solid var(--border-color);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

/* =====================================================
   White Button
===================================================== */
.btn-white-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--secondary-dark);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-white-custom:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   Links
===================================================== */
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--primary);
  transition: var(--transition);
}

.view-all-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   Sticky Header
   -------------------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--white);
  transition: var(--transition);
}

.main-nav.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--shadow);
  animation: slideDown 0.3s ease;
  padding: 15px !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

body.header-offset {
  padding-top: 0;
}

/* --------------------------------------------------------------------------
   1. Top Header
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Top Header
-------------------------------------------------------------------------- */
.top-header {
  background: var(--secondary-dark);
  padding: 10px 24px;
  font-size: var(--font-size-md);
  color: var(--white);
}

.top-header .social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-header .social-links a {
  color: white;
  font-size: var(--font-size-sm);
  transition: var(--transition);
}

.top-header .social-links a:hover {
  color: var(--accent);
}

.top-header .utility-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.top-header .utility-links a {
  color: white;
  font-size: var(--font-size-sm);
  transition: var(--transition);
}

.top-header .utility-links a:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   2. Main Header
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Main Header
-------------------------------------------------------------------------- */
.main-header {
  padding: 20px 30px;
  background: var(--white);
  /* border-bottom: 1px solid var(--border-color); */
}

.main-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
}

.main-header .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,
      var(--primary),
      var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}

.main-header .search-bar {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.main-header .search-bar input {
  width: 100%;
  height: 50px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  /* padding: 0 140px 0 20px; */
  background: var(--bg-light);
  color: var(--secondary-dark);
  transition: var(--transition);
}

.main-header .search-bar input::placeholder {
  color: var(--text-light);
}

.main-header .search-bar input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.main-header .search-bar .search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary-dark);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: var(--transition);
}

.main-header .search-bar .search-btn:hover {
  background: var(--primary);
}

/* --------------------------------------------------------------------------
   Header Actions
-------------------------------------------------------------------------- */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-actions .action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  position: relative;
  transition: var(--transition);
}

.header-actions .action-item i {
  font-size: 22px;
  color: var(--primary);
}

.header-actions .action-item:hover {
  color: var(--primary);
}

.header-actions .action-item:hover i {
  color: var(--accent);
}

.header-actions .badge-count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-size: 10px;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions .cart-info {
  display: flex !important;
  flex-direction: column;
  line-height: 1.3;
}

.header-actions .cart-info small {
  color: var(--text-muted);
  font-size: 11px;
}

.header-actions .cart-info span {
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
}

/* --------------------------------------------------------------------------
   3. Navigation Menu
   -------------------------------------------------------------------------- */
.main-nav {
  /* border-top: 1px solid var(--border-color); */
  /* border-bottom: 1px solid var(--border-color); */
  background-color: var(--white);
  padding-bottom: 15px !important;
}

.main-nav .nav-menu {
  display: flex;
  align-items: left;
  /* justify-content: center; */
  gap: 36px;
  padding: 0px 30px;
  font-family: var(--font-subheading);
}

.main-nav .nav-menu li a {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary-dark);
  position: relative;
  padding: 4px 0;
}

.main-nav .nav-menu li a.active,
.main-nav .nav-menu li a:hover {
  color: var(--primary);
}

.main-nav .nav-menu li a .bi-chevron-down {
  font-size: 10px;
  margin-left: 4px;
}

.main-nav .become-seller {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.main-nav .become-seller:hover {
  color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   4. Hero Banner
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Hero Section
-------------------------------------------------------------------------- */
/* ==========================================================================
   Hero Section
========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 60px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--accent) 100%);
  box-shadow: var(--shadow-lg);
}

/* Decorative Circles */
.hero-slide::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -100px;
  right: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.hero-slide::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

/* ==========================================================================
   Hero Content
========================================================================== */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 35px;
  font-weight: var(--fw-extrabold);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 15px !important;
  line-height: var(--line-height-base);
  color: rgba(255, 255, 255, .92);
  max-width: 450px;
  margin-bottom: 30px;
}

/* ==========================================================================
   Hero Button
========================================================================== */
.hero-content .btn-primary-custom {
  background: var(--secondary-dark);
  color: var(--white);
}

.hero-content .btn-primary-custom:hover {
  background: var(--white);
  color: var(--secondary-dark);
}

/* ==========================================================================
   Hero Image
========================================================================== */
.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image img,
.hero-image .image-placeholder {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   Hero Badge
========================================================================== */
.hero-badge {
  position: absolute;
  top: 25px;
  right: 40px;
  width: 95px;
  height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--secondary-dark);
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow);
  z-index: 3;
}

.hero-badge span {
  font-size: var(--font-size-lg);
  font-weight: var(--fw-bold);
  color: var(--accent);
}

/* ==========================================================================
   Swiper Pagination
========================================================================== */
.hero-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, .55);
  opacity: 1;
  transition: var(--transition);
}

.hero-section .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: var(--radius-pill);
  background: var(--white);
}

/* ==========================================================================
   Swiper Arrows
========================================================================== */
.hero-section .swiper-button-prev,
.hero-section .swiper-button-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .20);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-section .swiper-button-prev:hover,
.hero-section .swiper-button-next:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-section .swiper-button-prev::after,
.hero-section .swiper-button-next::after {
  font-size: 16px;
  font-weight: var(--fw-bold);
}

/* --------------------------------------------------------------------------
   5. Product Categories
   -------------------------------------------------------------------------- */
.categories-section {
  padding: 25px 0;
}

.category-card {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card .category-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.category-card:hover .category-image {
  transform: scale(1.08);
  box-shadow: var(--shadow);
}

.category-card .category-image img,
.category-card .category-image .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-dark);
  margin-bottom: 4px;
  font-family: var(--font-subheading);
}

.category-card span {
  font-size: 13px;
  /* color: var(--text-muted); */
  font-family: var(--font-primary);
}

.categories-section .swiper-button-prev,
.categories-section .swiper-button-next {
  color: var(--secondary-dark);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.categories-section .swiper-button-prev::after,
.categories-section .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   6. Promotional Banners
   -------------------------------------------------------------------------- */
.promo-banners {
  padding-bottom: 60px;
}

.promo-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.promo-card:hover {
  box-shadow: var(--shadow-lg);
}

.promo-card.purple {
  background-color: var(--purple);
}

.promo-card.green {
  background-color: var(--primary-light);
}

.promo-card .promo-content {
  position: relative;
  z-index: 2;
  max-width: 55%;
}

.promo-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.promo-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.promo-card .promo-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.promo-card .promo-image img,
.promo-card .promo-image .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-card:hover .promo-image img,
.promo-card:hover .promo-image .image-placeholder {
  transform: scale(1.05);
}

.promo-card .template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  max-width: 160px;
}

.promo-card .template-grid .mini-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   7-9. Product Tabs Section
   -------------------------------------------------------------------------- */
.product-tabs-section {
  padding: 60px 0;
}

.product-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  border-bottom: none;
}

.product-tabs .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  background: none;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.product-tabs .nav-link.active {
  color: var(--secondary-dark);
}

.product-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.product-tabs .nav-link:hover {
  color: var(--primary);
}

/* Product Card */
.product-card {
  /* background: var(--white); */
  border-radius: var(--radius);
  overflow: hidden;
  /* box-shadow: var(--shadow-sm); */
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  /* box-shadow: var(--shadow-lg); */
}

.product-card .product-image-wrap {
  position: relative;
  overflow: hidden;
  /* aspect-ratio: 3/4; */
  height: 250px;
  background-color: var(--bg-light);
}

.product-card .product-image-wrap img,
.product-card .product-image-wrap .image-placeholder {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img,
.product-card:hover .product-image-wrap .image-placeholder {
  transform: scale(1.05);
}

.product-card .product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-card .badge-hot {
  background-color: var(--orange-hot);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.product-card .badge-new {
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.product-card .badge-sale {
  background-color: var(--red-sale);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.product-card .badge-discount {
  position: absolute;
  top: 12px;
  /* right: 12px; */
  background-color: var(--red-sale);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-card .product-actions {
  position: absolute;
  bottom: 12px;
  left: 80% !important;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card .action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--secondary-dark);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

.product-card .action-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.product-card .action-btn.add-cart {
  width: auto;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  gap: 4px;
}

.product-card .wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
  cursor: pointer;
}

.product-card:hover .wishlist-btn {
  opacity: 1;
}

.product-card .wishlist-btn:hover {
  color: var(--red-sale);
}

.product-card .product-info {
  padding: 16px;
}

.product-card .product-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary) !important;
  margin-bottom: 8px;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.product-card .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card .price-current {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-dark);
}

.product-card .price-old {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-card .price-range {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-dark);
  text-align: left;
}

.product-card .color-swatches {
  display: flex;
  gap: 6px;
  /* margin-top: 8px; */
  text-align: center;
  justify-content: center;
}

.product-card .color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.product-card .color-swatch:hover {
  transform: scale(1.2);
}

.product-tabs-section .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

/* --------------------------------------------------------------------------
   10. Hot Under $20 Carousel
   -------------------------------------------------------------------------- */
.hot-products-section {
  /* padding: 60px 0; */
  /* background-color: var(--bg-light); */
}

.hot-products-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-bottom: 36px; */
}

.hot-products-section .swiper-button-prev,
.hot-products-section .swiper-button-next,
.instagram-section .swiper-button-prev,
.instagram-section .swiper-button-next {
  color: var(--secondary-dark);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hot-products-section .swiper-button-prev::after,
.hot-products-section .swiper-button-next::after,
.instagram-section .swiper-button-prev::after,
.instagram-section .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   12. Design Templates
   -------------------------------------------------------------------------- */
.templates-section {
  padding: var(--section-padding-sm) 0;
}

.templates-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.templates-section .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background-color: var(--white);
  color: var(--secondary-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.templates-section .btn-view-all:hover {
  border-color: var(--secondary-dark);
  color: var(--secondary-dark);
  transform: scale(1.02);
}

.template-card {
  display: block;
  transition: var(--transition);
  height: 100%;
}

.template-card:hover {
  transform: translateY(-4px);
}

.template-card .template-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--bg-light);
}

.template-card .template-image img,
.template-card .template-image .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.template-card:hover .template-image img {
  transform: scale(1.04);
}

.template-card .template-info {
  padding: 16px 4px 0;
}

.template-card .template-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: 4px;
}

.template-card .template-info span {
  font-size: 14px;
  color: var(--primary);
  font-weight: 400;
}

/* Overlay card (+28 Collections) */
.template-card-overlay .template-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  transition: var(--transition);
}

.template-card-overlay:hover .template-image::after {
  background: rgba(0, 0, 0, 0.65);
}

.template-card .template-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--white);
  text-align: center;
}

.template-card .template-overlay .overlay-count {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.template-card .template-overlay .overlay-label {
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   13. Brand Logos
   -------------------------------------------------------------------------- */
.integration-section {
  padding: var(--section-padding-sm) 0;
  background: var(--white);
}

.integration-left {
  padding-right: 20px;
}

.integration-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: 32px;
}

.integration-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--secondary-dark);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.integration-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* RIGHT SIDE LOGOS */
.brand-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.brand-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
  overflow: hidden;
}

.brand-logo-item {
  min-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo-item img {
  max-width: 125px;
  max-height: 38px;
  object-fit: contain;
}

.brand-logo-item.faded {
  opacity: .18;
  filter: grayscale(100%);
}

.brand-logo-item.active {
  opacity: 1;
  filter: none;
}

/* ARROWS */
.brand-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  background: #b8b8b8;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

.brand-arrow.left {
  left: -15px;
}

.brand-arrow.right {
  right: -15px;
}

.brand-arrow:hover {
  background: var(--primary);
}

@media(max-width:991px) {
  .integration-left {
    margin-bottom: 35px;
  }

  .brand-list {
    gap: 25px;
  }
}

/* --------------------------------------------------------------------------
   14 & 15. Download App & Testimonials
   -------------------------------------------------------------------------- */
/*=============================
APP & TESTIMONIAL SECTION
=============================*/
.app-review-section {
  padding: var(--section-padding-sm) 0;
}

/*=============================
LEFT CARD
=============================*/
.download-card {
  position: relative;
  background: #f6f6f6;
  border-radius: 24px;
  overflow: hidden;
  min-height: 306px;
  padding: 60px;
}

.download-content {
  position: relative;
  z-index: 5;
}

.download-content h2 {
  font-size: var(--h3-size);
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.download-content p {
  font-size: var(--font-size-md);
  color: #808080;
  /* margin-bottom: 40px; */
}

.download-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
  transition: .35s;
}

.store-button:hover {
  transform: translateY(-4px);
  color: #111;
}

.store-icon i {
  font-size: 34px;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.store-text small {
  color: #888;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

.store-text span {
  color: #111;
  font-size: 22px;
  font-weight: 600;
}

/* Decorative Shape */
.download-shape {
  position: absolute;
  width: 340px;
  height: 340px;
  background: #fff;
  opacity: .55;
  right: -120px;
  bottom: -120px;
  transform: rotate(45deg);
}

/* Phones */
.phone-left {
  position: absolute;
  width: 220px;
  left: -45px;
  bottom: -110px;
  transform: rotate(-28deg);
  z-index: 2;
}

.phone-right {
  position: absolute;
  width: 300px;
  right: -35px;
  bottom: -55px;
  transform: rotate(-28deg);
  z-index: 3;
}

/*=============================
RIGHT CARD
=============================*/
.testimonial-card {
  background: #eaf7f1;
  border-radius: 24px;
  /* min-height: 420px; */
  padding: 40px;
  position: relative;
}

.testimonial-card h2 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: #111;
  /* margin-bottom: 30px; */
}

.testimonial-text {
  font-size: var(--font-size-md);
  line-height: 1.55;
  color: #111;
  max-width: 88%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.author-image img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.author-info h4 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
}

.author-info span {
  color: #888;
  font-size: 18px;
}

/*=============================
NAVIGATION
=============================*/
.testimonial-navigation {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  gap: 18px;
}

.testimonial-navigation button {
  width: 60px;
  height: 60px;
  border: none;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.testimonial-navigation button:hover {
  background: #111;
  color: #fff;
}

/* Swiper */
.testimonial-slider {
  overflow: hidden;
}

/*=============================
RESPONSIVE
=============================*/
@media(max-width:991px) {

  .download-card,
  .testimonial-card {
    min-height: auto;
    padding: 35px;
  }

  .download-content h2,
  .testimonial-card h2 {
    font-size: 32px;
  }

  .download-content p {
    font-size: 17px;
  }

  .testimonial-text {
    font-size: 22px;
    max-width: 100%;
  }

  .download-buttons {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .phone-left {
    display: none;
  }

  .phone-right {
    width: 180px;
    right: -25px;
    bottom: -20px;
  }

  .testimonial-navigation {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: flex-end;
    margin-top: 30px;
  }
}

@media(max-width:576px) {

  .download-card,
  .testimonial-card {
    padding: 25px;
  }

  .download-content h2,
  .testimonial-card h2 {
    font-size: 28px;
  }

  .store-text span {
    font-size: 18px;
  }

  .phone-right {
    position: relative;
    width: 170px;
    transform: none;
    right: auto;
    bottom: auto;
    display: block;
    margin: 30px auto 0;
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 1.7;
  }

  .author-image img {
    width: 65px;
    height: 65px;
  }

  .author-info h4 {
    font-size: 20px;
  }

  .author-info span {
    font-size: 15px;
  }

  .testimonial-navigation button {
    width: 50px;
    height: 50px;
  }
}

/* --------------------------------------------------------------------------
   16. Newsletter
   -------------------------------------------------------------------------- */
.newsletter-section {
  padding: 60px 0;
  text-align: center;
}

.newsletter-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border-color);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   17. Instagram Gallery
   -------------------------------------------------------------------------- */
.instagram-section {
  /* padding-bottom: 70px; */
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.instagram-item img,
.instagram-item .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-item:hover img,
.instagram-item:hover .image-placeholder {
  transform: scale(1.08);
}

.instagram-item .instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(102, 197, 159, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-item .instagram-overlay i {
  font-size: 32px;
  color: var(--white);
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--secondary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
}

.site-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer .footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.site-footer .footer-about {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.site-footer .footer-social {
  display: flex;
  gap: 12px;
}

.site-footer .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}

.site-footer .footer-social a:hover {
  background: var(--primary);
}

.site-footer h5 {
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.site-footer .footer-links li {
  margin-bottom: 10px;
}

.site-footer .footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-links a:hover {
  color: var(--primary);
}

.site-footer .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.site-footer .contact-info i {
  color: var(--primary);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom .copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .payment-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-bottom .payment-icons img,
.footer-bottom .payment-icons .payment-placeholder {
  height: 28px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-bottom .payment-icons img:hover,
.footer-bottom .payment-icons .payment-placeholder:hover {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Swiper Global Overrides
   -------------------------------------------------------------------------- */
.swiper-pagination-bullet {
  background-color: var(--border-color);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary);
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 4.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

/* /////////////////////////// */
/*=====================================
 Template Showcase Section
=====================================*/
/* Card */
.showcase-card {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 50px 25px;
  position: relative;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 55%;
  transition: all .35s ease;
  box-shadow:
    0 10px 30px rgba(255, 255, 255, .35),
    0 20px 50px rgba(0, 0, 0, .15);
}

/* Left Card */
.showcase-card-1 {
  background: #f5effb url("../../websites/images/banner-26.png") no-repeat right center;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100%;
  background-color: #f5effb;
}

/* Right Card */
.showcase-card-2 {
  background-image: url("../websites/images/banner-27.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100%;
  background-color: #f8f8f8;
}

/* Content */
.showcase-content {
  max-width: 280px;
  z-index: 2;
}

.showcase-content h3 {
  /* font-size:42px; */
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  margin-bottom: 18px;
}

/* Button */
.showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #22c55e;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.showcase-btn:hover {
  background: #16a34a;
  color: #fff;
}

.showcase-btn i {
  transition: .3s;
}

.showcase-btn:hover i {
  transform: translateX(5px);
}

/*=========================
Large Screen
=========================*/
@media (max-width:1199px) {
  .showcase-card {
    height: 300px;
    padding: 40px;
    background-size: 55%;
  }

  .showcase-content h3 {
    font-size: 36px;
  }
}

/*=========================
Tablet
=========================*/
@media (max-width:991px) {
  .showcase-card {
    height: 280px;
    padding: 35px;
    background-size: 48%;
  }

  .showcase-content {
    max-width: 240px;
  }

  .showcase-content h3 {
    font-size: 32px;
  }

  .showcase-content p {
    font-size: 16px;
  }
}

/*=========================
Mobile
=========================*/
@media (max-width:767px) {
  .template-showcase {
    padding: 60px 0;
  }

  .showcase-card {
    min-height: 240px;
    height: auto;
    padding: 30px 25px;
    background-position: right bottom;
    background-size: 45%;
  }

  .showcase-content {
    max-width: 200px;
  }

  .showcase-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .showcase-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .showcase-btn {
    padding: 12px 22px;
    font-size: 15px;
  }
}

/*=========================
Small Mobile
=========================*/
@media (max-width:575px) {
  .showcase-card {
    padding: 25px 20px;
    min-height: 220px;
    background-size: 42%;
  }

  .showcase-content {
    max-width: 180px;
  }

  .showcase-content h3 {
    font-size: 22px;
  }

  .showcase-content p {
    font-size: 14px;
  }

  .showcase-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* //////////////////////////////////////////////////// */
/* ==============================
   DESIGN PROCESS SECTION
================================ */
.design-process-section {
  padding: 40px 0;
}

.design-process-container {
  background: var(--bg-lavender);
  border-radius: var(--radius-xl);
  padding: 75px 70px;
  overflow: hidden;
}

/* ==============================
   TITLE
================================ */
.design-process-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: 55px;
  font-family: var(--font-primary);
}

/* ==============================
   MAIN WRAPPER
================================ */
.design-process-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* ==============================
   LEFT STEP AREA
================================ */
.design-process-steps {
  width: 40%;
  position: relative;
}

/* Timeline Line */
.design-process-steps::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 2px;
  height: calc(100% - 40px);
  background: #d9d9d9;
}

/* Step Item */
.design-process-step {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 42px;
  cursor: pointer;
  position: relative;
}

/* Number Circle */
.design-process-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--border-color);
  flex-shrink: 0;
  z-index: 2;
  transition: var(--transition);
}

/* Active Number */
.design-process-step.active .design-process-number {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Step Content */
.design-process-content h4 {
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--secondary-dark);
  font-family: var(--font-primary);
}

.design-process-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  font-family: var(--font-primary);
}

/* Active Heading */
.design-process-step.active h4 {
  color: var(--secondary-dark);
}

/* ==============================
   RIGHT IMAGE AREA
================================ */
.design-process-image {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.design-process-image img {
  width: 100%;
  max-width: 650px;
  transition: .4s ease;
}

/* Image Animation */
.design-process-image img.image-change {
  opacity: 0;
  transform: translateY(15px);
}

/* ==============================
   RESPONSIVE
================================ */
@media(max-width:992px) {
  .design-process-container {
    padding: 50px 30px;
  }

  .design-process-wrapper {
    flex-direction: column;
  }

  .design-process-steps,
  .design-process-image {
    width: 100%;
  }

  .design-process-title {
    font-size: 32px;
  }
}

@media(max-width:576px) {
  .design-process-container {
    padding: 35px 20px;
  }

  .design-process-title {
    font-size: 26px;
  }

  .design-process-content h4 {
    font-size: 18px;
  }

  .design-process-content p {
    font-size: 16px;
  }

  .design-process-step {
    gap: 15px;
  }
}

/* ===========================
   HOW IT WORKS
=========================== */
.custom-how-it-works {
  width: 100%;
}

.custom-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: var(--section-padding-sm) 70px;
  background: var(--secondary-light);
  border-radius: 0;
  overflow: hidden;
}

/* Title */
.custom-title {
  text-align: center;
  font-size: var(--font-size-xl);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
  margin-bottom: 55px;
}

/* Layout */
.custom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  width: 100%;
}

/* Left */
.custom-steps {
  position: relative;
}

.custom-steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  border-left: 2px dotted var(--primary);
}

.custom-step {
  display: flex;
  gap: 22px;
  margin-bottom: 42px;
  position: relative;
  cursor: pointer;
}

/* Circle */
.step-circle {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-base);
  font-weight: var(--fw-bold);
  transition: var(--transition);
  z-index: 2;
}

.custom-step.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Text */
.step-text h4 {
  margin: 0 0 10px;
  font-size: var(--h4-size);
  line-height: var(--line-height-sm);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
}

.step-text p {
  margin: 0;
  font-size: var(--para-large);
  line-height: var(--line-height-base);
  color: var(--text-muted);
}

/* Right Image */
.custom-image-box {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-image-box img {
  width: 100%;
  max-width: 750px;
  transition: var(--transition);
}

.custom-image-box img.change {
  opacity: 0;
  transform: translateY(15px);
}

/* ===========================
   BRAND SLIDER
=========================== */
.brand-slider {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brandSwiper {
  width: 100%;
  overflow: hidden;
}

.brandSwiper .swiper-slide {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brandSwiper .swiper-slide img {
  width: 100%;
  max-width: 140px;
  transition: var(--transition);
  opacity: .75;
}

.brandSwiper .swiper-slide-active img {
  opacity: 1;
  transform: scale(1.08);
}

/* Navigation */
.brand-prev,
.brand-next {
  color: var(--secondary-dark);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
}

.brand-prev:hover,
.brand-next:hover {
  color: var(--primary);
}

/* ===========================
   LOGO
=========================== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: var(--font-size-2xl);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
}

.logo i {
  color: var(--primary);
  font-size: 34px;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 992px) {
  .custom-container {
    padding: 50px 30px;
  }

  .custom-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .custom-steps,
  .custom-image-box {
    width: 100%;
  }

  .custom-title {
    font-size: var(--h3-size);
  }

  .step-text h4 {
    font-size: var(--h5-size);
  }

  .step-text p {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 576px) {
  .custom-container {
    padding: 35px 20px;
  }

  .custom-title {
    font-size: var(--h4-size);
    margin-bottom: 35px;
  }

  .custom-wrapper {
    gap: 35px;
  }

  .custom-step {
    gap: 16px;
    margin-bottom: 30px;
  }

  .step-circle {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-sm);
  }

  .step-text h4 {
    font-size: var(--h6-size);
  }

  .step-text p {
    font-size: var(--para-small);
  }

  .brandSwiper .swiper-slide {
    height: 90px;
  }

  .brandSwiper .swiper-slide img {
    max-width: 110px;
  }

  .logo {
    font-size: var(--font-size-xl);
  }

  .logo i {
    font-size: 28px;
  }
}

/*==============================
Search
==============================*/
.search-bar {
  position: relative;
}

.search-bar input {
  width: 100%;
  height: 52px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding-left: 52px;
  padding-right: 145px;
  outline: none;
  font-size: var(--font-size-sm);
  font-family: var(--font-primary);
  background: var(--white);
  color: var(--secondary-dark);
  transition: var(--transition);
}

.search-bar input::placeholder {
  color: var(--text-light);
}

.search-bar input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: var(--font-size-md);
}

.search-bar button {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 126px;
  height: 48px;
  border: none;
  border-radius: var(--radius);
  background: var(--secondary-dark);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.search-bar button:hover {
  background: var(--primary);
  color: var(--white);
}

/*==============================
Hotline
==============================*/
.hotline-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-md);
  transition: var(--transition);
}

.hotline-box:hover .phone-icon {
  background: var(--primary);
  color: var(--white);
}

.hotline-box h6 {
  margin: 0;
  font-size: var(--h6-size);
  font-weight: var(--fw-bold);
  font-family: var(--font-subheading);
  color: var(--primary-dark) !important;
}

.hotline-box p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

/* ==========================================================================
   Header Icons
========================================================================== */
.header-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-lg);
}

.header-icons a {
  position: relative;
  color: var(--secondary-dark);
  font-size: var(--font-size-md);
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-subheading);
}

.header-icons a:hover {
  color: var(--primary);
}

.count-icon span {
  position: absolute;
  top: -7px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-xs);
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Sale Offer
========================================================================== */
.sale-off {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--secondary-dark);
  font-size: var(--font-size-md);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-subheading) !important;
}

.sale-off:hover {
  color: var(--primary);
}

.sale-off span {
  color: var(--primary);
  font-weight: var(--fw-bold);
}

.sale-off i {
  font-size: var(--font-size-sm);
  color: var(--accent);
  transition: var(--transition);
}

.sale-off:hover i {
  color: var(--primary);
}

/* ==========================================================================
   Global Elements
========================================================================== */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
}

/* ==========================================================================
   Product Tabs Section
========================================================================== */
.product-tabs-section {
  padding: var(--section-padding) 0;
}

/* ==========================================================================
   Product Tabs
========================================================================== */
.product-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  border: none;
}

.product-tabs .nav-link {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: var(--h4-size);
  font-weight: var(--fw-extrabold);
  line-height: var(--line-height-sm);
  transition: var(--transition);
}

.product-tabs .nav-link:hover {
  color: var(--primary);
}

.product-tabs .nav-link.active {
  color: var(--secondary-dark);
  background: transparent;
  position: relative;
  font-family: var(--font-subheading);
}

.product-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--primary);
}

/* ==========================================================================
   Swiper
========================================================================== */
.swiper {
  overflow: hidden;
  padding-bottom: var(--space-3xl);
}

.swiper-slide {
  height: auto;
}

/* ==========================================================================
   Product Card
========================================================================== */
.product-card {
  text-align: center;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
}

.product-image-wrap img {
  width: 100%;
  display: block;
  transition: var(--transition);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

/* ==========================================================================
   Product Info
========================================================================== */
.product-info {
  padding-top: var(--space-lg);
}

.product-info h5 {
  margin: 0;
  font-size: var(--h5-size);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
  transition: var(--transition);
}

.product-card:hover .product-info h5 {
  color: var(--primary);
}

.product-price {
  display: none;
}

/* ==========================================================================
   Product Badges
========================================================================== */
.badge-new,
.badge-hot,
.badge-sale,
.badge-discount {
  position: absolute;
  left: var(--space-md);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--fw-bold);
  color: var(--white);
  z-index: 5;
}

.badge-new {
  top: var(--space-md);
  background: var(--primary);
}

.badge-hot {
  top: var(--space-md);
  background: var(--accent);
}

.badge-sale {
  top: var(--space-md);
  background: var(--red-sale);
}

.badge-discount {
  top: 50px;
  background: var(--secondary-dark);
}

.badge-hot.second,
.badge-discount.second {
  top: 50px;
}

/* ==========================================================================
   Wishlist Button
========================================================================== */
.wishlist-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 10;
}

.wishlist-btn i {
  font-size: var(--font-size-md);
}

.wishlist-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* ==========================================================================
   Wishlist Button
========================================================================== */
.wishlist-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 10;
}

.wishlist-btn i {
  font-size: var(--font-size-base);
  color: var(--secondary-dark);
  transition: var(--transition);
}

.wishlist-btn:hover {
  background: var(--primary);
  box-shadow: var(--shadow);
}

.wishlist-btn:hover i {
  color: var(--white);
}

/* ==========================================================================
   Right Side Action Buttons
========================================================================== */
.product-actions {
  position: absolute;
  top: 70px;
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: var(--transition);
  z-index: 20;
}

.product-card:hover .product-actions {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ==========================================================================
   Action Icons
========================================================================== */
.icon-btn {
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.icon-btn i {
  font-size: var(--font-size-base);
  color: var(--secondary-dark);
  transition: var(--transition);
}

.icon-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon-btn:hover i {
  color: var(--white);
}

/* ==========================================================================
   Personalize Button
========================================================================== */
.personalize-btn {
  /* position: absolute; */
  left: var(--space-md);
  bottom: var(--space-md);
  width: calc(100% - 90px);
  height: 50px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 20;
}

.personalize-btn i {
  font-size: var(--font-size-md);
}

.product-card:hover .personalize-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.personalize-btn:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   Image Hover Overlay
========================================================================== */
.product-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Fallback */
  background: rgba(255, 255, 255, 0.12);
  /* Modern browsers */
  background: color-mix(in srgb, var(--white) 12%, transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.product-card:hover .product-image-wrap::before {
  opacity: 1;
}

/* ==========================================================================
   Product Card Hover
========================================================================== */
.product-card {
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
}

/* ==========================================================================
   Swiper Pagination
========================================================================== */
.swiper-pagination {
  margin-top: var(--space-xl);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--border-color);
  opacity: 1;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: var(--radius-pill);
  background: var(--primary);
}

/* ==========================================================================
   Card Spacing
========================================================================== */
.swiper-slide {
  padding-bottom: var(--space-sm);
}

.product-image-wrap img {
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   Responsive
========================================================================== */
/* Desktop */
@media (min-width: 1400px) {
  .product-tabs-section .container-fluid {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
}

/* Laptop */
@media (max-width: 1200px) {
  .product-tabs .nav-link {
    font-size: var(--font-size-lg);
  }

  .product-info h5 {
    font-size: var(--h5-size);
  }

  .personalize-btn {
    width: calc(100% - 80px);
    height: 46px;
    font-size: var(--font-size-sm);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .product-tabs {
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
  }

  .product-tabs .nav-link {
    font-size: var(--h4-size);
  }

  .product-info h5 {
    font-size: var(--h6-size);
  }

  .wishlist-btn,
  .icon-btn {
    width: 42px;
    height: 42px;
  }

  .wishlist-btn i,
  .icon-btn i {
    font-size: var(--font-size-base);
  }

  .product-actions {
    top: 65px;
    right: 12px;
    gap: var(--space-sm);
  }

  .personalize-btn {
    left: 12px;
    right: 12px;
    width: calc(100% - 75px);
    height: 44px;
    font-size: var(--font-size-sm);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .product-tabs-section {
    padding: var(--section-padding-sm) 0;
  }

  .product-tabs {
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-tabs .nav-link {
    font-size: var(--font-size-md);
  }

  .product-image-wrap,
  .product-image-wrap img {
    border-radius: var(--radius);
  }

  .product-info {
    padding-top: var(--space-sm);
  }

  .product-info h5 {
    font-size: var(--font-size-base);
  }

  .wishlist-btn,
  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .wishlist-btn {
    top: 10px;
    right: 10px;
  }

  .product-actions {
    top: 55px;
    right: 10px;
    gap: 8px;
  }

  .badge-new,
  .badge-hot,
  .badge-sale,
  .badge-discount {
    left: 10px;
    padding: 5px 9px;
    font-size: 10px;
  }

  .badge-discount,
  .badge-hot.second {
    top: 42px;
  }

  .personalize-btn {
    left: 10px;
    bottom: 10px;
    width: calc(100% - 68px);
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
  }

  .personalize-btn i {
    font-size: var(--font-size-sm);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .product-tabs .nav-link {
    font-size: var(--font-size-sm);
  }

  .product-info h5 {
    font-size: var(--font-size-sm);
  }

  .swiper {
    padding-bottom: var(--section-padding-sm);
  }
}

/* ==========================================================================
   Product Info
========================================================================== */
.product-info {
  text-align: center;
  padding-top: var(--space-lg);
}

.product-info h5 {
  margin: 0 0 var(--space-sm);
  font-size: var(--h6-size);
  font-weight: var(--fw-semibold);
  color: var(--secondary-dark);
  text-align: center;
}

.product-price {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  margin-top: var(--space-xs);
}

.price-range {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   Product Layout
========================================================================== */
.product-section,
.description-section,
.related {
  padding: var(--space-2xl) 0;
}

.product-gallery {
  width: 100%;
}

.main-product-image {
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.container {
  max-width: 1200px;
}

/* ==========================================================================
   Product Detail Page (enhanced)
========================================================================== */
.pd-breadcrumb {
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 55%, var(--primary-light) 100%);
  padding: 22px 0;
  border-bottom: 1px solid var(--border-color);
}

.pd-breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.pd-breadcrumb-nav a {
  color: var(--secondary-dark-soft);
  text-decoration: none;
  transition: var(--transition);
}

.pd-breadcrumb-nav a:hover {
  color: var(--primary);
}

.pd-breadcrumb-nav .current {
  color: var(--secondary-dark);
  font-weight: var(--fw-medium);
  max-width: 420px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-product {
  padding: 50px 0 60px;
  background:
    radial-gradient(circle at top left, rgba(232, 140, 42, 0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(244, 176, 42, 0.06), transparent 35%),
    #fff;
}

.pd-gallery {
  position: sticky;
  top: 100px;
}

.pd-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, #f7efe6 0%, #efe4d8 100%);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-gallery-main .main-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .25s ease, transform .45s ease;
  box-shadow: none;
  border-radius: 0;
}

.pd-gallery-main:hover .main-product-image {
  transform: scale(1.03);
}

.pd-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--secondary-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: .04em;
}

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.pd-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-light);
  cursor: pointer;
  aspect-ratio: 1;
  transition: var(--transition);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-thumb:hover,
.pd-thumb.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.pd-product .product-details.pd-details {
  padding-left: 10px;
}

.pd-product .product-details.pd-details h1 {
  color: var(--secondary-dark);
  font-size:  var(--font-size-lg);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  margin-bottom: 16px;
}

.pd-product .product-details.pd-details p.pd-desc {
  margin-bottom: 18px;
}

.pd-meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pd-category {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.pd-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.pd-rating i {
  color: var(--accent);
}

.pd-rating strong {
  color: var(--secondary-dark);
}

.pd-details h1 {
  color: var(--secondary-dark);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  margin-bottom: 16px;
}

.pd-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.pd-product .price {
  color: var(--primary);
  font-size: 28px;
  font-weight: var(--fw-bold);
  margin-bottom: 0;
}

.pd-old-price {
  color: var(--text-light);
  font-size: var(--font-size-md);
  text-decoration: line-through;
}

.pd-save {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #e8f8ef;
  color: #1f7a45;
  font-size: 12px;
  font-weight: var(--fw-semibold);
}

.pd-desc {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: 1.7;
  margin-bottom: 18px;
}

.pd-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pd-features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--secondary-dark-soft);
  font-size: 13px;
  font-weight: var(--fw-medium);
}

.pd-features i {
  color: var(--primary);
  font-size: 12px;
}

.pd-option {
  margin-bottom: 20px;
}

.pd-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
}

.pd-selected-label {
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

.pd-selected-label::before {
  content: "—";
  margin-right: 6px;
  color: var(--border-color);
}

.pd-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.pd-swatch:hover {
  transform: scale(1.08);
}

.pd-swatch.active {
  box-shadow: 0 0 0 2px var(--primary);
}

.pd-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-size {
  min-width: 48px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--secondary-dark);
  font-weight: var(--fw-semibold);
  font-size: 14px;
  transition: var(--transition);
}

.pd-size:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pd-size.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pd-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.pd-option-grid .pd-option {
  margin-bottom: 12px;
}

.pd-product .product-details select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  margin-bottom: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236A4A3A' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.pd-product .product-details select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
  outline: none;
}

.pd-upload {
  margin: 8px 0 8px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1px solid var(--border-color);
}

.pd-upload-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
}

.pd-upload-title i {
  color: var(--primary);
}

.pd-upload-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pd-product .upload-box label {
  height: auto;
  min-height: 88px;
  padding: 18px 20px;
  background: #fff;
  border-style: dashed;
  border-color: #dcc9b5;
}

.pd-product .upload-box label:hover,
.pd-product .upload-box label.is-dragover,
.pd-product .upload-box label.has-files {
  border-color: var(--primary);
  background: #fffdf9;
}

.pd-product .upload-left {
  gap: 14px;
}

.pd-product .upload-left i {
  font-size: 26px;
}

.pd-product .upload-left span {
  display: block;
  line-height: 1.3;
}

.pd-product .upload-left small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.pd-cart-row {
  margin-top: 22px;
}

.pd-product .quantity {
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.pd-product .quantity button,
.pd-product .quantity input {
  height: 100%;
  background: #fff;
}

.pd-product .personalize {
  height: 52px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--secondary-dark);
  background: #fff;
  color: var(--secondary-dark);
}

.pd-product .personalize:hover {
  background: var(--secondary-dark);
  color: #fff;
  border-color: var(--secondary-dark);
}

.pd-product .add-cart {
	height: 54px;
	margin-top: 0px;
	border-radius: var(--radius-sm);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
	box-shadow: 0 10px 24px rgba(232, 140, 42, 0.28);
}

.pd-product .add-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(232, 140, 42, 0.34);
}

.pd-actions {
  gap: 22px;
  margin-top: 6px;
}

.pd-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.pd-meta {
  display: grid;
  gap: 6px;
  padding-top: 16px;
}

.pd-meta a {
  color: var(--primary);
  text-decoration: none;
}

.pd-meta a:hover {
  text-decoration: underline;
}

.pd-tabs-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 60px;
}

.pd-tabs {
  justify-content: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
}

.pd-tabs button {
  position: relative;
  padding: 14px 18px;
  white-space: nowrap;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  color: var(--text-muted);
  font-size: 15px;
}

.pd-tabs button.active {
  color: var(--secondary-dark);
  border-bottom: none;
  background: #fff;
}

.pd-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--primary);
}

.pd-tab-content {
  margin-top: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-sm);
}

.pd-desc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pd-tab-box h5 {
  margin-bottom: 10px;
  color: var(--secondary-dark);
  font-size: 18px;
  font-weight: var(--fw-bold);
}

.pd-tab-box p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.pd-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.pd-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

.pd-info-list li strong {
  color: var(--secondary-dark);
  font-weight: var(--fw-semibold);
}

.pd-review-btn {
  margin-top: 16px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.pd-review-btn:hover {
  background: var(--primary-dark);
}

.pd-related {
  padding: 10px 0 40px;
  border-top: none;
}

.pd-related .hot-products-section {
  padding-top: 30px;
}

@media (max-width: 991px) {
  .pd-gallery {
    position: static;
  }

  .pd-product .product-details.pd-details {
    padding-left: 0;
    margin-top: 0;
  }

  .pd-desc-grid {
    grid-template-columns: 1fr;
  }

  .pd-option-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pd-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .pd-product .upload-box label {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pd-product .upload-left {
    justify-content: center;
    flex-direction: column;
  }

  .pd-product .browse-btn {
    width: 100%;
  }

  .pd-cart-row {
    flex-direction: column;
  }

  .pd-product .quantity {
    width: 100%;
    justify-content: space-between;
  }

  .pd-product .quantity input {
    flex: 1;
  }

  .pd-actions {
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* ==========================================================================
   Breadcrumb (legacy)
========================================================================== */
.breadcrumb-section {
  background: var(--bg-light);
  padding: 45px 0;
  text-align: center;
}

.breadcrumb-section h2 {
  font-size: var(--h3-size);
  font-weight: var(--fw-semibold);
  color: var(--secondary-dark);
}

.breadcrumb-section p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* ==========================================================================
   Product Gallery (legacy)
========================================================================== */
.product-gallery {
  text-align: center;
}

.main-product-image {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thumbs {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.thumbs img {
  width: 80px;
  height: 90px;
  object-fit: cover;
  padding: var(--space-xs);
  cursor: pointer;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: var(--white);
}

.thumbs img:hover,
.thumbs img.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Product Details (legacy)
========================================================================== */
.product-details {
  padding-left: var(--space-xl);
}

.product-details h1 {
  color: var(--secondary-dark);
  font-size: var(--h2-size);
  font-weight: var(--fw-bold);
  line-height: var(--line-height-sm);
  margin-bottom: var(--space-md);
}

.price {
  color: var(--primary);
  font-size: var(--font-size-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.product-details p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-lg);
  margin-bottom: var(--space-lg);
}

.product-details label {
  display: block;
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.product-details select {
  width: 100%;
  height: var(--btn-height);
  padding: 0 var(--space-md);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--bg-light);
  color: var(--secondary-dark);
  font-size: var(--font-size-base);
  font-weight: var(--fw-medium);
  box-shadow: none;
  outline: none;
  transition: var(--transition);
  margin-bottom: var(--space-lg);
  appearance: none;
}

.product-details select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
  .product-details {
    padding-left: 0;
    margin-top: var(--space-xl);
  }

  .product-details h1 {
    font-size: var(--h3-size);
  }

  .thumbs {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .thumbs {
    gap: var(--space-sm);
  }

  .thumbs img {
    width: 65px;
    height: 75px;
  }

  .product-details h1 {
    font-size: var(--h4-size);
  }

  .price {
    font-size: var(--font-size-md);
  }
}

/* ==========================================================================
   Upload
========================================================================== */
.upload-wrapper {
  width: 100%;
}

.upload-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--secondary-dark);
  text-decoration: none;
  transition: var(--transition);
}

.clear-btn:hover {
  color: var(--primary);
}

.clear-btn i {
  font-size: var(--font-size-xs);
}

.upload-count {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.upload-box input {
  display: none;
}

.upload-box label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 50px;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.upload-box label:hover {
  background: var(--bg-light);
  border-color: var(--primary);
}

.upload-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.upload-left i {
  font-size: 28px;
  color: var(--primary);
}

.upload-left span {
  font-size: var(--font-size-base);
  font-weight: var(--fw-medium);
  color: var(--secondary-dark);
}

.upload-left small {
  font-size: var(--font-size-base);
  color: var(--text-muted);
}

.browse-btn {
  height: var(--btn-height);
  padding: 0 var(--btn-padding-x);
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: var(--btn-font-size);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.browse-btn:hover {
  background: var(--primary-dark);
}

/* ==========================================================================
   Upload Responsive
========================================================================== */
@media (max-width: 768px) {
  .upload-box label {
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
    height: auto;
    padding: var(--space-lg);
  }

  .upload-left {
    justify-content: center;
    flex-wrap: wrap;
  }

  .upload-left span,
  .upload-left small {
    font-size: var(--font-size-base);
  }

  .browse-btn {
    width: 100%;
  }
}

/* ==========================================================================
   Cart
========================================================================== */
.cart-row {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.quantity {
  display: flex;
  height: 45px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.quantity button {
  width: 40px;
  background: var(--bg-light);
  color: var(--secondary-dark);
  transition: var(--transition);
}

.quantity button:hover {
  background: var(--primary);
  color: var(--white);
}

.quantity input {
  width: 50px;
  border: none;
  background: var(--bg-light);
  color: var(--secondary-dark);
  text-align: center;
  font-weight: var(--fw-medium);
}

.personalize {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--secondary-light);
  border-radius: var(--radius-sm);
  color: var(--secondary-dark);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.personalize:hover {
  border-color: var(--primary);
}

.add-cart {
  width: 100%;
  height: 50px;
  margin-top: var(--space-lg);
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.add-cart:hover {
  background: var(--primary-dark);
}

/* ==========================================================================
   Actions
========================================================================== */
.actions {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-color);
}

.actions a {
  color: var(--secondary-dark-soft);
  font-size: var(--font-size-base);
  font-weight: var(--fw-medium);
  transition: var(--transition);
}

.actions a:hover {
  color: var(--primary);
}

.meta p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
}

/* ==========================================================================
   Description Tabs
========================================================================== */
.description-section {
  border-top: 1px solid var(--border-color);
}

.tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  border-bottom: 1px solid var(--border-color);
}

.tabs button {
  padding: var(--space-md);
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: var(--font-size-md);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.tabs button:hover {
  color: var(--primary);
}

.tabs button.active {
  color: var(--secondary-dark);
  border-bottom: 2px solid var(--primary);
}

.description-content {
  margin-top: var(--space-2xl);
}

/* ==========================================================================
   Description
========================================================================== */
.description-content h5 {
  margin-bottom: var(--space-md);
  color: var(--secondary-dark);
  font-size: var(--h5-size);
  font-weight: var(--fw-bold);
}

.description-content p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-lg);
}

/* ===============================
RELATED
================================ */
/* ==========================================================================
   Related Products
========================================================================== */
.related {
  padding: var(--section-padding-sm) 0;
  border-top: 1px solid var(--border-color);
}

.related h3 {
  margin-bottom: var(--space-xl);
  color: var(--secondary-dark);
  font-size: var(--h3-size);
  font-weight: var(--fw-bold);
  text-align: center;
}

.related img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}

.related img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.related h6 {
  margin-top: var(--space-md);
  color: var(--secondary-dark);
  font-size: var(--h6-size);
  font-weight: var(--fw-semibold);
  text-align: center;
}

/* ==========================================================================
   Upload Hover
========================================================================== */
.upload-box label {
  transition: var(--transition);
}

.upload-box label:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

/* ==========================================================================
   Actions
========================================================================== */
.actions a {
  margin-right: var(--space-sm);
  font-size: var(--font-size-base);
  font-weight: var(--fw-medium);
  color: var(--secondary-dark) !important;
  transition: var(--transition);
}

.actions a:hover {
  color: var(--primary) !important;
}

.meta strong {
  color: var(--secondary-dark);
  font-weight: var(--fw-semibold);
}

/* ==========================================================================
   Global Elements
========================================================================== */
img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: var(--transition);
}

.container {
  width: min(var(--container-width), 92%);
  margin: 0 auto;
}

/* ==========================================================================
   Team Section
========================================================================== */
.team {
  position: relative;
  padding: var(--section-padding-sm) 0;
}

/* ==========================================================================
   Section Heading
========================================================================== */
.section-heading {
  margin-bottom: var(--space-3xl);
  text-align: center;
}

.section-heading h2 {
  margin-top: var(--space-md);
  color: var(--secondary-dark);
  font-size: var(--h3-size);
  font-weight: var(--fw-bold);
  line-height: var(--line-height-sm);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Buttons
========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--white);
  font-size: var(--btn-font-size);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--primary);
  font-size: var(--btn-font-size);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/*==============================================================================
   Hero Section
==============================================================================*/
.hero {
  position: relative;
  padding: var(--section-padding-lg) 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg,
      var(--white) 0%,
      var(--bg-light) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -220px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--primary-light);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--secondary-light);
  opacity: .35;
}

/*==============================================================================
   Hero Content
==============================================================================*/
.hero-content {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-4xl);
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  margin: 25px 0;
  font-size: var(--h2-size);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  color: var(--secondary-dark);
}

.hero-text p {
  max-width: 520px;
  font-size: var(--font-size-base);
  color: var(--text-muted);
  line-height: var(--line-height-base);
}

/*==============================================================================
   Hero List
==============================================================================*/
.hero-list {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: 45px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
}

.hero-list li::before {
  content: "✓";
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: var(--fw-bold);
}

/*==============================================================================
   Hero Image
==============================================================================*/
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  border-radius: 30px;
  transition: var(--transition);
}

.hero-image:hover img {
  transform: translateY(-8px);
}

.hero-main {
  width: 470px;
  position: relative;
  z-index: 3;
}

.hero-small {
  position: absolute;
  left: -40px;
  bottom: 30px;
  width: 180px;
  border: 8px solid var(--white);
  z-index: 5;
}

/*==============================================================================
   Hero Badge
==============================================================================*/
.hero-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  animation: float 5s ease-in-out infinite;
}

.hero-badge h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-xl);
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.hero-badge span {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/*==============================================================================
   Floating Card
==============================================================================*/
.hero-card {
  position: absolute;
  top: 30px;
  left: -70px;
  width: 210px;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.hero-card h4 {
  margin-bottom: var(--space-sm);
  font-size: var(--h5-size);
  font-weight: var(--fw-semibold);
  color: var(--secondary-dark);
}

.hero-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: var(--line-height-base);
}

/*==============================================================================
   Decorative Shapes
==============================================================================*/
.shape-circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.shape-one {
  top: 100px;
  right: 100px;
  width: 70px;
  height: 70px;
  background: var(--primary);
  opacity: .15;
}

.shape-two {
  top: 120px;
  left: 45%;
  width: 30px;
  height: 30px;
  background: var(--accent);
}

.shape-three {
  right: 12%;
  bottom: 25%;
  width: 18px;
  height: 18px;
  background: var(--secondary-dark);
}

/*==============================================================================
   Animation
==============================================================================*/
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/*==============================================================================
    Responsive
==============================================================================*/
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 35px;
  }

  .hero-list,
  .hero-list li {
    justify-content: center;
  }

  .hero-image {
    margin-top: var(--space-2xl);
  }

  .hero-main {
    width: 380px;
  }

  .hero-small,
  .hero-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: var(--font-size-2xl);
  }

  .section-heading h2,
  .section-title h2 {
    font-size: var(--h3-size);
  }

  .hero-main {
    width: 100%;
  }

  .hero-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-top: var(--space-lg);
  }
}

/*==============================================================================
    About Section
==============================================================================*/
.about-print {
  /* padding: var(--section-padding-lg) 0; */
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title h2 {
  margin-top: var(--space-md);
  font-size: var(--font-size-2xl);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-4xl);
}

/*==============================================================================
    About Image
==============================================================================*/
.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 120px;
  width: 450px;
  height: 450px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  z-index: -1;
}

.about-image::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 170px;
  width: 350px;
  height: 350px;
  border: 1px solid var(--bg-cream);
  border-radius: 50%;
  z-index: -1;
}

.main-image img {
  width: 80%;
  border-radius: var(--radius-lg);
}

/*==============================================================================
    Floating Card
==============================================================================*/
.floating-card {
  position: absolute;
  right: -40px;
  bottom: 20px;
  width: 180px;
  padding: var(--space-md);
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-card img {
  width: 100%;
}

/*==============================================================================
    Accordion
==============================================================================*/
.accordion-item {
  margin-bottom: var(--space-md);
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  line-height: 1.2;
  cursor: pointer;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.accordion-item.active .accordion-header {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.accordion-body {
  display: none;
  padding: var(--space-lg);
  background: var(--white);
  color: var(--text-muted);
  line-height: var(--line-height-lg);
}

.accordion-item.active .accordion-body {
  display: block;
}

.icon {
  font-size: var(--font-size-lg);
  font-weight: var(--fw-bold);
  color: inherit;
}

/*==============================================================================
    About Responsive
==============================================================================*/
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-content {
    margin-top: var(--space-2xl);
  }

  .floating-card {
    right: 10px;
    width: 150px;
  }
}

@media (max-width: 768px) {

  .about-image::before,
  .about-image::after {
    display: none;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -60px auto 0;
  }
}

/*==============================================================================
    Responsive
==============================================================================*/
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 35px;
  }

  .hero-list,
  .hero-list li {
    justify-content: center;
  }

  .hero-image {
    margin-top: var(--space-2xl);
  }

  .hero-main {
    width: 380px;
  }

  .hero-small,
  .hero-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: var(--font-size-2xl);
  }

  .section-heading h2,
  .section-title h2 {
    font-size: var(--h3-size);
  }

  .hero-main {
    width: 100%;
  }

  .hero-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-top: var(--space-lg);
  }
}

/*==============================================================================
    About Section
==============================================================================*/
.about-print {
  padding: 50px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title h2 {
  margin-top: var(--space-md);
  font-size: var(--font-size-2xl);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-4xl);
}

/*==============================================================================
    About Image
==============================================================================*/
.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 120px;
  width: 450px;
  height: 450px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  z-index: -1;
}

.about-image::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 170px;
  width: 350px;
  height: 350px;
  border: 1px solid var(--bg-cream);
  border-radius: 50%;
  z-index: -1;
}

.main-image img {
  width: 80%;
  border-radius: var(--radius-lg);
}

/*==============================================================================
    Floating Card
==============================================================================*/
.floating-card {
  position: absolute;
  right: -40px;
  bottom: 20px;
  width: 180px;
  padding: var(--space-md);
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-card img {
  width: 100%;
}

/*==============================================================================
    Accordion
==============================================================================*/
.accordion-item {
  margin-bottom: var(--space-md);
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  line-height: 1.2;
  cursor: pointer;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.accordion-item.active .accordion-header {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.accordion-body {
  display: none;
  padding: var(--space-lg);
  background: var(--white);
  color: var(--text-muted);
  line-height: var(--line-height-lg);
}

.accordion-item.active .accordion-body {
  display: block;
}

.icon {
  font-size: var(--font-size-lg);
  font-weight: var(--fw-bold);
  color: inherit;
}

/*==============================================================================
    About Responsive
==============================================================================*/
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-content {
    margin-top: var(--space-2xl);
  }

  .floating-card {
    right: 10px;
    width: 150px;
  }
}

@media (max-width: 768px) {

  .about-image::before,
  .about-image::after {
    display: none;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -60px auto 0;
  }
}

/*==============================================================================
    Testimonial Section
==============================================================================*/
.testimonial {
  position: relative;
  padding: var(--section-padding-sm) 0;
  background: var(--white);
  overflow: hidden;
}

.testimonial::after {
  content: "";
  position: absolute;
  top: 120px;
  right: -10%;
  width: 70%;
  height: 90px;
  background: linear-gradient(90deg,
      var(--primary-light),
      var(--secondary-light));
  transform: rotate(-8deg);
  opacity: .45;
}

.testimonial .container {
  position: relative;
  z-index: 2;
}

/*==============================================================================
    Section Heading
==============================================================================*/
.section-heading {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-badge {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-pill);
  background: var(--secondary-light);
  color: var(--secondary);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
}

.section-heading h2 {
  margin: 0;
  font-size: var(--font-size-3xl);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
}

/*==============================================================================
    Testimonial Grid
==============================================================================*/
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

/*==============================================================================
    Client Info
==============================================================================*/
.client-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  margin: 0;
  font-size: var(--h6-size);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
}

.client-info span {
  font-size: var(--font-size-sm);
  font-weight: var(--fw-normal);
  color: var(--text-muted);
}

/*==============================================================================
    Rating
==============================================================================*/
.stars {
  margin-top: 6px;
  color: var(--accent);
  font-size: var(--font-size-base);
  letter-spacing: 2px;
}

/*==============================================================================
    Review Text
==============================================================================*/
.testimonial-card p {
  font-size: var(--font-size-md);
  line-height: var(--line-height-lg);
  color: var(--secondary-dark-soft);
}

/*==============================================================================
    Pagination Dots
==============================================================================*/
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: 45px;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  opacity: .4;
  transition: var(--transition);
}

.testimonial-dots .active {
  background: var(--primary);
  border: 2px solid var(--primary-dark);
  opacity: 1;
}

/*==============================================================================
    Responsive
==============================================================================*/
@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: var(--h3-size);
  }
}

/*==================================
    CTA SECTION
==================================*/
.cta {
  padding: var(--section-padding-lg) 0;
}

.cta-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xl);
  padding: var(--section-padding);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.cta-wrapper::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -120px;
  right: -80px;
}

.cta-wrapper::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  bottom: -70px;
  left: -70px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: var(--h2-size);
  line-height: var(--line-height-sm);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.cta-content p {
  font-size: var(--para-large);
  line-height: var(--line-height-lg);
  opacity: .9;
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.cta .btn-primary:hover {
  background: var(--secondary-dark);
  color: var(--white);
}

.cta .btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.cta .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.cta-image {
  position: relative;
  z-index: 2;
}

.cta-image img {
  width: 100%;
  display: block;
}

/*==================================
    Utility
==================================*/
.text-center {
  text-align: center;
}

.mb-30 {
  margin-bottom: var(--space-xl);
}

.mt-60 {
  margin-top: var(--space-3xl);
}

/*==================================
    Responsive
==================================*/
@media (max-width:1100px) {
  .brands-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width:768px) {

  .brands-content h2,
  .cta-content h2 {
    font-size: var(--h3-size);
  }

  .brands-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }

  .cta-wrapper {
    padding: var(--section-padding-sm) var(--space-xl);
  }
}

/*==================================
    Responsive
==================================*/
@media (max-width:576px) {
  .brands-logos {
    grid-template-columns: 1fr;
  }

  .logo-item {
    height: 90px;
  }

  .counter-box h3 {
    font-size: var(--h3-size);
  }

  .testimonial-card {
    padding: var(--space-lg);
  }

  .client-info {
    flex-direction: column;
    text-align: center;
  }
}

/*==================================
    Accordion
==================================*/
.accordion-heading {
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  color: var(--secondary-dark);
}

.accordion-para {
  font-size: var(--para-size);
  line-height: var(--line-height-lg);
  color: var(--text-muted);
}

/*--------------------------------------------------------------------------
   Hero Banner
--------------------------------------------------------------------------*/
.hero-banner {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--accent) 100%);
  border-radius: 40px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: var(--space-3xl);
  padding-top: var(--space-xl); */
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  /* box-shadow: var(--shadow-lg); */
  padding-inline: 30px !important;
}

.hero-banner::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, .12);
  left: -120px;
  bottom: -120px;
  border-radius: 50%;
}

.hero-banner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, .08);
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
}

.hero-content {
  width: 50%;
  color: var(--white);
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.hero-content h1 {
  font-size: 30px;
  font-weight: 800;
  line-height: var(--line-height-sm);
  color: var(--white) !important;
  margin-bottom: var(--space-lg);
}

.hero-content p {
  font-size: var(--para-large);
  line-height: var(--line-height-lg);
  color: rgba(255, 255, 255, .9);
  margin-bottom: var(--space-2xl);
}

.hero-btn {
  display: inline-block;
  padding: var(--space-md) 38px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--secondary-dark);
  font-size: var(--btn-font-size);
  font-weight: var(--fw-bold);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.hero-btn:hover {
  background: var(--secondary-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image img {
  /* max-width: 480px; */
  width: 100%;
  position: relative;
  z-index: 3;
}

.circle-bg {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: 90px;
}

/*==================================
    Offer Badge
==================================*/
.offer-badge {
  width: 120px;
  height: 120px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  position: absolute;
  right: 70px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.offer-badge span {
  font-size: var(--font-size-lg);
  font-weight: var(--fw-semibold);
}

.offer-badge strong {
  font-size: var(--font-size-2xl);
  line-height: 1;
  font-weight: var(--fw-bold);
}

/*==================================
    Decorative Dots
==================================*/
.dots {
  width: 120px;
  height: 120px;
  position: absolute;
  top: -114px;
  left: -20px;
  background-image: radial-gradient(rgba(255, 255, 255, .45) 1px, transparent 1px);
  background-size: 16px 16px;
}

/*==================================
    Swiper Pagination
==================================*/
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--border-color);
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--white);
}

/*==================================
    Hero Responsive
==================================*/
@media (max-width:991px) {
  .hero-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--section-padding-sm) var(--space-xl);
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-image {
    margin-top: var(--space-xl);
  }

  .hero-content h1 {
    font-size: var(--h2-size);
  }

  .hero-image img {
    max-width: 320px;
  }

  .circle-bg {
    width: 260px;
    height: 260px;
    right: 50%;
    transform: translateX(50%);
  }

  .offer-badge {
    width: 90px;
    height: 90px;
    right: var(--space-lg);
    bottom: var(--space-xl);
  }

  .offer-badge strong {
    font-size: var(--font-size-lg);
  }
}

/*==================================
    Hero Button
==================================*/
.hero-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 11px 16px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-size: var(--btn-font-size);
  font-weight: var(--fw-semibold);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  animation: glow 2s infinite alternate;
  font-family: var(--font-subheading);
}

/* Shine Effect */
.hero-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: .6s;
}

.hero-button:hover::before {
  left: 130%;
}

/* Hover */
.hero-button:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg,
      var(--secondary-dark),
      var(--secondary-dark-soft));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

/* Icon */
.hero-button i {
  transition: var(--transition);
}

/* .hero-button:hover i {
  transform: translateX(8px);
} */
/* Active */
.hero-button:active {
  transform: scale(.97);
}

/* Glow */
@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255, 255, 255, .08);
  }

  to {
    box-shadow: 0 0 25px rgba(255, 255, 255, .18);
  }
}

/*==================================
    Contact Banner
==================================*/
.contact-banner {
  background: var(--bg-light);
  padding: var(--space-lg);
  text-align: center;
}

.contact-banner h1 {
  font-size: var(--h1-size);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
  margin-bottom: var(--space-sm);
}

.contact-banner p {
  color: var(--text-muted);
  font-size: var(--para-size);
}

/*==================================
    Contact Section
==================================*/
.contact-section {
  max-width: var(--container-width);
  margin: var(--section-padding) auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.contact-info h2,
.contact-form h2 {
  font-size: var(--h2-size);
  font-weight: var(--fw-bold);
  color: var(--secondary-dark);
  margin-bottom: var(--space-xl);
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.info-item h4 {
  margin-bottom: 15px;
  font-size: 24px;
  color: var(--secondary-dark);
}

.info-item p {
  margin: 8px 0;
  line-height: 1.7;
  color: var(--secondary-dark-soft);
}

/*==============================
Form
==============================*/
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input {
  width: 50%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  color: var(--secondary-dark);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.contact-form textarea {
  height: 180px;
  resize: none;
  margin-top: 20px;
}

.submit-btn {
  display: block;
  margin: 30px auto 0;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 15px 45px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--primary-dark);
}

/*==============================
Map
==============================*/
.map-section {
  width: 100%;
  margin-top: 60px;
}

.map-section iframe {
  width: 100%;
  height: 550px;
  border: 0;
  border-radius: var(--radius);
}

/*==============================
Responsive
==============================*/
@media (max-width:992px) {
  .contact-section {
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 20px;
    gap: 20px;
    margin-bottom: 0 !important;
  }

  .contact-banner {
    padding: 10px 20px;
  }

  .form-row input {
    width: 100%;
  }

  .contact-form textarea {
    height: 110px;
    margin-top: 20px;
  }

  .contact-banner h1 {
    font-size: 30px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 11px;
    font-size: var(--font-size-sm);
    background: var(--bg-light);
  }

  .contact-info h2,
  .contact-form h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary-dark);
  }

  .contact-info p {
    color: var(--text-muted);
    margin-bottom: 5px;
    font-size: 13px;
  }
}

/*////////////////////////////////////////////////////
MY ACCOUNT
////////////////////////////////////////////////////*/
.page-banner {
  background: var(--bg-light);
  padding: 90px 20px;
  text-align: center;
}

.page-banner h1 {
  font-size: 48px;
  color: var(--secondary-dark);
  font-weight: var(--fw-bold);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary);
}

/*==============================
Layout
==============================*/
.container {
  width: min(1200px, 92%);
  margin: auto;
}

.account-section {
  padding: var(--section-padding) 0;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

/* ===========================
   Card
=========================== */
.account-card {
  padding: var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.account-card h3 {
  font-size: var(--h4-size);
  color: var(--secondary-dark);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xl);
}

/* ===========================
   Form
=========================== */
.form-group {
  position: relative;
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
}

.form-group span {
  color: var(--red-sale);
}

.form-group input {
  width: 100%;
  height: var(--btn-height);
  padding: 0 18px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  transition: var(--transition);
}

.form-group input::placeholder {
  color: var(--text-light);
}

.form-group input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 140, 42, 0.12);
}

.password-group i {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.password-group i:hover {
  color: var(--primary);
}

/* ===========================
   Buttons
=========================== */
.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: var(--btn-height);
  padding: 0 var(--btn-padding-x);
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--btn-font-size);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===========================
   Login
=========================== */
.login-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-sm);
}

.remember {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
}

.remember input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.lost-password {
  display: inline-block;
  margin-top: var(--space-lg);
  color: var(--primary);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: var(--transition);
}

.lost-password:hover {
  color: var(--primary-dark);
}

/* ===========================
   Register
=========================== */
.info-text,
.privacy {
  color: var(--text-muted);
  line-height: var(--line-height-lg);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-lg);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-medium);
  cursor: pointer;
}

.radio-group input {
  accent-color: var(--primary);
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 991px) {
  .account-grid {
    grid-template-columns: 1fr;
  }

  .page-banner h1 {
    font-size: var(--font-size-2xl);
  }

  .account-card {
    padding: var(--space-xl);
  }
}

@media (max-width: 576px) {
  .page-banner {
    padding: var(--section-padding-sm) var(--space-md);
  }

  .page-banner h1 {
    font-size: var(--h3-size);
  }

  .login-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary {
    width: 100%;
  }
}

/* //////////////////////////////////////////////////
   Cart Page
////////////////////////////////////////////////// */
.cart-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
}

.cart-qty button {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--primary-light);
  color: var(--primary);
  font-size: var(--font-size-md);
  cursor: pointer;
  transition: var(--transition);
}

.cart-qty button:hover {
  background: var(--primary);
  color: var(--white);
}

.cart-qty input {
  width: 46px;
  border: none;
  outline: none;
  text-align: center;
  background: var(--white);
  color: var(--secondary-dark);
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
}

.cart-qty input::-webkit-inner-spin-button,
.cart-qty input::-webkit-outer-spin-button {
  display: none;
}

.cart-footer {
  margin-top: var(--space-2xl);
}

.continue-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--secondary-dark);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.continue-btn:hover {
  color: var(--primary);
}

.clear-cart-btn {
  padding: 12px 25px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--secondary-light);
  color: var(--red-sale);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: var(--transition);
}

.clear-cart-btn:hover {
  background: var(--red-sale);
  color: var(--white);
}

/* ===========================
   ORDER SUMMARY
=========================== */
.summary-card {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.summary-title {
  font-size: var(--h4-size);
  color: var(--secondary-dark);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xl);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  color: var(--secondary-dark);
  font-size: var(--font-size-base);
}

.summary-row strong {
  font-size: var(--font-size-md);
  font-weight: var(--fw-semibold);
  color: var(--secondary-dark);
}

.summary-card hr {
  margin: var(--space-lg) 0;
  border: none;
  border-top: 1px solid var(--border-color);
}

.total-row {
  font-size: var(--font-size-lg);
  font-weight: var(--fw-bold);
}

.total-row strong {
  color: var(--primary);
  font-size: var(--h4-size);
}

/* ===========================
   COUPON
=========================== */
.coupon-box label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--secondary-dark);
  font-size: var(--font-size-sm);
  font-weight: var(--fw-semibold);
}

.coupon-box .form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding: 12px 18px;
  background: var(--bg-light);
  color: var(--secondary-dark);
  box-shadow: none;
  transition: var(--transition);
}

.coupon-box .form-control::placeholder {
  color: var(--text-light);
}

.coupon-box .form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  outline: none;
}

.apply-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  padding: 0 25px;
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.apply-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* ===========================
   CHECKOUT BUTTON
=========================== */
.checkout-btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--secondary-dark);
  color: var(--white);
  font-size: var(--font-size-md);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.checkout-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ===========================
   PAYMENT ICONS
=========================== */
.payment-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}

.payment-icons i {
  font-size: 28px;
  color: var(--text-muted);
  transition: var(--transition);
}

.payment-icons i:hover {
  color: var(--primary);
  transform: translateY(-4px);
}

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:991px) {
  .summary-card {
    margin-top: 15px;
    position: static;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }

  .cart-product img {
    width: 160px;
    height: 170px;
  }

  .remove-btn {
    margin: auto;
  }

  .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
    font-size: 13px;
  }

  .summary-row strong {
    font-size: 13px;
  }
}

@media(max-width:576px) {
  .cart-header h3 {
    font-size: 22px;
  }

  .summary-title {
    font-size: 20px;
    margin-bottom: 0px;
  }

  .checkout-btn {
    font-size: 16px;
  }
}

.cart-product img {
  height: 400px;
  width: 400px;
}

/*=========================================
            CART INFO
=========================================*/
.cart-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.cart-info h5 {
  margin: 0;
  color: var(--secondary-dark);
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: 1.3;
}

.cart-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.cart-info span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

/*=========================================
            CART ITEM FLEX
=========================================*/
.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Product Image */
.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

/*=========================================
            RESPONSIVE
=========================================*/
@media(max-width:767px) {
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cart-item img {
    width: 75px;
    height: 75px;
  }

  .cart-info h5 {
    font-size: var(--font-size-md);
  }

  .cart-info p {
    font-size: 13px;
  }
}

@media(max-width:480px) {
  .cart-item {
    padding: 15px;
  }

  .cart-info span {
    font-size: 11px;
    padding: 5px 12px;
  }
}

.bulk-faq {
  background: #f8f9fa;
}

.faq-box {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 8px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #222;
}

.faq-question span {
  font-size: 28px;
  /* color:var; */
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

@media(max-width:768px) {
  .sidebar {
    position: relative;
    height: auto;
    overflow: visible;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:768px) {

  /* Container */
  .container {
    width: 90%;
  }

  /* Top Bar */
  .topbar {
    text-align: center;
    font-size: 12px;
    padding: 8px 10px;
  }

  /* Header */
  .header {
    padding: 15px 0;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    text-align: center;
  }

  .logo {
    font-size: 22px;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .menu a {
    font-size: 13px;
  }

  /* Hero */
  .hero {
    padding: 30px 0 20px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 13px;
    line-height: 1.7;
  }

  /* Main Layout */
  .wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 25px 0;
  }

  /* Content */
  .content {
    width: 100%;
    max-width: 100%;
  }

  .section {
    margin-bottom: 25px;
  }

  .section h2 {
    font-size: 20px;
    line-height: 1.4;
  }

  .section p {
    font-size: 13px;
    line-height: 1.8;
  }

  .section li {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .contact-box {
    padding: 20px 0;
  }

  .contact-box h2 {
    font-size: 20px;
  }

  /* Footer */
  footer {
    margin-top: 25px;
    padding: 30px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  footer h3 {
    font-size: 17px;
  }

  footer p,
  footer a {
    font-size: 13px;
  }
}

.topbar {
  background: var(--secondary-dark);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-dark);
  text-decoration: none;
}

.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: var(--secondary-dark-soft);
  font-size: 14px;
}

.menu a:hover {
  color: var(--primary-dark);
}

/* ================= HERO ================= */
.hero {
  padding: 45px 0 30px;
}

.hero h1 {
  font-size: 38px;
  font-weight: 600;
  color: var(--secondary-dark);
  margin-bottom: 10px;
}

.hero p {
  max-width: 800px;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* ================= MAIN ================= */
.wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  padding: 35px 0;
}

/* ================= SIDEBAR ================= */
/* ================= SIDEBAR FIXED ================= */
.sidebar {
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  overflow-y: auto;
  border-right: 1px solid var(--border-color);
  padding-right: 25px;
}

/* Sidebar scrollbar */
.sidebar::-webkit-scrollbar {
  width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 20px;
}

.sidebar h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-dark);
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 12px;
}

.sidebar a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  display: block;
  padding: 8px 0;
  transition: .3s;
}

.sidebar a:hover {
  color: var(--primary-dark);
  padding-left: 8px;
}

/* ================= CONTENT ================= */
.content {
  max-width: 850px;
}

.section {
  margin-bottom: 35px;
}

.section h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-dark);
  margin-bottom: 12px;
}

.section p {
  margin-bottom: 15px;
}

.section ul {
  padding-left: 20px;
}

.section li {
  margin-bottom: 8px;
}

.contact-box {
  margin-top: 20px;
  padding: 25px 0;
}

.contact-box h2 {
  font-size: 22px;
  color: var(--secondary-dark);
  margin-bottom: 12px;
}

.contact-box a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}

/* ================= FOOTER ================= */
footer {
  /* margin-top: 40px; */
  background: var(--secondary-dark);
  color: #fff;
  padding: 35px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

footer p,
footer a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
}

.copyright {
  /* margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: 13px;
  color: #aaa; */
}

@media(max-width:768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .wrapper {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
    padding: 35px 0;
    align-items: start;
  }

  .content {
    min-height: 2000px;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }
}

.showcase-card {
  margin-top: var(--section-padding-sm);
}

.corporate-gift-section {
  padding: 40px 0;
  background: #fff9f2;
}

.gift-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* LEFT */
.gift-label {
  font-size: 18px;
  font-weight: 700;
  color: #e88c2a;
}

.gift-info h2 {
  font-size: var(--h3-size);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  color: #4a2a1f;
  margin: 20px 0;
}

.gift-info h2 span {
  color: #e88c2a;
}

/* STEPS */
.gift-step {
  display: flex;
  gap: 18px;
  padding: 10px;
  margin-top: 18px;
  border-radius: 18px;
  cursor: pointer;
  transition: .4s;
}

.gift-step.active {
  background: #fff;
  box-shadow: 0 15px 35px rgba(74, 42, 31, .12);
}

.step-number {
  height: 50px;
  width: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff2de;
  color: #e88c2a;
  font-weight: 700;
}

.step-content h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #4a2a1f;
}

.step-content p {
  margin: 0;
  font-size: 14px;
  color: #7a6a60;
  line-height: 1.6;
}

.gift-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  background: #e88c2a;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT IMAGE */
.gift-visual {
  position: relative;
}

.gift-image-box {
  /* height: 620px; */
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(74, 42, 31, .18);
}

.gift-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
  animation: giftFade .8s;
}

@keyframes giftFade {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gift-trust-card {
  position: absolute;
  bottom: 35px;
  left: -35px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.gift-trust-card i {
  font-size: 35px;
  color: #e88c2a;
}

.gift-trust-card h5 {
  margin: 0;
  color: #4a2a1f;
  font-family: var(--font-subheading);
}

.gift-trust-card p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #7a6a60;
}

@media(max-width:991px) {
  .gift-two-column {
    grid-template-columns: 1fr;
  }

  .gift-image-box {
    height: 450px;
  }

  .gift-trust-card {
    left: 20px;
  }
}

/* logo section */
/* ================= DOWNLOAD CARD ================= */
.download-card {
  position: relative;
  /* padding: var(--space-4xl); */
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.download-card::before {
  content: "";
  position: absolute;
  background: var(--primary-light);
  border-radius: 50%;
  right: -120px;
  top: -120px;
}

.download-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--secondary-light);
  border-radius: 50%;
  left: -70px;
  bottom: -70px;
}

.download-content {
  position: relative;
  z-index: 2;
}

.download-content h2 {
  font-family: var(--font-primary);
  font-size: var(--h4-size);
  font-weight: var(--fw-bold);
  line-height: var(--line-height-sm);
  color: var(--secondary-dark);
  margin-bottom: var(--space-sm);
}

.download-content p {
  color: var(--text-muted);
  font-size: var(--para-large);
  /* margin-bottom: var(--space-3xl); */
}

/* APP BUTTON */
.download-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--secondary-dark);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.store-button:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.store-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 24px;
}

.store-text small {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--text-light);
}

.store-text span {
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
}

/* PHONE IMAGES */
.phone-left,
.phone-right {
  position: absolute;
  width: 220px;
  bottom: -80px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.phone-left {
  left: 70px;
  transform: rotate(-12deg);
}

.phone-right {
  right: 70px;
  transform: rotate(12deg);
}

.download-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  border-radius: 50%;
  right: 20px;
  bottom: -160px;
}

/* ================= TESTIMONIAL CARD ================= */
.testimonial-card {
  position: relative;
  background: var(--secondary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--primary);
  opacity: .15;
  border-radius: 50%;
  right: -90px;
  top: -90px;
}

.testimonial-card h2 {
  position: relative;
  color: var(--white) !important;
  font-size: var(--h4-size);
  font-weight: var(--fw-bold);
}

.testimonial-text {
  position: relative;
  color: var(--secondary-light);
  font-size: 15px;
  line-height: var(--line-height-lg);
}

/* .testimonial-text::before {
  content: "“";
  position: absolute;
  top: -45px;
  left: -20px;
  font-size: 90px;
  color: var(--primary);
  opacity: .5;
} */
.testimonial-author {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.author-image img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  /* border: 4px solid var(--primary); */
}

.author-info h4 {
  color: var(--white) !important;
  font-size: var(--h5-size);
  font-weight: var(--fw-semibold);
  margin-bottom: 5px;
}

.author-info span {
  color: var(--primary-light);
  font-size: var(--para-small);
}

/* NAVIGATION */
.testimonial-navigation {
  position: absolute;
  right: var(--space-3xl);
  bottom: var(--space-3xl);
  display: flex;
  gap: var(--space-sm);
}

.testimonial-prev,
.testimonial-next {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary);
  color: var(--white);
}

/* RESPONSIVE */
@media(max-width:991px) {

  .download-card,
  .testimonial-card {
    margin-bottom: var(--space-xl);
  }

  .phone-left {
    left: 20px;
  }

  .phone-right {
    right: 20px;
  }
}

@media(max-width:576px) {

  .download-card,
  .testimonial-card {
    padding: var(--space-xl);
  }

  .download-content h2,
  .testimonial-card h2 {
    font-size: var(--font-size-2xl);
  }

  .phone-left,
  .phone-right {
    width: 140px;
  }
}

/* APP BUTTON */
.download-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--white);
  color: var(--secondary-dark);
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.store-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* Google Play Icon */
.store-button:first-child .store-icon {
  background: #34A853;
  color: var(--white);
}

/* Apple Icon */
.store-button:last-child .store-icon {
  background: #000000;
  color: var(--white);
}

.store-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 24px;
}

.store-text small {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  line-height: 1.2;
}

.store-text span {
  display: block;
  font-size: var(--font-size-base);
  font-weight: var(--fw-semibold);
  color: var(--secondary-dark);
}

span {
  color: var(--primary);
  font-family: var(--font-subheading);
}

/* /////////video section */
/* ================================
   HERO WIREFRAME SECTION
================================ */
.hero-wireframe {
  position: relative;
  width: 100%;
  /* min-height: 900px; */
  overflow: hidden;

  /* padding: 80px 0; */
}

/* ================================
   BACKGROUND VIDEO CIRCLES
================================ */
.circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-one {
  width: 320px;
  height: 320px;
  top: 174px;
  right: 194px;
  border: 7px solid #8E3A2F4F;
  box-shadow: ;
}

.circle-two {
  width: 220px;
  height: 220px;
  bottom: 294px;
  left: 70px;
  border: 8px solid rgba(255, 255, 255, 0.9);
  /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12); */
  /* animation: floatingTwo 6s ease-in-out infinite; */
}

/* Floating Animation */
@keyframes floatingOne {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-35px);
  }
}

@keyframes floatingTwo {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }
}

/* ================================
   CONTAINER
================================ */
.hero-container {
  width: min(1200px, 90%);
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ================================
   TOP HEADING
================================ */
.hero-heading {
  text-align: center;
  margin-bottom: 60px;
}

.hero-heading h1 {
  font-size: var(--h1-size);
  /* line-height: .85; */
  font-weight: 800;
  /* letter-spacing: -5px; */
  color: #111;
  /* text-transform: uppercase; */
}

/* ================================
   CENTER CONTENT
================================ */
.hero-content {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  gap: 70px;
}

/* IMAGE BOX */
.image-box {
  width: 500px;
  height: 550px;
  border-radius: 40px;
  overflow: hidden;
}

/* .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

/* CONTENT RIGHT */
.content-info {
  max-width: 400px;
}

.content-info h2 {
  font-size: 48px;
  line-height: .95;
  font-weight: 800;
  color: #111;
  margin-bottom: 25px;
}

.content-info p {
  font-size: 18px;
  line-height: 1.7;
  color: #eead67;
  margin-bottom: 35px;
  font-weight: bold;
}

/* BUTTON */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 16px 35px;
  background: #111;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: .4s ease;
}

.hero-btn span {
  font-size: 24px;
  transition: .3s ease;
}

.hero-btn:hover {
  background: #e88c2a;
  transform: translateY(-5px);
}

.hero-btn:hover span {
  transform: translateX(8px);
}

/* ================================
   BOTTOM CONTENT
================================ */
.bottom-content {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.bottom-content h3 {
  font-size: 55px;
  line-height: 1;
  font-weight: 800;
  color: #111;
}

.bottom-content p {
  width: 350px;
  color: #666;
  line-height: 1.7;
  font-size: 17px;
}

/* ================================
   TABLET RESPONSIVE
================================ */
@media(max-width:992px) {
  .hero-wireframe {
    min-height: auto;
  }

  .circle-one {
    width: 220px;
    height: 220px;
    right: 20px;
  }

  .circle-two {
    width: 150px;
    height: 150px;
    left: 20px;
  }

  .hero-heading h1 {
    font-size: 75px;
  }

  .hero-content {
    flex-direction: column;
  }

  .image-box {
    width: 100%;
    height: 450px;
  }

  .content-info {
    text-align: center;
  }

  .content-info h2 {
    font-size: 50px;
  }

  .bottom-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
  }

  .bottom-content h3 {
    font-size: 40px;
  }
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media(max-width:576px) {
  .hero-wireframe {
    padding: 50px 0;
  }

  .circle-one {
    width: 130px;
    height: 130px;
    top: 20px;
    right: 10px;
  }

  .circle-two {
    width: 100px;
    height: 100px;
    bottom: 40px;
    left: 10px;
  }

  .hero-heading {
    margin-bottom: 40px;
  }

  .hero-heading h1 {
    font-size: 45px;
    letter-spacing: -2px;
  }

  .image-box {
    height: 350px;
    border-radius: 25px;
  }

  .content-info h2 {
    font-size: 38px;
  }

  .content-info p {
    font-size: 15px;
  }

  .hero-btn {
    padding: 14px 28px;
  }

  .bottom-content {
    margin-top: 60px;
  }

  .bottom-content h3 {
    font-size: 32px;
  }

  .bottom-content p {
    width: 100%;
    font-size: 15px;
  }
}

.swiper-pagination-bullet-active {
  background-color: white !important;
}

.glass-btn {
  display: inline-block;
  padding: 14px 14px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  font-weight: 600;
  transition: .35s;
  font-family: var(--font-subheading);
}

.glass-btn:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}


















.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  opacity: .95;
  margin: 25px 0;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin: 35px 0;
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.hero-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  /* font-size: 25px; */
  font-family: var(--font-subheading);
}

.hero-item i {
  color: var(--secondary-dark);
  font-size: 18px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.stat-box {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(15px);
  padding: 18px 22px;
  border-radius: 18px;
  min-width: 130px;
  text-align: center;
}

.stat-box h3 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.stat-box span {
  font-size: 13px;
  color: #fff;
  opacity: .9;
}

@media(max-width:768px) {

  /* 
  .hero-list {
    grid-template-columns: 1fr;
  } */
  .hero-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px;
    font-size: 16px;
  }

  .hero-item i {
    font-size: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    justify-content: center;
  }

}


.glass-button {
  display: inline-block;
  padding: 14px 14px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .4);
  background: #fff;
  color: var(--primary);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  font-weight: 600;
  font-family: var(--font-subheading);
  transition: .35s;
}

.product-title-price {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-align: left;
  margin-bottom: 10px;
}


/* .product-title-price h5 {

  margin: 0;

  font-size: 15px;

  line-height: 1.4;

  color: #3b2a20;

  font-weight: 600;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  flex: 1;

} */


.price-range {

  white-space: nowrap;

  font-size: 14px;

  font-weight: 700;

  color: #d98224;

}

.add-cart-btn {

  width: 100%;
  height: 42px;

  border-radius: 50px;

  background: linear-gradient(135deg, #ffffff, #fff7ed);

  border: 1px solid rgba(232, 138, 36, .35);

  color: #d98224;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 14px 0 18px;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .3px;

  cursor: pointer;

  position: relative;

  overflow: hidden;

  transition: .4s ease;

  box-shadow:
    0 5px 15px rgba(232, 138, 36, .12);

}


/* Shine Animation */

.add-cart-btn::before {

  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 70%;

  height: 100%;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .8),
      transparent);

  transform: skewX(-25deg);

  transition: .7s;

}



.add-cart-btn:hover::before {

  left: 130%;

}



/* Cart Icon */

.add-cart-btn i {

  width: 28px;

  height: 28px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: linear-gradient(135deg,
      #e88a24,
      #f7b052);

  color: white;

  font-size: 12px;

  transition: .45s ease;

  box-shadow:
    0 5px 12px rgba(232, 138, 36, .35);

}



/* Hover Effect */

.add-cart-btn:hover {

  background: linear-gradient(135deg,
      #e88a24,
      #f5a642);

  color: white;

  border-color: #e88a24;

  transform: translateY(-4px);

  box-shadow:
    0 12px 25px rgba(232, 138, 36, .35);

}



/* Icon Animation */

.add-cart-btn:hover i {

  background: white;

  color: #e88a24;

  transform:
    rotate(360deg) scale(1.15);

}



/* Click Effect */

.add-cart-btn:active {

  transform: scale(.95);

}



/* Floating Pulse */

.add-cart-btn i {

  animation: cartPulse 2s infinite;

}



@keyframes cartPulse {

  0% {

    box-shadow:
      0 0 0 0 rgba(232, 138, 36, .5);

  }

  70% {

    box-shadow:
      0 0 0 10px rgba(232, 138, 36, 0);

  }

  100% {

    box-shadow:
      0 0 0 0 rgba(232, 138, 36, 0);

  }

}