/** Shopify CDN: Minification failed

Line 24:0 Comments in CSS use "/* ... */" instead of "//"
Line 415:0 Comments in CSS use "/* ... */" instead of "//"
Line 635:1 Expected "}" to go with "{"

**/
/* ========================================
   CUSTOM EFFECTS - KRZ-SHOP
   Effets visuels avancés inspirés de klicence et euinformatique
======================================== */

/* Variables de couleurs */
:root {
  --cyan-primary: #00D4D4;
  --cyan-glow: rgba(0, 212, 212, 0.5);
  --teal-dark: #0A2540;
  --gradient-cyan: linear-gradient(135deg, #0F3D5C 0%, #00D4D4 100%);
  --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

//* HEADER - DÉGRADÉ ASSOMBRI POUR MEILLEURE LISIBILITÉ */
.shopify-section-header,
.shopify-section-header .header,
.shopify-section-header .header-wrapper,
.shopify-section-header header {
  background: linear-gradient(135deg, #0F3D5C 0%, #16524d 100%) !important;}/* Menu texte blanc avec ombre pour meilleure lisibilité */

/* SECTION CARTES INFO - MÊME DÉGRADÉ QUE LE HEADER */
.krz-info-cards-wrapper {
  background: linear-gradient(135deg, #0F3D5C 0%, #16524d 100%) !important;
  padding: 4rem 2rem;
}

/* APPLIQUER LE DÉGRADÉ À TOUTES LES SECTIONS PRINCIPALES */
main#MainContent,
.shopify-section,
main#MainContent > .shopify-section,
body {
  background: linear-gradient(135deg, #0F3D5C 0%, #16524d 100%) !important;
}

/* Supprimer tout fond blanc/gris des sections */
.shopify-section {
  background: transparent !important;
}
.header__menu-item,
.header__inline-menu a,
.header__icon,
.header svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* GLASSMORPHISM - Effet verre dépoli */
.multicolumn .content-container {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* CARTES AVEC DÉGRADÉS */
.multicolumn-card {
  position: relative;
  background: var(--gradient-cyan);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.multicolumn-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 212, 0.2) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

.multicolumn-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 212, 212, 0.4),
              0 0 40px rgba(0, 212, 212, 0.2);
}

/* EFFET NÉON CYAN */
.multicolumn-card__title,
.button--primary {
  text-shadow: 0 0 10px var(--cyan-glow),
               0 0 20px var(--cyan-glow),
               0 0 30px var(--cyan-glow);
}

.button--primary {
  position: relative;
  background: var(--gradient-cyan);
  border: 2px solid var(--cyan-primary);
  box-shadow: 0 0 20px var(--cyan-glow),
              inset 0 0 20px rgba(0, 212, 212, 0.1);
  transition: all 0.3s ease;
}

.button--primary::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-cyan);
  border-radius: inherit;
  z-index: -1;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button--primary:hover::before {
  opacity: 1;
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--cyan-glow),
              0 10px 30px rgba(0, 212, 212, 0.3),
              inset 0 0 30px rgba(0, 212, 212, 0.2);
}

/* BADGES ANIMÉS */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-purple);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ICÔNES ANIMÉES */
.icon-animated {
  display: inline-block;
  font-size: 3rem;
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px var(--cyan-glow));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--cyan-glow));
  }
}

/* ANIMATIONS AU SCROLL */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out;
}

/* EFFET ROTATION INFINIE */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* BOX SHADOWS ÉLABORÉES */
.card-premium {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(255, 255, 255, 0.1),
              0 0 60px -10px var(--cyan-glow);
}

/* HOVER EFFECT PREMIUM */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 80px rgba(0, 212, 212, 0.3);
}

/* LOADING SHIMMER */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, 
              rgba(255, 255, 255, 0) 0%, 
              rgba(0, 212, 212, 0.3) 50%, 
              rgba(255, 255, 255, 0) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .multicolumn-card {
    padding: 1.5rem;
  }
}

/* ========================================
   KRZ-SHOP - EFFETS CSS PREMIUM
   Hero, Cartes, Animations Klicence-style
======================================== */

/* TITRE HERO AVEC DÉGRADÉ BLEU/VERT ÉMERAUDE */
.krz-hero-title {
    background: linear-gradient(135deg, #0F3D5C 0%, #00D4D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* BLOC HERO GLASSMORPHISM */
.krz-hero-wrapper {
  position: relative;
  padding: 3rem 2rem;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.75);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(148, 163, 184, 0.35);
  text-align: center;
  margin: 2rem auto;
  max-width: 1200px;
}

.krz-hero-wrapper p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ANIMATION FADE UP */
.krz-fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: krz-fade-up 0.7s ease-out forwards;
}

@keyframes krz-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GRILLE CARTES AVANTAGES */
.krz-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .krz-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* CARTE AVANTAGE ANIMÉE */
.krz-benefit-card {
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: center;
}

.krz-benefit-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.9);
  border-color: #10b981;
}

.krz-benefit-card h3 {
  color: #10b981;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.krz-benefit-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
}

/* SECTION FEATURE TYPE KLICENCE */
.krz-feature-section {
  margin: 4rem auto;
  padding: 0 1rem;
  max-width: 1200px;
}

.krz-feature-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 968px) {
  .krz-feature-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.krz-feature-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.krz-feature-text ul {
  list-style: none;
  padding: 0;
}

.krz-feature-text li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.krz-feature-text li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.3rem;
}

.krz-feature-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
  transition: transform 0.3s ease;
}

.krz-feature-media img:hover {
  transform: scale(1.02);
}

/* RÉDUIRE L'ESPACEMENT ENTRE LES CARTES PRODUITS */
.product-grid,
.collection .grid,
.featured-collection .grid,
.product-recommendations .grid {
  gap: 1rem !important;  column-gap: 0 !important;
  column-gap: 1rem !important;
//* Supprimer les bordures et fond des cartes produits */
.product-card,
.product-card__wrapper,
.card,
.card__inner,
.card-wrapper,
.grid__item .card {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Afficher les avis/étoiles sous les produits */
.product-card .rating,
.card .rating,
.product__text .rating {
  display: block !important;
  visibility: visible !important;
  margin: 0.5rem 0 !important;
}

/* BADGE PROMOTION - TEXTE AVEC DÉGRADÉ */
.badge,
.card__badge,
.product__badge,
.badge--promotion {
  border: none !important;
    box-shadow: none !important;

    .badge--promotion::before {
  display: none !important;
}

/* BADGE TOP VENTE - AVEC DÉGRADÉ */
.badge--top-vente {
  border: none !important;
  box-shadow: none !important;
}

.badge--top-vente::before {
  display: none !important;
}

/* ========================================
   NOUVELLE CARTE PRODUIT - DESIGN MODERNE
   ======================================== */

/* Conteneur de la carte */
.card-wrapper {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* En-tête de la carte avec badge et lien Voir */
.card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  min-height: 30px;
}

.card__view-link {
  color: #5e35b1;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.card__view-link:hover {
  color: #3d7ba8;
  transform: translateX(3px);
}

/* Image du produit */
.card__media {
  position: relative;
  margin-bottom: 15px;
  overflow: visible;
}

/* Titre du produit */
.card__heading {
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
  line-height: 1.4;
  min-height: 44px;
}

/* Description courte */
.card__description {
  font-size: 13px;
  color: #718096;
  margin-bottom: 12px;
  line-height: 1.5;
  min-height: 40px;
}

/* Section étoiles et avis */
.card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.card__stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}

.card__rating-score {
  font-weight: 600;
  color: #1a202c;
  font-size: 14px;
}

.card__rating-count {
  color: #9ca3af;
  font-size: 13px;
}

/* Prix */
.card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.card__price-compare {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 14px;
}

.card__price-current {
  color: #ef4444;
  font-size: 20px;
  font-weight: 700;
}

/* Boutons quantité et ajout au panier */
.card__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.card__quantity {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f3f4f6;
  border-radius: 10px;
  padding: 8px 15px;
}

.card__quantity-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.card__quantity-btn:hover {
  color: #1a202c;
  transform: scale(1.1);
}

.card__quantity-input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  color: #1a202c;
}

.card__add-btn {
  flex: 1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card__add-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}