/* -------------------------------------------------------------
 * Giftana Modern E-Commerce & Corporate Gifting Stylesheet
 * Optimized for Bootstrap 5.3 & WooCommerce WordPress Conversion
 * ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --js-blue: #3590B8;
  --js-blue-hover: #267599;
  --js-pink: #E6328D;
  --js-pink-hover: #C92377;
  --js-cream: #FAF6F0;
  --js-dark: #1A1C1E;

  --giftana-amber: #3590B8;
  --giftana-amber-hover: #267599;
  --giftana-yellow-bar: #E6328D;
  --giftana-primary: #3590B8;
  --giftana-primary-dark: #267599;
  --giftana-primary-light: #EBF5FA;
  --giftana-secondary: #E6328D;
  --giftana-dark-bg: #141618;
  --giftana-text-dark: #1A1C1E;
  --giftana-text-muted: #64748B;
  --giftana-border: #E2E8F0;
  
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-logo: 'Plus Jakarta Sans', 'Playfair Display', Georgia, serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
body {
  font-family: var(--font-body);
  color: var(--giftana-text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
/* Global Rounded Corners for All Images */
img {
  border-radius: 16px;
}

.hero-fullwidth-img-banner,
.hero-dark-container,
.hero-banner-slide,
.hero-swiper,
.gifts-budget-banner-card {
  border-radius: 24px !important;
  overflow: hidden !important;
}

.product-card-img-wrap,
.product-card-img-wrap img,
.category-card,
.category-card img,
.category-card-img-wrap,
.category-card-img-wrap img,
.budget-banner-couple-img {
  border-radius: 18px !important;
  overflow: hidden !important;
}

h1, h2, h3, .font-heading {
  font-family: var(--font-heading);
}

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

a:hover {
  color: var(--js-blue);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--js-blue);
}

/* -------------------------------------------------------------
 * 1. Clean Top Header & Navigation Bar
 * ------------------------------------------------------------- */
.header-main-clean {
  background: #FFFFFF;
  border-bottom: 1px solid var(--giftana-border);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 4px 20px rgba(53, 144, 184, 0.06);
}

.header-main-clean .row {
  flex-wrap: nowrap !important;
  align-items: center;
}

.giftana-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo-img {
  height: 70px;
  width: 70px;
  object-fit: contain;
  border-radius: 50% !important;
  border: 2px solid var(--js-blue);
  box-shadow: 0 3px 10px rgba(53, 144, 184, 0.2);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.giftana-brand-logo:hover .brand-logo-img {
  transform: scale(1.06) rotate(4deg);
  box-shadow: 0 6px 16px rgba(230, 50, 141, 0.3);
  border-color: var(--js-pink);
}

.giftana-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #1A1C1E;
  line-height: 1.05;
}

.giftana-logo-subtext {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--js-pink);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* Center Navigation links */
.nav-link-giftana {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #2D3748 !important;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

@media (max-width: 1399.98px) {
  .nav-link-giftana {
    font-size: 12.5px;
    padding: 5px 8px;
  }
}

.nav-link-giftana:hover,
.nav-link-giftana.active {
  color: var(--js-blue) !important;
  background-color: var(--giftana-primary-light);
}

/* -------------------------------------------------------------
 * Megamenu Dropdown Styles
 * ------------------------------------------------------------- */
.nav-item-megamenu {
  position: relative;
}

.megamenu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 980px;
  max-width: 95vw;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--giftana-border);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  margin-top: 8px;
}

.nav-item-megamenu:hover .megamenu-wrapper {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.megamenu-cat-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--js-blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--giftana-primary-light);
  padding-bottom: 6px;
}

.megamenu-cat-title i {
  color: var(--js-pink);
  font-size: 14px;
}

.megamenu-sub-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.megamenu-sub-list li {
  margin-bottom: 4px;
}

.megamenu-sub-list li a {
  font-size: 12.5px;
  color: #4B5563;
  font-weight: 500;
  transition: all 0.2s ease;
  display: block;
  padding: 2px 0;
  text-decoration: none;
}

.megamenu-sub-list li a:hover {
  color: var(--js-pink);
  transform: translateX(4px);
}

/* -------------------------------------------------------------
 * Category Showcase Explorer Card Styles
 * ------------------------------------------------------------- */
.cat-explorer-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.cat-explorer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(53, 144, 184, 0.12);
  border-color: var(--js-blue);
}

.cat-explorer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.cat-explorer-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--giftana-primary-light);
  color: var(--js-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cat-explorer-card:hover .cat-explorer-icon-box {
  background: var(--js-pink);
  color: #FFFFFF;
  transform: rotate(6deg);
}

.cat-explorer-title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1C1E;
  margin-bottom: 0;
  line-height: 1.25;
}

.cat-sub-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
}

.cat-sub-chip {
  font-size: 12px;
  font-weight: 500;
  color: #4A5568;
  background: #F7FAFC;
  border: 1px solid #E2E8F0;
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.cat-sub-chip:hover {
  background: var(--js-blue);
  color: #FFFFFF;
  border-color: var(--js-blue);
}

/* Right Header Actions */
.header-action-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #1A1C1E;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-action-link:hover {
  color: var(--js-blue);
}

.header-action-btn-icon {
  background: transparent;
  border: none;
  color: #1A1C1E;
  font-size: 18px;
  padding: 6px 8px;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-action-btn-icon:hover {
  color: var(--js-blue);
}

.cart-badge-circle {
  position: absolute;
  top: -2px;
  right: -4px;
  background-color: var(--js-pink);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(230, 50, 141, 0.4);
}

/* -------------------------------------------------------------
 * 2. Announcement Bar
 * ------------------------------------------------------------- */
.yellow-announcement-bar {
  background: linear-gradient(90deg, var(--js-blue) 0%, var(--js-pink) 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  padding: 9px 15px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* -------------------------------------------------------------
 * 3. Hero Slider & Studio Card Container
 * ------------------------------------------------------------- */
.hero-slider-section {
  padding: 24px 0 36px;
}

/* Uniform & Perfect Aspect Ratio Banner Dimensions (1024x429 ~ 2.38:1 Ratio) */
.hero-banner-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 2.38 / 1;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-dark-container {
  width: 100%;
  aspect-ratio: 2.38 / 1;
  background-color: var(--giftana-dark-bg);
  background-image: radial-gradient(circle at 75% 35%, #23272b 0%, #121315 80%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  padding: 36px 48px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-fullwidth-img-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991.98px) {
  .hero-banner-slide,
  .hero-dark-container {
    aspect-ratio: auto;
    min-height: 320px;
    padding: 24px 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-banner-slide,
  .hero-dark-container {
    aspect-ratio: auto;
    min-height: 200px;
    padding: 16px;
    border-radius: 14px;
  }
}

.hero-subtitle-tag {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--js-pink);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title-main {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.text-amber-gold {
  color: var(--js-blue);
}

.text-pure-white {
  color: #FFFFFF;
}

.hero-para-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: #94A3B8;
  max-width: 520px;
  margin-bottom: 32px;
}

.btn-shop-now-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--js-blue) 0%, var(--js-pink) 100%);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 38px;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  box-shadow: 0 6px 22px rgba(53, 144, 184, 0.4);
  transition: all 0.25s ease;
}

.btn-shop-now-pill:hover {
  background: linear-gradient(135deg, var(--js-blue-hover) 0%, var(--js-pink-hover) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 50, 141, 0.5);
}

/* Graphic Showcase & Hotspots */
.hero-product-showcase {
  position: relative;
  border-radius: 18px;
  overflow: visible;
}

.hero-product-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.hotspot-pin {
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

.hotspot-outer-ring {
  width: 24px;
  height: 24px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
  display: block;
}

.hotspot-inner-dot {
  width: 8px;
  height: 8px;
  background: #000000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hotspot-tooltip-label {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  color: #1A1C1E;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  white-space: nowrap;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* -------------------------------------------------------------
 * 4. Floating Chat & Notification Widgets
 * ------------------------------------------------------------- */
.floating-chat-box {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-chat-with-us {
  background: #FFFFFF;
  color: #1A1C1E;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
}

.btn-whatsapp-circle {
  width: 42px;
  height: 42px;
  background-color: #25D366;
  color: #FFFFFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.recent-buy-toast {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 999;
  background: #FFFFFF;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #E2E8F0;
  max-width: 320px;
  font-family: var(--font-body);
}

.toast-close-btn {
  position: absolute;
  top: 2px;
  right: 6px;
  background: transparent;
  border: none;
  font-size: 14px;
  color: #94A3B8;
  cursor: pointer;
}

.toast-item-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
}

.toast-title-text {
  font-size: 12px;
  color: #334155;
  line-height: 1.35;
}

.toast-time-sub {
  font-size: 11px;
  color: #94A3B8;
  margin-top: 2px;
}

/* -------------------------------------------------------------
 * 5. Category Carousel Section (Under Slider)
 * ------------------------------------------------------------- */
.category-carousel-section {
  position: relative;
  padding: 10px 0 35px;
  background-color: #FFFFFF;
}

.category-card-item {
  display: block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2px;
}

.category-card-item:hover {
  transform: translateY(-4px);
}

.category-card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #F8FAFC;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
  transition: box-shadow 0.25s ease;
}

.category-card-item:hover .category-card-img-wrap {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #CBD5E1;
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card-item:hover .category-card-img {
  transform: scale(1.06);
}

.category-slider-title {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #2D3748 !important;
  margin: 0;
  line-height: 1.35;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-align: center;
  transition: color 0.2s ease;
}

.category-card-item:hover .category-slider-title {
  color: var(--giftana-amber) !important;
}

/* Category Slider Navigation Arrows */
.category-swiper-prev,
.category-swiper-next {
  position: absolute;
  top: 38%;
  z-index: 25;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #1A1C1E;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.category-swiper-prev {
  left: 2px;
}

.category-swiper-next {
  right: 2px;
}

@media (min-width: 1200px) {
  .category-swiper-prev {
    left: -12px;
  }
  .category-swiper-next {
    right: -12px;
  }
}

.category-swiper-prev:hover,
.category-swiper-next:hover {
  background: #1A1C1E;
  color: #FFFFFF;
  border-color: #1A1C1E;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Category Swiper Pagination Bullets */
.category-swiper-pagination {
  margin-top: 18px;
}

.category-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #CBD5E1;
  opacity: 1;
  margin: 0 4px !important;
  transition: all 0.25s ease;
  border-radius: 50%;
}

.category-swiper-pagination .swiper-pagination-bullet-active {
  background: #1A1C1E;
  width: 9px;
  height: 9px;
}

  color: var(--giftana-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span.gold-text {
  color: var(--giftana-primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #94A3B8;
  margin-bottom: 35px;
  max-width: 560px;
}

.btn-giftana-primary {
  background: linear-gradient(135deg, var(--js-blue), var(--js-blue-hover));
  color: #FFF;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 6px 20px rgba(53, 144, 184, 0.35);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-giftana-primary:hover {
  background: linear-gradient(135deg, var(--js-blue-hover), var(--js-pink));
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(230, 50, 141, 0.45);
  color: #FFF;
}

.btn-giftana-outline {
  background: transparent;
  color: #FFF;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-giftana-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFF;
  color: #FFF;
  transform: translateY(-3px);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-floating-badge {
  position: absolute;
  bottom: 25px;
  left: -20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  color: #FFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}

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

/* -------------------------------------------------------------
 * Trust USPs Bar
 * ------------------------------------------------------------- */
.usp-bar-section {
  background: #FFF;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.usp-box {
  background: #FFF;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--giftana-border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-fast);
}

.usp-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--giftana-primary);
}

.usp-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--giftana-primary-light);
  color: var(--giftana-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.usp-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--giftana-secondary);
  margin-bottom: 2px;
}

.usp-sub {
  font-size: 12px;
  color: var(--giftana-muted);
  margin: 0;
}

/* -------------------------------------------------------------
 * Section Headers
 * ------------------------------------------------------------- */
.section-header {
  margin-bottom: 45px;
}

.section-subtitle {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--giftana-primary-dark);
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--giftana-secondary);
  line-height: 1.25;
}

/* -------------------------------------------------------------
 * Shop By Categories Grid
 * ------------------------------------------------------------- */
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--giftana-secondary);
  height: 280px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.95;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFF;
}

.category-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #FFF;
}

.category-card-count {
  font-size: 13px;
  color: var(--giftana-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.category-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition-fast);
}

.category-card:hover .category-card-link {
  color: var(--giftana-primary);
  transform: translateX(5px);
}

/* -------------------------------------------------------------
 * Filter Tabs & Product Cards Grid
 * ------------------------------------------------------------- */
.nav-pills-giftana {
  gap: 8px;
  justify-content: center;
  margin-bottom: 35px;
}

.nav-pills-giftana .nav-link {
  background: var(--giftana-light-bg);
  color: var(--giftana-text);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--giftana-border);
  transition: all var(--transition-fast);
}

.nav-pills-giftana .nav-link:hover,
.nav-pills-giftana .nav-link.active {
  background: var(--giftana-secondary);
  color: #FFF;
  border-color: var(--giftana-secondary);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* Product Card */
.product-card {
  background: #FFF;
  border: 1px solid var(--giftana-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 100%; /* 1:1 Aspect ratio */
  background: #F8FAFC;
}

.product-card-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge-tag.badge-hot {
  background: var(--giftana-danger);
  color: #FFF;
}

.product-badge-tag.badge-bestseller {
  background: var(--giftana-primary);
  color: var(--giftana-secondary);
}

.product-badge-tag.badge-moq {
  background: var(--giftana-secondary);
  color: #FFF;
}

.product-action-overlay {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 1;
  transform: translateY(0);
  transition: all var(--transition-fast);
  z-index: 3;
}

.product-card .product-action-overlay {
  opacity: 1;
  transform: translateY(0);
}

.btn-product-action {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFF;
  color: var(--giftana-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--giftana-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

.btn-product-action:hover {
  background: var(--giftana-primary);
  color: #FFF;
  border-color: var(--giftana-primary);
  transform: scale(1.1);
}

.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--giftana-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--giftana-secondary);
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
}

.product-title a:hover {
  color: var(--giftana-primary-dark);
}

.product-rating {
  font-size: 12px;
  color: var(--giftana-gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-rating .count {
  color: var(--giftana-muted);
  font-size: 11px;
  margin-left: 4px;
}

.product-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed var(--giftana-border);
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--giftana-secondary);
}

.product-price del {
  font-size: 13px;
  color: var(--giftana-muted);
  font-weight: 400;
  margin-right: 6px;
}

.btn-add-cart-card {
  background: var(--giftana-primary-light);
  color: var(--js-blue);
  border: 1px solid rgba(53, 144, 184, 0.4);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.btn-add-cart-card:hover {
  background: var(--js-blue);
  color: #FFF;
  border-color: var(--js-blue);
}

/* -------------------------------------------------------------
 * Corporate Gifting Banner & Customization Showcase
 * ------------------------------------------------------------- */
.corporate-banner-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFF;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.corporate-banner-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(53, 144, 184, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.logo-preview-simulator {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 25px;
}

.logo-preview-box {
  background: #FFF;
  border-radius: var(--radius-sm);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
}

.logo-preview-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--js-pink);
  border: 2px dashed var(--js-blue);
  padding: 8px 24px;
  border-radius: 6px;
  background: rgba(53, 144, 184, 0.06);
}

/* -------------------------------------------------------------
 * Employee Welcome Kits Box Showcase
 * ------------------------------------------------------------- */
.kit-item-badge {
  background: #FFF;
  border: 1px solid var(--giftana-border);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.kit-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--giftana-primary-light);
  color: var(--giftana-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* -------------------------------------------------------------
 * Client Logos Wall / Marquee
 * ------------------------------------------------------------- */
.client-logo-box {
  background: #FFF;
  border: 1px solid var(--giftana-border);
  border-radius: var(--radius-sm);
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.client-logo-box:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--giftana-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.client-logo-box font {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--giftana-secondary);
}

/* -------------------------------------------------------------
 * Testimonials
 * ------------------------------------------------------------- */
.testimonial-card {
  background: #FFF;
  border: 1px solid var(--giftana-border);
  border-radius: var(--radius-md);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-fast);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--giftana-primary);
}

.testimonial-quote-icon {
  font-size: 32px;
  color: var(--giftana-primary);
  opacity: 0.4;
  margin-bottom: 15px;
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--giftana-primary);
}

/* -------------------------------------------------------------
 * How It Works 3-Step Section
 * ------------------------------------------------------------- */
.step-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--giftana-primary), var(--giftana-primary-dark));
  color: #FFF;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 18px rgba(53, 144, 184, 0.35);
}

/* -------------------------------------------------------------
 * Newsletter & Inquiry CTA
 * ------------------------------------------------------------- */
.newsletter-box {
  background: linear-gradient(135deg, var(--giftana-primary-light) 0%, #FFF 100%);
  border: 2px solid var(--giftana-primary);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-md);
}

/* -------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------- */
.footer-main {
  background: var(--giftana-secondary);
  color: #94A3B8;
  font-size: 14px;
  padding-top: 70px;
}

.footer-title {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--giftana-primary);
}

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

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

.footer-links a {
  color: #CBD5E1;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--giftana-primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-top: 60px;
  font-size: 13px;
}

/* -------------------------------------------------------------
 * Floating WhatsApp Button
 * ------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #FFF;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Pulse animation */
.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* -------------------------------------------------------------
 * WooCommerce Cart Drawer & Modals
 * ------------------------------------------------------------- */
.offcanvas-cart .offcanvas-header {
  border-bottom: 1px solid var(--giftana-border);
  background: var(--giftana-light-bg);
}

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

.cart-item-img {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--giftana-border);
}

.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--giftana-secondary);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--giftana-primary-dark);
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid var(--giftana-border);
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .corporate-banner-section {
    padding: 50px 0;
  }
}

/* -------------------------------------------------------------
 * 6. Custom Dark Footer (Matching Screenshot)
 * ------------------------------------------------------------- */
.giftana-footer-main {
  background-color: #1A1D20 !important;
  color: #E5E7EB !important;
  font-family: var(--font-body);
}

.giftana-footer-main .text-muted,
.giftana-footer-main .footer-sub-label,
.giftana-footer-main .footer-newsletter-text,
.giftana-footer-main .footer-copy-text {
  color: #D1D5DB !important;
  opacity: 1 !important;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 18px;
}

.footer-sub-label {
  font-size: 13px;
  color: #D1D5DB !important;
}

.footer-contact-link {
  color: #F9FAFB !important;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #F84F31 !important;
}

.footer-address-text {
  color: #E5E7EB !important;
  font-size: 13.5px;
  line-height: 1.5;
}

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

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

.footer-menu-list li a {
  color: #D1D5DB !important;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu-list li a:hover {
  color: #FFFFFF !important;
  text-decoration: underline;
}

.footer-social-icon {
  color: #FFFFFF;
  font-size: 16px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social-icon:hover {
  color: var(--js-pink);
  transform: translateY(-2px);
}

.footer-newsletter-text {
  font-size: 13px;
  color: #9CA3AF;
  line-height: 1.4;
}

.btn-footer-submit {
  background: linear-gradient(135deg, var(--js-blue), var(--js-pink));
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 42px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(53, 144, 184, 0.35);
  transition: all 0.25s ease;
}

.btn-footer-submit:hover {
  background: linear-gradient(135deg, var(--js-blue-hover), var(--js-pink-hover));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 50, 141, 0.45);
}

/* Sub-footer bottom bar */
.footer-bottom-dark {
  background-color: #1A1A1A;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy-text {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 500;
}

.footer-disclaimer-text {
  font-size: 12px;
  color: #6B7280;
}

/* Payment Badges */
.footer-payment-badges {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-family: sans-serif;
}

.pay-badge.visa {
  background: #0057B8;
  color: #FFFFFF;
  font-style: italic;
}

.pay-badge.mastercard,
.pay-badge.maestro {
  background: #FFFFFF;
  padding: 0 8px;
}

.mc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.mc-dot.red {
  background: #EB001B;
}

.mc-dot.orange {
  background: #F79E1B;
  margin-left: -5px;
}

.mc-dot.blue {
  background: #0064E0;
  margin-left: -5px;
}

.pay-badge.amex {
  background: #007BC1;
  color: #FFFFFF;
}

.pay-badge.gpay {
  background: #FFFFFF;
  color: #1A1C1E;
  font-weight: 600;
}

.pay-badge.gpay .g-text {
  color: #4285F4;
  font-weight: 800;
}

/* -------------------------------------------------------------
 * Gifts By Budget Banner Section (Matching Attached Design)
 * ------------------------------------------------------------- */
.gifts-budget-banner-card {
  background: linear-gradient(110deg, #F84F31 0%, #F97316 45%, #FF8C00 100%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 36px rgba(248, 79, 49, 0.22);
  min-height: 440px;
  display: flex;
  align-items: center;
}

.budget-banner-title {
  font-family: var(--font-heading), 'Playfair Display', Georgia, serif;
  font-size: 54px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-budget-explore {
  background: #FFFFFF !important;
  color: #F84F31 !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 36px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-decoration: none;
}

.btn-budget-explore:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background: #FFFDF9 !important;
  color: #E03131 !important;
}

/* Floating Golden Price Circles */
.budget-bubbles-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.budget-bubble-item {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 35%, #FFF066 0%, #FFD43B 55%, #FCC419 100%);
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(252, 196, 25, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.6);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.budget-bubble-item:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 30px rgba(252, 196, 25, 0.6);
  color: #FFFFFF;
}

.budget-bubble-item.size-sm {
  width: 76px;
  height: 76px;
  font-size: 20px;
  font-weight: 800;
}

.budget-bubble-item.size-md {
  width: 90px;
  height: 90px;
  font-size: 24px;
  font-weight: 800;
}

.budget-bubble-item.size-lg {
  width: 106px;
  height: 106px;
  font-size: 28px;
  font-weight: 800;
}

.bubble-starts-text {
  position: absolute;
  top: -12px;
  left: -12px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.budget-banner-couple-img {
  max-height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
  transform: rotate(1deg);
  transition: transform 0.4s ease;
}

.gifts-budget-banner-card:hover .budget-banner-couple-img {
  transform: rotate(0deg) scale(1.02);
}

@media (max-width: 991.98px) {
  .budget-banner-title {
    font-size: 36px;
  }
  .budget-bubble-item.size-lg {
    width: 80px;
    height: 80px;
    font-size: 22px;
  }
  .budget-bubble-item.size-md {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }
}

/* -------------------------------------------------------------
 * Hero Swiper Navigation & Pagination (Matching giftana.com)
 * ------------------------------------------------------------- */
.hero-swiper {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-swiper-prev,
.hero-swiper-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-swiper-prev {
  left: 20px;
}

.hero-swiper-next {
  right: 20px;
}

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  background: var(--js-blue);
  border-color: var(--js-blue);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}

.hero-swiper-pagination {
  bottom: 18px !important;
  z-index: 20;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 10px;
  background: var(--js-pink);
}

@media (max-width: 767.98px) {
  .hero-swiper-prev,
  .hero-swiper-next {
    display: none;
  }
}

/* -------------------------------------------------------------
 * CATEGORY PAGE CUSTOM STYLES (MATCHING DESIGN MOCK)
 * ------------------------------------------------------------- */
.giftana-category-page-wrapper {
  min-height: 80vh;
}

.giftana-category-page-title {
  font-size: 26px;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.product-badge-discount-red {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #FF0000;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
  z-index: 10;
  line-height: 1;
  letter-spacing: 0.2px;
}

.giftana-sidebar-card {
  box-shadow: none;
}

.cat-tree-link {
  color: #333333;
  transition: all 0.2s ease;
}

.cat-tree-link:hover, .cat-tree-link.active-cat-link {
  color: #000000 !important;
  font-weight: 700 !important;
}

.view-as-group .view-as-btn {
  padding: 4px 10px;
  border-color: #D1D5DB;
  color: #4B5563;
}

.view-as-group .view-as-btn.active {
  background-color: #1F2937;
  color: #FFFFFF;
  border-color: #1F2937;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.35;
}

.product-color-name {
  font-size: 11px;
}

.product-card-img {
  transition: transform 0.3s ease;
}

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

/* Dynamic Grid Column switchers with Bootstrap Row override */
#giftanaCategoryGrid.grid-cols-4 > .col-product-item {
  flex: 0 0 25% !important;
  max-width: 25% !important;
  width: 25% !important;
}

#giftanaCategoryGrid.grid-cols-3 > .col-product-item {
  flex: 0 0 33.333333% !important;
  max-width: 33.333333% !important;
  width: 33.333333% !important;
}

#giftanaCategoryGrid.grid-cols-2 > .col-product-item {
  flex: 0 0 50% !important;
  max-width: 50% !important;
  width: 50% !important;
}

#giftanaCategoryGrid.grid-cols-1 > .col-product-item {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* 1 Column Single List View Styling */
#giftanaCategoryGrid.grid-cols-1 .giftana-product-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 24px !important;
  padding: 18px !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  background: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
}

#giftanaCategoryGrid.grid-cols-1 .product-img-wrapper {
  width: 200px !important;
  height: 200px !important;
  max-width: 200px !important;
  flex-shrink: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 14px !important;
}

#giftanaCategoryGrid.grid-cols-1 .product-card-body {
  flex-grow: 1 !important;
  padding-top: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

#giftanaCategoryGrid.grid-cols-1 .product-title {
  font-size: 18px !important;
  margin-bottom: 6px !important;
  -webkit-line-clamp: none !important;
}

#giftanaCategoryGrid.grid-cols-1 .product-rating-stars {
  font-size: 14px !important;
  margin-bottom: 10px !important;
}

#giftanaCategoryGrid.grid-cols-1 .product-price-box {
  font-size: 20px !important;
  margin-top: 4px !important;
}

@media (max-width: 991.98px) {
  #giftanaCategoryGrid.grid-cols-4 > .col-product-item,
  #giftanaCategoryGrid.grid-cols-3 > .col-product-item {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }
}

@media (max-width: 575.98px) {
  #giftanaCategoryGrid.grid-cols-4 > .col-product-item,
  #giftanaCategoryGrid.grid-cols-3 > .col-product-item,
  #giftanaCategoryGrid.grid-cols-2 > .col-product-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  #giftanaCategoryGrid.grid-cols-1 .giftana-product-card {
    flex-direction: column !important;
  }

/* -------------------------------------------------------------
 * SINGLE PRODUCT GALLERY STYLES (MATCHING DESIGN MOCK)
 * ------------------------------------------------------------- */
.vertical-thumb-strip {
  user-select: none;
}

.thumb-nav-arrow {
  background: transparent;
  border: none;
  color: #6B7280;
  font-size: 14px;
  padding: 4px;
  cursor: pointer;
  transition: color 0.2s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-nav-arrow:hover {
  color: #111827;
}

.thumb-list-vertical {
  padding: 2px;
}

.thumb-img-item {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.75;
  background-color: #F3F4F6;
}

.thumb-img-item:hover {
  opacity: 1;
  transform: scale(1.04);
}

.thumb-img-item.active {
  opacity: 1;
  border-color: #111827 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.main-featured-image-box {
  background-color: #F5F3EF !important;
  cursor: zoom-in;
  position: relative;
  overflow: hidden !important;
}

#mainProductFeaturedImg {
  transition: transform 0.15s ease-out, opacity 0.2s ease;
  pointer-events: none;
  transform-origin: 50% 50%;
  will-change: transform, transform-origin;
}

.main-featured-image-box.is-zoomed #mainProductFeaturedImg {
  transform: scale(2.5);
}

.gallery-arrow-btn,
.gallery-prev-btn,
.gallery-next-btn {
  display: none !important;
}

/* Ensure button icons don't block click events */
.remove-item *,
.decrease-qty *,
.increase-qty * {
  pointer-events: none !important;
}





