/** Shopify CDN: Minification failed

Line 699:16 Unexpected "{"
Line 699:25 Expected ":"
Line 699:31 Unexpected ","

**/
/* ===================================
   HIDE COLOR DROPDOWN IMMEDIATELY
   Prevents flash before JS loads
   =================================== */
select[name="options[Color]"],
select[name="options[Couleur]"],
.product-form__input--dropdown:has(select[name="options[Color]"]) .select,
.product-form__input--dropdown:has(select[name="options[Couleur]"]) .select,
.product-form__input--dropdown:has(select[name="options[Color]"]) .dropdown-swatch,
.product-form__input--dropdown:has(select[name="options[Couleur]"]) .dropdown-swatch,
.product-form__input--dropdown:has(select[name="options[Color]"]) .select .swatch,
.product-form__input--dropdown:has(select[name="options[Couleur]"]) .select .swatch,
.product-form__input--dropdown:has(select[name="options[Color]"]) .svg-wrapper,
.product-form__input--dropdown:has(select[name="options[Couleur]"]) .svg-wrapper {
  position: absolute !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  z-index: -9999 !important;
  transition: none !important;
}

/* ===================================
   UNiKtee Brand Colors
   Primary: #E15C4F
   =================================== */

:root {
  /* UNiKtee Brand Color */
  --color-primary: #E15C4F;
  --color-primary-dark: #C84A3E;
  --color-charcoal: #2C3E50;
  --color-white: #FFFFFF;

  /* Soft Pastels */
  --color-mint: #B8E6D5;
  --color-peach: #FFE5E0;
  --color-lavender: #E6D5F5;
  --color-light-bg: #FFF8F7;

  /* Functional */
  --color-success: #4CAF50;
  --color-neutral-light: #F5F5F5;
  --color-neutral-dark: #6B7280;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  --spacing-xxl: 96px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(225, 92, 79, 0.15);
  --shadow-md: 0 4px 16px rgba(225, 92, 79, 0.2);
  --shadow-lg: 0 8px 24px rgba(225, 92, 79, 0.25);

  /* Transitions */
  --transition-base: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-white);
  line-height: 1.6;
}

/* BUTTONS */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 14px 38px;
  border-radius: var(--radius-pill);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-block;
  text-decoration: none;
}

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

/* SECTIONS */
.section {
  padding: var(--spacing-xxl) var(--spacing-md);
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* HERO SECTION */
.hero-uniktee {
  background-color: var(--color-light-bg);
  padding: var(--spacing-xxl) 0;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-title {
  font-size: 64px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  color: var(--color-charcoal) !important;
  margin-bottom: var(--spacing-lg) !important;
}

.hero-highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 3px;
}

/* HERO FEATURES */
.hero-features {
  list-style: none;
  margin: var(--spacing-lg) 0;
  padding: 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 18px;
}

.check {
  background-color: var(--color-success);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

/* HERO IMAGES */
.hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.hero-image {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

.hero-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* CATEGORY ICONS */
.category-icons {
  padding: var(--spacing-xl) 0;
}

.category-icons__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.category-icon {
  text-align: center;
  text-decoration: none;
  color: var(--color-charcoal);
  transition: all var(--transition-base);
}

.category-icon__wrapper {
  background-color: white;
  border: 3px solid var(--color-primary);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: all var(--transition-base);
  margin: 0 auto var(--spacing-sm);
}

.category-icon:hover .category-icon__wrapper {
  background-color: var(--color-primary);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* PERSONALIZATION STEPS */
.personalization-steps {
  background-color: var(--color-mint);
  padding: var(--spacing-xxl) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
}

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

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 900;
  margin: 0 auto var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-charcoal);
}

/* TRUST BADGES */
.trust-badges {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-neutral-light);
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.trust-badge {
  text-align: center;
}

.trust-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto var(--spacing-md);
  box-shadow: var(--shadow-md);
}

/* PRODUCT CARDS */
.product-card {
  background: white;
  border: 2px solid var(--color-neutral-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.product-card__badge {
  display: none !important;
}

/* RATING BADGE */
.rating-badge {
  background: white;
  border: 2px solid var(--color-primary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* BADGE */
.badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 40px !important;
  }

  .section-title {
    font-size: 32px;
  }

  .category-icons__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .trust-badges__grid {
    grid-template-columns: 1fr;
  }
}

/* UTILITIES */
.text-primary {
  color: var(--color-primary);
}

.bg-primary {
  background-color: var(--color-primary);
}



/* ============================================
   IMPROVED PRODUCT CARD STYLING
   Clean, modern design with better layout
   ============================================ */

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid #F3F4F6;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary-coral, #E74C3C);
}

/* Image Wrapper - Fixed aspect ratio */
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio */
  overflow: hidden;
  background: #FAFBFC;
}

.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* NOUVEAU Badge - Clean positioning */
.product-card__badge {
  display: none !important;
}

/* Product Info Section */
.product-card__info {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

/* Product Title */
.product-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-charcoal, #2C3E50);
  margin: 0;
  line-height: 1.4;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.product-card__title a:hover {
  color: var(--color-primary-coral, #E74C3C);
}

/* Product Price */
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.price--regular {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-coral, #E74C3C);
}

.price--compare {
  font-size: 15px;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 500;
}

/* Grid Layout Improvements */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Featured Product Cards (same improvements) */
.featured-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid #F3F4F6;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary-coral, #E74C3C);
}

.featured-product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #FAFBFC;
}

.featured-product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-card:hover .featured-product-card__image {
  transform: scale(1.06);
}

.featured-product-card__badge {
  display: none !important;
}

.featured-product-card__content {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.featured-product-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-charcoal, #2C3E50);
  margin: 0;
  line-height: 1.4;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-product-card__price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.featured-product-card__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-coral, #E74C3C);
}

.featured-product-card__price--compare {
  font-size: 15px;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 500;
}

/* Empty state / No image placeholder */
.product-card__placeholder,
.featured-product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
  color: #9CA3AF;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   PRODUCT IMAGE GALLERY - THUMBNAIL SLIDER
   Main image on top, sliding thumbnails below
   ============================================ */

/* Main Product Media Gallery Container */
media-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Main Image Viewer */
#GalleryViewer-{{ section.id }},
.slider-mobile-gutter {
  width: 100%;
}

/* Main product image styling */
.product__media-item {
  border-radius: 16px;
  overflow: hidden;
  background: #FAFBFC;
}

.product__media-item img {
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.product__media-item:hover img {
  transform: scale(1.02);
}

/* Thumbnail Slider Container */
.thumbnail-slider {
  margin-top: 16px;
  padding: 8px 0;
  position: relative;
}

/* Thumbnail List - Horizontal scrolling */
.thumbnail-list {
  display: flex;
  gap: 12px;
  padding: 8px 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.thumbnail-list::-webkit-scrollbar {
  display: none;
}

/* Individual Thumbnail Item */
.thumbnail-list__item {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Thumbnail Button */
.thumbnail {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  background: white;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.thumbnail:hover {
  border-color: rgba(225, 92, 79, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 92, 79, 0.2);
}

/* Active/Selected Thumbnail */
.thumbnail[aria-current='true'],
.thumbnail:focus {
  border-color: var(--color-primary, #E15C4F);
  box-shadow: 0 4px 16px rgba(225, 92, 79, 0.35);
  transform: translateY(-2px);
}

/* Thumbnail Image */
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Thumbnail Navigation Arrows */
.thumbnail-slider .slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: white;
  border: 2px solid var(--color-primary, #E15C4F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail-slider .slider-button:hover {
  background: var(--color-primary, #E15C4F);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.thumbnail-slider .slider-button:hover .svg-wrapper {
  color: white;
}

.thumbnail-slider .slider-button--prev {
  left: -12px;
}

.thumbnail-slider .slider-button--next {
  right: -12px;
}

.thumbnail-slider .slider-button .svg-wrapper {
  color: var(--color-primary, #E15C4F);
  transition: color 0.3s ease;
}

/* Mobile Slider Buttons (on main image) */
.slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.slider-buttons .slider-button {
  width: 44px;
  height: 44px;
  background: white;
  border: 2px solid var(--color-primary, #E15C4F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-buttons .slider-button:hover {
  background: var(--color-primary, #E15C4F);
  transform: scale(1.1);
}

.slider-buttons .slider-button:hover .svg-wrapper {
  color: white;
}

/* Slider Counter */
.slider-counter {
  font-weight: 600;
  color: var(--color-charcoal, #2C3E50);
  font-size: 14px;
  padding: 0 8px;
}

/* Responsive Adjustments */
@media (max-width: 749px) {
  .thumbnail-list__item {
    width: 70px;
    height: 70px;
  }

  .thumbnail-slider .slider-button {
    width: 32px;
    height: 32px;
  }

  .thumbnail-slider .slider-button--prev {
    left: -8px;
  }

  .thumbnail-slider .slider-button--next {
    right: -8px;
  }
}

@media (min-width: 750px) {
  .thumbnail-list__item {
    width: 90px;
    height: 90px;
  }
}

@media (min-width: 990px) {
  .thumbnail-list__item {
    width: 100px;
    height: 100px;
  }

  .thumbnail-slider {
    padding: 12px 0;
  }
}

/* Product Gallery Layout Fix - Ensure thumbnails below */
.product__media-gallery {
  display: flex;
  flex-direction: column;
}

media-gallery[data-desktop-layout='thumbnail_slider'] {
  flex-direction: column !important;
}

media-gallery[data-desktop-layout='thumbnail_slider'] .thumbnail-slider {
  order: 2;
  width: 100%;
  max-width: 100%;
}

media-gallery[data-desktop-layout='thumbnail_slider'] slider-component:first-of-type {
  order: 1;
}
/* ============================================
   PROFESSIONAL PRODUCT DESCRIPTION SECTION
   Full-width description below the product
   ============================================ */

.product-description-section {
  margin-top: 48px;
  padding: 0;
  width: 100%;
}

.product-description-container {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.product-description-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary, #E15C4F) 0%, #ff7b6b 50%, var(--color-primary, #E15C4F) 100%);
  border-radius: 20px 20px 0 0;
}

.product-description-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.product-description-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary, #E15C4F) 0%, #ff7b6b 100%);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(225, 92, 79, 0.3);
}

.product-description-icon svg {
  width: 24px;
  height: 24px;
}

.product-description-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-charcoal, #2C3E50);
  margin: 0;
  letter-spacing: -0.5px;
}

.product-description-content {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
}

.product-description-content p {
  margin-bottom: 16px;
}

.product-description-content p:last-child {
  margin-bottom: 0;
}

.product-description-content h1,
.product-description-content h2,
.product-description-content h3,
.product-description-content h4,
.product-description-content h5,
.product-description-content h6 {
  color: var(--color-charcoal, #2C3E50);
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.product-description-content h2 {
  font-size: 20px;
}

.product-description-content h3 {
  font-size: 18px;
}

.product-description-content ul,
.product-description-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.product-description-content li {
  margin-bottom: 8px;
  position: relative;
}

.product-description-content ul li::marker {
  color: var(--color-primary, #E15C4F);
}

.product-description-content strong,
.product-description-content b {
  color: var(--color-charcoal, #2C3E50);
  font-weight: 600;
}

.product-description-content a {
  color: var(--color-primary, #E15C4F);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.product-description-content a:hover {
  border-bottom-color: var(--color-primary, #E15C4F);
}

/* Feature highlights within description */
.product-description-content .feature-highlight {
  background: linear-gradient(135deg, #fff8f7 0%, #ffefed 100%);
  border-left: 4px solid var(--color-primary, #E15C4F);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 12px 12px 0;
}

/* Hide the original description in sidebar */
.product__info-container .product__description {
  display: none \!important;
}

/* Responsive Design */
@media (max-width: 749px) {
  .product-description-section {
    margin-top: 32px;
  }

  .product-description-container {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .product-description-header {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .product-description-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .product-description-icon svg {
    width: 20px;
    height: 20px;
  }

  .product-description-title {
    font-size: 20px;
  }

  .product-description-content {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (min-width: 990px) {
  .product-description-container {
    padding: 48px 56px;
  }

  .product-description-title {
    font-size: 28px;
  }

  .product-description-content {
    font-size: 17px;
  }
}

/* ============================================
  }
}

/* ============================================

/* SMALLER PRODUCT TITLE - 20% reduction */
.product__title h1,
.product__title h2,
.product__title .h1,
.product__info-container h1,
.product__info-container h2.h1 {
  font-size: 26px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  margin: 0 0 6px 0 !important;
}

.product__title a.product__title {
  display: none !important;
}

.product__title {
  margin-bottom: 6px !important;
}

.product-description-section {
  margin-top: 20px !important;
}

/* TIGHT PRICE STYLING */
.price-item--regular,
.price__regular .price-item {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #E15C4F !important;
}

.price--large {
  margin: 4px 0 !important;
}

.price__container {
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

/* Taxes text smaller */
.product__tax {
  font-size: 12px !important;
  margin-top: 2px !important;
  margin-bottom: 10px !important;
  color: #888 !important;
}

/* Kickflip full-width layout: remove split columns when customizer is present */
@media (min-width: 990px) {
  .template-product .product:has(.kickflip-app-block) {
    grid-template-columns: 1fr !important;
  }

  .template-product .product:has(.kickflip-app-block) .product__media-wrapper {
    display: none !important;
  }

  .template-product .product:has(.kickflip-app-block) .product__info-wrapper {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .template-product .product:has(.kickflip-app-block) .product__info-container {
    max-width: none !important;
    width: 100% !important;
  }

  /* Do not let Kickflip column follow the scroll */
  .template-product .product:has(.kickflip-app-block) .product__column-sticky {
    position: static !important;
    top: auto !important;
  }
}

/* HIDE "PLUS DE MOYENS DE PAIEMENT" */
.installment,
.shopify-payment-terms,
[class*="payment-terms"],
form.installment,
.shopify-payment-button__more-options,
.shopify-payment-button__more-options-button,
shopify-accelerated-checkout .shopify-payment-button__more-options {
  display: none !important;
}

/* SMALLER DELIVERY ESTIMATION */
.product__delivery-estimation {
  margin: 10px 0 !important;
  padding: 10px 12px !important;
  font-size: 12px !important;
}

.delivery-estimation__title {
  font-size: 11px !important;
  margin-bottom: 2px !important;
}

.delivery-estimation__dates {
  font-size: 13px !important;
}

.delivery-estimation__note {
  font-size: 10px !important;
  margin-top: 4px !important;
}

.delivery-estimation__icon {
  width: 18px !important;
  height: 18px !important;
}

/* SOCIAL SHARE ON RIGHT SIDE */
.social-share {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 15px !important;
  padding-top: 15px !important;
  border-top: 1px solid #eee !important;
}

.social-share__label {
  font-size: 14px !important;
  color: #666 !important;
  font-weight: 600 !important;
}

.social-share__buttons {
  display: inline-flex !important;
  gap: 8px !important;
}

.social-share__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  transition: all 0.2s ease !important;
  color: white !important;
}

.social-share__btn--facebook {
  background: #1877F2 !important;
}
.social-share__btn--facebook:hover {
  background: #0d65d9 !important;
  transform: scale(1.1) !important;
}

.social-share__btn--twitter {
  background: #000000 !important;
}
.social-share__btn--twitter:hover {
  background: #333 !important;
  transform: scale(1.1) !important;
}

.social-share__btn--whatsapp {
  background: #25D366 !important;
}
.social-share__btn--whatsapp:hover {
  background: #1fb855 !important;
  transform: scale(1.1) !important;
}

.social-share__btn--pinterest {
  background: #E60023 !important;
}
.social-share__btn--pinterest:hover {
  background: #c7001e !important;
  transform: scale(1.1) !important;
}

.social-share__btn--email {
  background: #666 !important;
}
.social-share__btn--email:hover {
  background: #E15C4F !important;
  transform: scale(1.1) !important;
}

.social-share__btn svg {
  width: 18px !important;
  height: 18px !important;
}

/* TIGHTER DROPDOWN STYLING */
.product-form__input--dropdown {
  margin-bottom: 12px !important;
}

.product-form__input--dropdown label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2C3E50 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.select {
  position: relative !important;
  height: auto !important;
  min-height: 46px !important;
}

.product-form__input--dropdown select,
.select__select {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 0 44px 0 14px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #000000 !important;
  background-color: #fff !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E15C4F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  line-height: 46px !important;
  overflow: visible !important;
}

.product-form__input--dropdown select option,
.select__select option {
  color: #000000 !important;
  font-weight: 500 !important;
  padding: 10px !important;
}

.product-form__input--dropdown select:hover,
.select__select:hover {
  border-color: #E15C4F !important;
}

.product-form__input--dropdown select:focus,
.select__select:focus {
  outline: none !important;
  border-color: #E15C4F !important;
  box-shadow: 0 0 0 3px rgba(225, 92, 79, 0.15) !important;
}

.select .icon-caret,
.select svg {
  display: none !important;
}

/* Tighter quantity selector */
.product-form__quantity {
  margin-bottom: 12px !important;
}

/* Tighter buy buttons */
.product-form__buttons {
  margin-top: 8px !important;
}

/* ============================================
   CUSTOM IMAGE UPLOAD FORM
   ============================================ */

.custom-upload-section {
  margin: 20px 0;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  border: 2px dashed #ddd;
}

.custom-upload-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-upload-label,
.custom-comment-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
}

.custom-upload-label .required {
  color: #E15C4F;
  margin-left: 2px;
}

.custom-upload-input-wrapper {
  position: relative;
}

.custom-upload-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.custom-upload-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-upload-input:hover + .custom-upload-button {
  border-color: #E15C4F;
  color: #E15C4F;
}

.custom-upload-button svg {
  color: #E15C4F;
}

.custom-upload-filename {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #888;
}

.custom-upload-filename.has-file {
  color: #22c55e;
  font-weight: 500;
}

/* Success checkmark icon before filename */
.custom-upload-filename.has-file::before {
  content: "✓ ";
  font-weight: 700;
}

.custom-upload-help {
  margin-top: 6px;
  font-size: 12px;
  color: #999;
}

.custom-comment-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #2C3E50;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.custom-comment-textarea:focus {
  outline: none;
  border-color: #E15C4F;
}

.custom-comment-textarea::placeholder {
  color: #aaa;
}

/* ============================================
   COLOR SWATCH INLINE WITH DROPDOWN
   Shows color circle next to text, not above
   ============================================ */

/* Container for dropdown with swatch - display inline */
.product-form__input--dropdown .select {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-direction: row !important;
}

/* Swatch next to dropdown */
.product-form__input--dropdown .swatch {
  --swatch--size: 24px !important;
  flex-shrink: 0 !important;
  order: -1 !important;
  margin: 0 !important;
  position: absolute !important;
  left: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Add padding to select to make room for swatch */
.product-form__input--dropdown .select__select {
  padding-left: 46px !important;
}

/* Hide the swatch that appears above (if any duplicate) */
.product-form__input--dropdown > .swatch {
  display: none !important;
}

/* ============================================
   COLOR SWATCHES (Circles instead of dropdown)
   ============================================ */

/* Selected color name display */
.color-swatches__selected {
  margin-bottom: 12px;
}

.color-swatches__color-name {
  font-size: 15px;
  font-weight: 600;
  color: #2C3E50;
}

/* Swatches container */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

/* Individual swatch */
.color-swatches__item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(0,0,0,0.1);
  padding: 0;
  outline: none;
}

.color-swatches__item:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(0,0,0,0.1);
}

/* Selected state */
.color-swatches__item.is-selected {
  border-color: #E15C4F;
  transform: scale(1.1);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #E15C4F, 0 4px 8px rgba(0,0,0,0.15);
}

/* Light colors need visible border */
.color-swatches__item.is-light {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1), inset 0 0 0 2px rgba(0,0,0,0.08);
}

/* Disabled state */
.color-swatches__item.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.color-swatches__item.is-disabled::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 2px;
  background: rgba(0,0,0,0.5);
  transform: rotate(-45deg);
}

/* Checkmark for selected */
.color-swatches__item.is-selected::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Dark colors get white checkmark, light colors get dark checkmark */
.color-swatches__item.is-light.is-selected::before {
  color: #333;
  text-shadow: none;
}

/* Responsive - larger on mobile for easier touch */
@media (max-width: 749px) {
  .color-swatches__item {
    width: 42px;
    height: 42px;
  }

  .color-swatches {
    gap: 12px;
  }
}

/* Hide original dropdown when swatches are active */
.product-form__input--dropdown:has(.color-swatches) .select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

/* Prevent dropdown flash on color selects */
.product-form__input--dropdown:has(.color-swatches) select {
  pointer-events: none !important;
  opacity: 0 !important;
}



/* ============================================

/* ============================================

/* ============================================

/* ============================================
   FULL TITLE + PRICE BELOW (NO OVERLAP)
   Shows complete product titles
   ============================================ */

/* Card content - use flexbox column */
.card-wrapper .card__content,
.product-card-wrapper .card__content {
  display: flex !important;
  flex-direction: column !important;
  padding: 16px 14px 20px !important;
  gap: 0 !important;
}

.card-wrapper .card__content .card__information,
.product-card-wrapper .card__content .card__information {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  gap: 0 !important;
}

/* TITLE - Full display, no truncation */
.card-wrapper .card__heading,
.product-card-wrapper .card__heading,
.card .card__heading {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
  position: static !important;
  -webkit-line-clamp: unset !important;
}

.card-wrapper .card__heading a,
.product-card-wrapper .card__heading a,
.card .card__heading a {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
  color: #2C3E50 !important;
  text-decoration: none !important;
  overflow: visible !important;
  text-overflow: unset !important;
  -webkit-line-clamp: unset !important;
  white-space: normal !important;
  word-wrap: break-word !important;
}

/* Card-information container - holds price */
.card-wrapper .card-information,
.product-card-wrapper .card-information,
.card .card-information {
  display: block !important;
  width: 100% !important;
  margin-top: auto !important;
  padding-top: 12px !important;
  border-top: 1px solid #f0f0f0 !important;
  position: static !important;
  clear: both !important;
}

/* PRICE - Always below title */
.card-wrapper .card-information .price,
.product-card-wrapper .card-information .price,
.card .card-information .price {
  display: block !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  clear: both !important;
}

.card-wrapper .price__container,
.product-card-wrapper .price__container {
  display: block !important;
  position: static !important;
  background: none !important;
  padding: 0 !important;
}

.card-wrapper .price-item--regular,
.product-card-wrapper .price-item--regular,
.card .card-information .price-item--regular,
.card-wrapper .price-item,
.product-card-wrapper .price-item {
  display: inline-block !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #E15C4F !important;
  line-height: 1.3 !important;
  position: static !important;
}

/* Mobile */
@media (max-width: 749px) {
  .card-wrapper .card__heading a,
  .product-card-wrapper .card__heading a {
    font-size: 13px !important;
  }
  
  .card-wrapper .price-item--regular,
  .product-card-wrapper .price-item--regular {
    font-size: 18px !important;
  }
  
  .card-wrapper .card__content,
  .product-card-wrapper .card__content {
    padding: 12px 10px 16px !important;
  }
  
  .card-wrapper .card__heading,
  .product-card-wrapper .card__heading {
    margin-bottom: 12px !important;
  }
}

/* Desktop */
@media (min-width: 990px) {
  .card-wrapper .card__heading a,
  .product-card-wrapper .card__heading a {
    font-size: 15px !important;
  }
  
  .card-wrapper .price-item--regular,
  .product-card-wrapper .price-item--regular {
    font-size: 22px !important;
  }
}

/* ============================================
   END FULL TITLE FIX
   ============================================ */




/* =====================
   HOMEPAGE - REDUCE SPACING
   ===================== */

/* Reduce section padding globally */
.shopify-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Homepage specific - tighter sections */
.index-sections .shopify-section,
body.template-index .shopify-section {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* Hero section */
.elite-hero {
  padding: 40px 0 30px !important;
}

/* Trust badges */
.trust-section,
.trust-badges {
  padding: 25px 0 !important;
}

/* Featured collection */
.featured-collection,
.collection-list {
  padding: 30px 0 !important;
}

/* Category icons */
.category-icons {
  padding: 25px 0 !important;
}

/* Customer reviews */
.customer-reviews {
  padding: 30px 0 !important;
}

/* General section spacing */
section[class*="section"] {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* Remove extra margins from section titles */
.section-header,
.title-wrapper {
  margin-bottom: 20px !important;
}

h2.title,
.section__title {
  margin-bottom: 15px !important;
}

/* Mobile - even tighter */
@media (max-width: 768px) {
  .index-sections .shopify-section,
  body.template-index .shopify-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  
  .elite-hero {
    padding: 30px 0 20px !important;
  }
  
  .trust-section,
  .trust-badges,
  .category-icons {
    padding: 20px 0 !important;
  }
  
  .section-header,
  .title-wrapper {
    margin-bottom: 15px !important;
  }
}


/* HIDE PRODUCT CUSTOMIZER TITLE ON DESIGNLAB PAGE */
.page-title:contains("Product Customizer"),
h1:contains("Product Customizer"),
.inkybay-title,
.inkybay-heading,
[class*="designlab"] h1,
[class*="designlab"] .page-title,
.template-page h1.title,
.ibay-heading,
#inkybay-app h1,
.inkybay-pc-title {
  display: none !important;
}

/* Target specifically pages with designlab in URL */
body[data-template="page.designlab"] h1,
body[data-template="page.designlab"] .page-title {
  display: none !important;
}

/* ============================================
   LEBARAT STYLE OVERRIDES - HEADER + NAV
   ============================================ */

.header-wrapper {
  background: #0d1c3a !important;
  border-bottom: 0 !important;
  position: relative;
}

.uniktee-side-logo {
  position: absolute;
  left: var(--uniktee-logo-left-desktop, 42px);
  top: calc(50% + var(--uniktee-logo-y-offset-desktop, 0px));
  transform: translateY(-50%);
  z-index: 20;
  width: var(--uniktee-logo-width-desktop, 212px);
  display: block;
  line-height: 0;
}

.uniktee-side-logo__img {
  width: 100%;
  height: auto;
  display: block;
}

.uniktee-topbar {
  background: #000 !important;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.uniktee-topbar__inner {
  min-height: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  max-width: 1260px;
  margin: 0 auto;
  padding-left: calc(var(--uniktee-logo-left-desktop, 42px) + var(--uniktee-logo-width-desktop, 212px) + 34px);
  padding-right: 220px;
}

.uniktee-topbar__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 11px;
  opacity: 0.9;
  white-space: nowrap;
  grid-column: 2;
}

.uniktee-topbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 12px;
  grid-column: 3;
}

.uniktee-topbar__right a {
  color: #ff4a00;
  text-decoration: none;
  font-weight: 700;
}

.uniktee-promo-row {
  background: #0d1c3a;
  padding-top: 6px;
}

.uniktee-promo-row__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

.uniktee-promo-row__item {
  flex: 0 1 290px;
  min-width: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 6px 14px;
}

.uniktee-promo-row__item--light {
  background: #ebebeb;
  color: #0f1a30;
}

.uniktee-promo-row__item--yellow {
  background: #f2f200;
  color: #0f1a30;
}

.uniktee-promo-row__item--red {
  background: #f0181f;
  color: #ffffff;
}

.section-header .header {
  padding-top: 6px !important;
  padding-bottom: 8px !important;
  max-width: 1260px !important;
  margin: 0 auto !important;
  padding-left: calc(var(--uniktee-logo-left-desktop, 42px) + var(--uniktee-logo-width-desktop, 212px) + 34px) !important;
  padding-right: 220px !important;
}

.section-header .header__heading-logo-wrapper {
  max-width: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.section-header .header__inline-menu .list-menu {
  justify-content: center;
}

.section-header .list-menu__item--link {
  color: #f3f5fb !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
}

.section-header .list-menu__item--active {
  color: #e51e25 !important;
  text-decoration: none !important;
  box-shadow: inset 0 -3px 0 #e51e25;
}

.section-header .header__icons .header__icon--account,
.section-header .header__icons .header__icon--cart {
  display: none !important;
}

.section-header .header__icon--search,
.section-header .desktop-localization-wrapper {
  display: none !important;
}

.section-header .header__icons {
  width: 0 !important;
  min-width: 0 !important;
}

@media (max-width: 989px) {
  .uniktee-side-logo {
    width: var(--uniktee-logo-width-mobile, 152px);
    left: var(--uniktee-logo-left-mobile, 20px);
    top: calc(50% + var(--uniktee-logo-y-offset-mobile, 0px));
    transform: translateY(-50%);
  }

  .uniktee-topbar__meta {
    display: none;
  }

  .uniktee-topbar__inner {
    grid-template-columns: 1fr;
    padding-left: calc(var(--uniktee-logo-left-mobile, 20px) + var(--uniktee-logo-width-mobile, 152px) + 16px);
    padding-right: 14px;
  }

  .uniktee-topbar__right {
    grid-column: 1;
  }

  .uniktee-promo-row__inner {
    grid-template-columns: 1fr;
    padding-left: calc(var(--uniktee-logo-left-mobile, 20px) + var(--uniktee-logo-width-mobile, 152px) + 16px);
    padding-right: 14px;
  }

  .uniktee-promo-row__item {
    min-height: 28px;
    font-size: 13px;
  }

  .section-header .header__heading-logo-wrapper {
    max-width: 1px !important;
  }

  .section-header .header {
    padding-left: calc(var(--uniktee-logo-left-mobile, 20px) + var(--uniktee-logo-width-mobile, 152px) + 16px) !important;
    padding-right: 14px !important;
  }
}

/* ============================================
   LEBARAT STYLE OVERRIDES - HOMEPAGE
   ============================================ */

body.template-index .elite-hero {
  background: #ececf0 !important;
  padding-top: 34px !important;
  padding-bottom: 24px !important;
}

body.template-index .elite-hero__content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.template-index .elite-hero__title {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

body.template-index .elite-btn--primary {
  background: #f0181f !important;
  color: #101010 !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 24px rgba(240, 24, 31, 0.3) !important;
}

body.template-index .category-images {
  background: #0d1c3a !important;
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

body.template-index .category-images__title {
  color: #ffffff !important;
  letter-spacing: 2px !important;
}

body.template-index .category-card {
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.template-index .category-card__overlay {
  background: linear-gradient(to top, rgba(13, 28, 58, 0.92), rgba(13, 28, 58, 0.15), transparent) !important;
}

body.template-index .featured-collection {
  background: #f1f2f4 !important;
}

body.template-index .customer-reviews {
  background: #ffffff !important;
}

body.template-index .trust-section,
body.template-index .trust-badges {
  background: #0d1c3a !important;
}

body.template-index .trust-section h2,
body.template-index .trust-badges h2,
body.template-index .trust-section p,
body.template-index .trust-badges p {
  color: #ffffff !important;
}

/* ============================================
   HOMEPAGE - CLEAN CATEGORY/PRODUCT GRID STYLE
   ============================================ */
body.template-index .featured-collection-enhanced,
body.template-index .featured-collection {
  background: #ececec !important;
}

body.template-index .featured-collection .page-width,
body.template-index .featured-collection-enhanced .page-width {
  max-width: 1680px !important;
}

body.template-index .featured-collection .title-wrapper-with-link,
body.template-index .featured-collection-enhanced .title-wrapper-with-link {
  margin-bottom: 22px !important;
}

body.template-index .featured-collection .product-grid,
body.template-index .featured-collection-enhanced .product-grid {
  row-gap: 34px !important;
  column-gap: 22px !important;
}

body.template-index .featured-collection .card,
body.template-index .featured-collection-enhanced .card,
body.template-index .featured-collection .card__inner,
body.template-index .featured-collection-enhanced .card__inner {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.template-index .featured-collection .card__media,
body.template-index .featured-collection-enhanced .card__media {
  background: transparent !important;
}

body.template-index .featured-collection .card__media img,
body.template-index .featured-collection-enhanced .card__media img {
  object-fit: contain !important;
  padding: 0 !important;
}

body.template-index .featured-collection .card-information,
body.template-index .featured-collection-enhanced .card-information {
  text-align: center !important;
  max-width: 94%;
  margin: 0 auto;
}

body.template-index .featured-collection .card-information__text,
body.template-index .featured-collection-enhanced .card-information__text {
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  color: #1f1f1f !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 46px;
}

body.template-index .featured-collection .price,
body.template-index .featured-collection-enhanced .price {
  margin-top: 6px !important;
  font-size: 17px !important;
  color: #6a6a6a !important;
  font-weight: 500 !important;
}

@media (max-width: 989px) {
  body.template-index .featured-collection .product-grid,
  body.template-index .featured-collection-enhanced .product-grid {
    row-gap: 22px !important;
    column-gap: 12px !important;
  }

  body.template-index .featured-collection .card-information__text,
  body.template-index .featured-collection-enhanced .card-information__text {
    font-size: 14px !important;
    min-height: 36px;
  }

  body.template-index .featured-collection .price,
  body.template-index .featured-collection-enhanced .price {
    font-size: 14px !important;
  }
}

/* ============================================
   UNIKTEE BRAND PALETTE PASS
   ============================================ */
:root {
  --uniktee-coral: #e35f52;
  --uniktee-coral-dark: #cc4f42;
  --uniktee-soft: #f6f2f2;
  --uniktee-soft-2: #efe9e9;
  --uniktee-charcoal: #111319;
}

.header-wrapper {
  background: #ffffff !important;
}

.uniktee-topbar {
  background: var(--uniktee-coral) !important;
  color: #ffffff;
  border-bottom: 0 !important;
}

.uniktee-topbar__meta {
  color: #ffffff;
  opacity: 1;
}

.uniktee-topbar__right a {
  color: #ffffff;
}

.uniktee-promo-row {
  background: var(--uniktee-soft) !important;
  padding-top: 10px;
  padding-bottom: 4px;
}

.uniktee-promo-row__item {
  border-radius: 10px;
  min-height: 38px;
  border: 1px solid #e6dede;
}

.uniktee-promo-row__item--light {
  background: #ffffff;
  color: var(--uniktee-charcoal);
}

.uniktee-promo-row__item--yellow {
  background: var(--uniktee-coral);
  color: #ffffff;
  border-color: var(--uniktee-coral);
}

.uniktee-promo-row__item--red {
  background: var(--uniktee-charcoal);
  color: #ffffff;
  border-color: var(--uniktee-charcoal);
}

.section-header .header {
  background: #ffffff !important;
}

.section-header .list-menu__item--link {
  color: var(--uniktee-charcoal) !important;
}

.section-header .list-menu__item--active {
  color: var(--uniktee-coral) !important;
  box-shadow: inset 0 -3px 0 var(--uniktee-coral);
}

/* Custom clean header stack */
.uniktee-side-logo {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  width: var(--uniktee-logo-width-desktop, 212px);
}

/* topbar only keeps logo-offset padding; promo row and nav are centred separately */
.uniktee-topbar__inner {
  padding-left: calc(var(--uniktee-logo-left-desktop, 42px) + var(--uniktee-logo-width-desktop, 212px) + 34px);
  padding-right: 220px;
}

.uniktee-main-nav {
  background: #ffffff;
  border-top: 1px solid #ece8e8;
  border-bottom: 1px solid #ece8e8;
}

.uniktee-main-nav__inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 16px;
}
.uniktee-main-nav__inner::-webkit-scrollbar {
  display: none;
}

.uniktee-main-nav__link {
  text-decoration: none;
  color: #1a1d25;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
  letter-spacing: 0.2px;
}

.uniktee-main-nav__link.is-active,
.uniktee-main-nav__link:hover {
  color: #e35f52;
  background: rgba(227, 95, 82, 0.09);
  border-color: rgba(227, 95, 82, 0.28);
}
.uniktee-main-nav__link.is-active {
  font-weight: 700;
}

.uniktee-mobile-menu {
  display: none;
}

/* Dynamic top banner */
.uniktee-topbar__inner--dynamic {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 40px;
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.uniktee-topbar__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 4px;
}

.uniktee-topbar__social a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
}

.uniktee-topbar__social-icon {
  width: 13px;
  height: 13px;
  display: block;
  fill: currentColor;
}

.uniktee-topbar__ticker {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.uniktee-topbar__right--dynamic {
  grid-column: 3;
  justify-self: end;
  white-space: nowrap;
  gap: 8px;
}

.uniktee-topbar__right--dynamic a {
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.uniktee-topbar__cart-btn {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(13, 28, 58, 0.22);
  position: relative;
}

.uniktee-topbar__cart-icon {
  width: 14px;
  height: 14px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uniktee-topbar__cart-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
}

.uniktee-topbar__cart-count {
  position: absolute;
  top: -7px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #e35f52;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  border: 1px solid rgba(13, 28, 58, 0.15);
}

.uniktee-topbar__cart-count.is-empty {
  opacity: 0.65;
}

.uniktee-topbar__ticker-track {
  display: inline-flex;
  align-items: center;
  min-width: 300%;
  animation: unikteeTicker calc(var(--uniktee-banner-duration, 34s) * 2) linear infinite;
}

.uniktee-topbar__ticker-track span {
  display: inline-flex;
  align-items: center;
  min-width: 100%;
  padding-right: 70px;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

@keyframes unikteeTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hide default Dawn header row to avoid blank broken block */
.section-header .header-wrapper > .header {
  display: none !important;
}

@media (max-width: 989px) {
  /* ── Layout order ─────────────────────────────────────────── */
  .header-wrapper { display: flex; flex-direction: column; }
  .uniktee-topbar { order: 1; }
  .uniktee-side-logo {
    order: 2;
    position: relative; left: auto; top: auto; transform: none;
    margin: 12px auto 8px;
    width: var(--uniktee-logo-width-mobile, 152px);
    padding: 0; z-index: 3;
  }
  .uniktee-promo-row { order: 3; padding: 0; background: #f6f2f2; }
  .uniktee-main-nav  { order: 4; }

  /* ── Shared reset ─────────────────────────────────────────── */
  .uniktee-topbar__inner,
  .uniktee-promo-row__inner,
  .uniktee-main-nav__inner {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* ── Desktop nav hidden on mobile ─────────────────────────── */
  .uniktee-main-nav__inner { display: none; }

  /* ── Promo buttons: single horizontal scroll row ──────────── */
  .uniktee-promo-row__inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding: 10px 12px !important;
    gap: 8px !important;
    justify-content: flex-start !important;
  }
  .uniktee-promo-row__inner::-webkit-scrollbar { display: none; }
  .uniktee-promo-row__item {
    flex: 0 0 auto !important;
    min-height: 40px !important;
    font-size: 12.5px !important;
    padding: 0 16px !important;
    white-space: nowrap !important;
    border-radius: 10px !important;
  }

  /* ── Mobile menu trigger button ───────────────────────────── */
  .uniktee-mobile-menu {
    display: block;
    padding: 0;
    background: #ffffff;
    border-top: 1px solid #edf0f5;
  }
  .uniktee-mobile-menu__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    border: none;
    border-radius: 0;
    background: #ffffff;
    color: #1a1d25;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .uniktee-mobile-menu__summary::-webkit-details-marker { display: none; }
  .uniktee-mobile-menu__summary::marker { display: none; }

  /* Hamburger / close icon swap */
  .uniktee-mobile-menu__icon { display: flex !important; align-items: center; line-height: 0; }
  .uniktee-mobile-menu__icon--close { display: none !important; }
  .uniktee-mobile-menu[open] .uniktee-mobile-menu__icon--open  { display: none !important; }
  .uniktee-mobile-menu[open] .uniktee-mobile-menu__icon--close { display: flex !important; }
  .uniktee-mobile-menu[open] .uniktee-mobile-menu__summary { color: #e35f52; }

  /* ── Menu panel ────────────────────────────────────────────── */
  .uniktee-mobile-menu__panel {
    background: #ffffff;
    border-top: 2.5px solid #e35f52;
    box-shadow: 0 10px 32px rgba(0,0,0,.13);
  }

  /* ── All links ─────────────────────────────────────────────── */
  .uniktee-mobile-menu__link {
    display: flex;
    align-items: center;
    padding: 0 22px;
    min-height: 58px;
    text-decoration: none;
    color: #1a1d25;
    font-size: 16px;
    font-weight: 600;
    border-top: 1px solid #f0f3f8;
    -webkit-tap-highlight-color: rgba(227,95,82,.07);
    transition: background .13s, color .13s;
  }
  .uniktee-mobile-menu__link::after {
    content: '›';
    margin-left: auto;
    font-size: 24px;
    color: #c8d2de;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
  }
  .uniktee-mobile-menu__link:active  { background: #fff5f4; color: #e35f52; }
  .uniktee-mobile-menu__link.is-active {
    color: #e35f52; font-weight: 700; background: #fff8f7;
  }
  .uniktee-mobile-menu__link.is-active::after { color: #e35f52; }

  /* Utility links (Mon compte / Panier) */
  .uniktee-mobile-menu__link--utility {
    min-height: 50px;
    font-size: 14px;
    font-weight: 700;
    background: #f7f8fb;
    color: #4e5d72;
  }
  .uniktee-mobile-menu__link--utility:active { background: #eef0f5; color: #1a1d25; }

  /* Visual separator between utility and nav links */
  .uniktee-mobile-menu__sep {
    height: 4px;
    background: #edf0f5;
    border: none;
  }

  /* ── Topbar dynamic (mobile) ───────────────────────────────── */
  .uniktee-topbar__inner--dynamic {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    min-height: 38px;
    padding-top: 4px; padding-bottom: 4px;
    padding-left: 12px !important; padding-right: 12px !important;
  }
  .uniktee-topbar__right--dynamic { grid-column: 3; justify-self: end; }
  .uniktee-topbar__cart-btn  { width: 26px; height: 26px; }
  .uniktee-topbar__cart-count {
    top: -6px; right: -7px; min-width: 15px; height: 15px; font-size: 9px;
  }
  .uniktee-topbar__social { justify-content: flex-start; padding-left: 0; gap: 8px; }
  .uniktee-topbar__ticker-track span { font-size: 11px; padding-right: 22px; letter-spacing: .1px; }

  /* ── Keep sticky header locked ─────────────────────────────── */
  .section-header.shopify-section-group-header-group,
  .section-header, .shopify-section-header-sticky {
    position: sticky !important; top: 0 !important; transform: none !important;
  }
  .section-header.shopify-section-header-hidden,
  .shopify-section-header-hidden,
  .shopify-section-header-hidden.menu-open { top: 0 !important; transform: none !important; }
  .section-header.animate { transition: none !important; }
}

/* Remove header-to-content gap on homepage */
body.template-index .section-header {
  margin-bottom: 0 !important;
}

body.template-index #MainContent {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.template-index .content-for-layout > .shopify-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Hard global fix: no white gap under header */
.section-header {
  margin-bottom: 0 !important;
}

#MainContent,
.content-for-layout {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Homepage first section sits directly under header */
body.template-index .lb-top-promo {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Product pages: remove top section offset */
body.template-product product-info {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Collection/products listing pages: remove first section offset */
body.template-collection #MainContent > .shopify-section:first-child,
body.template-list-collections #MainContent > .shopify-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Collection sidebar: keep filters below header when sticky */
@media screen and (min-width: 990px) {
  .template-collection .facets-vertical {
    position: sticky;
    top: 120px;
    z-index: 4;
    align-self: flex-start;
    max-height: calc(100vh - 140px);
    overflow: auto;
  }

  .template-collection .facets-vertical .facets-wrapper,
  .template-collection .facets-vertical .facets-container {
    position: static;
  }
}
