@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #6C63FF;
  --primary-dark: #4D44DB;
  --primary-light: #A5A1FF;
  --secondary: #FF6584;
  --dark: #1A1A2E;
  --darker: #0F0F1B;
  --light: #F8F9FA;
  --lighter: #FFFFFF;
  --gray: #ADB5BD;
  --dark-gray: #495057;
  --success: #28A745;
  --warning: #FFC107;
  --danger: #DC3545;
  --info: #17A2B8;
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

body.overflow {
  overflow: hidden;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  max-width: 1800px;
  margin: 0 auto;
}

.container p {
  color: #ffffff;
}

h1 {
  font-weight: 700;
  line-height: 10vw;
  color: #ffffff;
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  padding: 0.125em 0.5em;
  font-size: 0.75em;
  font-weight: 600;
  line-height: 1;
  vertical-align: middle;
  border-radius: 9999px;
  color: #6366f1;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-top {
  background-color: #e0f0ff;
  color: #007acc;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 6px;
  margin-left: 6px;
  font-weight: 500;
  line-height: 1.2;
}

.top-icon {
  display: inline-block;
  padding: 1px 6px;
  background-color: #e6e6fa;
  color: #4a90e2;
  border-radius: 8px;
  font-size: 0.8em;
  margin-left: 5px;
  vertical-align: middle;
  border: 1px solid #1e3a8a;
}

.sidebar {
  flex: 1 1 250px;
  max-width: 250px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group details {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.filter-group summary {
  background-color: #000000;
  color: white;
  padding: 10px 14px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.filter-options {
  padding: 10px;
  background: #f5faff;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 6px 12px;
  font-size: 0.9em;
  border: none;
  border-radius: 4px;
  background-color: #e0e0e0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.filter-btn:hover {
  background-color: #2E2E2E;
  color: white;
}

.filter-btn.active {
  background-color: #007bff;
  color: white;
  font-weight: bold;
}

.filter-btn.active .color-swatch {
  box-shadow: 0 0 0 3px #007bff;
  border-color: #007bff;
}

.filter-btn.reset {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

.filter-btn.reset:hover {
  background-color: #ddd;
}

.color-swatch {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.color-swatch.black   { background-color: #000; }
.color-swatch.white   { background-color: #fff; border: 1px solid #aaa; }
.color-swatch.red     { background-color: #e60023; }
.color-swatch.blue    { background-color: #007bff; }
.color-swatch.navy    { background-color: #001f3f; }
.color-swatch.yellow  { background-color: #ffdd00; }
.color-swatch.natural { background-color: #c2b280; } /* tu choisis celle-ci */
.color-swatch.abricot { background-color: #F28C28; } /* nouvelle couleur */
.color-swatch.ash { background-color: #D6D6D6; }
.color-swatch.atoll { background-color: #30CBF7; }
.color-swatch.bottlegreen { background-color: #325D05; }
.color-swatch.brown { background-color: #381C01; }

.color-swatches span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: inline-block;
}

.products {
  flex: 3 1 700px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-image {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customize-btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(90deg, #66b2ff 0%, #007bff 100%);
  color: white;
  padding: 6px 12px;
  font-size: 0.8em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.product-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 0.85em;
  font-weight: bold;
  color: #888;
}

.product-title {
  font-weight: bold;
  font-size: 1.05em;
}

.product-description {
  font-size: 0.9em;
  color: #555;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
}

.current-price {
  color: #e60023;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.discount {
  background-color: #ffe0e0;
  color: #e60023;
  font-size: 0.75em;
  padding: 2px 6px;
  border-radius: 4px;
}

.colors-available {
    display: inline-flex;
    align-items: center;      /* centre verticalement texte + icône */
    gap: 6px;                 /* espace entre texte et icône */
    font-size: 15px;          /* taille du texte */
    font-weight: 500;         /* léger gras pour la lisibilité */
    color: #959594;              /* gris élégant */
    cursor: pointer;          /* curseur pointeur pour l’interactivité */
    transition: color 0.2s ease;
}

.colors-available:hover {
    color: #000;              /* assombrissement au survol */
}

.colors-available img {
    display: block;           /* supprime l’espace blanc en dessous */
    width: 22px;              /* taille harmonisée avec le texte */
    height: 22px;
    border-radius: 50%;       /* icône arrondie */
    box-shadow: 0 0 3px rgba(0,0,0,0.1); /* petit relief */
}

 /* navbar */

.navbar {
  background: #ffffff;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  text-decoration: none;
  color: #122f48;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}

/* nav menu button */

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #132f48;
  transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.navbar .menu-items {
  display: flex;
  align-items: center;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #112f48;
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
}
.expand-btn:after {
  content: " \25BE";
  opacity: 0.4;
  margin-left: 5px;
}

.navbar .dropdown-menu,
.menu-right {
  position: absolute;
  background: #e9ecef;
  width: 190px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  top: 65px;
  border-top: 1px solid white;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}
.navbar .dropdown-menu,
.menu-left {
  left: unset;
  right: 0;
}
.navbar .menu-left {
  left: -100%;
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1.5rem;
  font-size: 14px;
}
.navbar .menu-item:hover {
  color: #ACACAC;
}

.menu-item.first-item {
  padding: 1.5rem 1rem;
}

.menu-item i {
  font-size: 18px; /* ou 24px pour plus gros */
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}

/* mega menu  */

.navbar .mega-menu {
  position: absolute;
  left: 0;
  width: 100vw;
  top: 65px;
  border-top: 1px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega-menu .content {
  background: #e9ecef;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.blog .content {
  grid-template-columns: repeat(4, 1fr);
}

.content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 3rem;
}

.content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.content .col img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.content .col .menu-title {
  color: #000000;
  font-size: 1.2rem;
  line-height: 3rem;
  font-weight: bold;
}

.content .col p {
  line-height: 1.2rem;
  margin-top: 5px;
  color: #112f48;
}

.content .col .mega-links {
  border-left: 1px solid #3c3c3c;
}

.content .col .read-more {
  font-size: 16px;
  display: flex;
  padding-top: 1rem;
  color: #03a9f4;
  transition: color 0.3s ease;
  justify-content: flex-end;
  padding-right: 10px;
}

.col .mega-links li,
.col .mega-links li a {
  padding: 0 1rem;
}

.menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.content .col .read-more:hover {
  color: #ff5722;
}

/* container */

.container p {
  color: #ffffff;
}

h1 {
  font-weight: 700;
  line-height: 10vw;
  color: #ffffff;
  text-transform: uppercase;
}

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #132f48;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #132f48;
}

.badge-top {
  background-color: #e0f0ff; /* bleu très léger */
  color: #007acc; /* bleu discret pour le texte */
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 6px;
  margin-left: 6px;
  font-weight: 500;
  line-height: 1.2;
}

/* Responsive style */

@media screen and (max-width: 1024px) {
  .navbar {
    padding: 10px 20px;
  }

  .overflow {
    overflow: hidden;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

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

  .menu-btn {
    display: flex;
  }

  .navbar .menu-items {
    position: fixed;
    height: 100%;
    max-height: initial;
    overflow-y: auto;
    width: 80%;
    top: 65px;
    left: 0;
    background: #fcfcfc;
    display: block;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
  }

  .menu-items.open {
    transform: translateY(0);
  }

  .menu-items li:first-child {
    margin-top: 20px;
  }

  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 1rem 1rem;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 102%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open + .sample {
    max-height: 100%;
    transform: scaleZ(1);
  }

  .expand-btn.open + .blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }
  .col .mega-links li {
    margin: 0;
  }
}
	  
	  .auth-buttons {
  display: flex;
  gap: 1rem;
}

.auth-buttons button {
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.login {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.login:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.signup:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hero {
  padding: 8rem 6rem 6rem;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url("../images/banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #9aa095 0%, #dcdfd9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* contour noir léger */
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.hero p {
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 580px;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.cta-button {
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button-secondary {
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: #000000;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover,
.cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.1);
}

.stats-container {
  display: flex;
  gap: 4rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

.hero-graphics {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(99, 102, 241, 0.1) 25%,
    rgba(99, 102, 241, 0) 70%
  );
  border-radius: 50%;
  filter: blur(40px);
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.card {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-1 {
  width: 300px;
  height: 200px;
  top: 20%;
  right: 20%;
  --rotation: -15deg;
  transform: rotate(var(--rotation));
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  width: 250px;
  height: 150px;
  top: 40%;
  right: 40%;
  --rotation: 10deg;
  transform: rotate(var(--rotation));
  animation: float 8s ease-in-out infinite;
}

.card-3 {
  width: 200px;
  height: 120px;
  top: 60%;
  right: 30%;
  --rotation: -5deg;
  transform: rotate(var(--rotation));
  animation: float 7s ease-in-out infinite;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: inherit;
}


@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotation));
  }
  50% {
    transform: translateY(-20px) rotate(var(--rotation));
  }
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero-graphics {
    opacity: 0.5;
  }
}

@media (max-width: 992px) {
  nav {
    padding: 1.5rem 3rem;
  }

  .hero {
    padding: 8rem 3rem 6rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1.5rem 2rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group {
    justify-content: center;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .stat-item {
    align-items: center;
  }

  .hero-graphics {
    display: none;
  }
}
	  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --bg-dark: #0a0a0a;
  --bg-card: rgba(255, 255, 255, 0.1);
  --border-color: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(var(--rotation));
  }
  50% {
    transform: translateY(-20px) rotate(var(--rotation));
  }
}

.tshirtpersonnalise-header {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tshirtpersonnalise-topbar {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}

.tshirtpersonnalise-topitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
  font-size: 0.9rem;
}

.tshirtpersonnalise-topitem img {
  width: 50%;
  max-width: 40px;
  height: auto;
  margin-bottom: 0.4rem;
}

.tshirtpersonnalise-topitem span {
  display: block;
  color: #333;
  font-weight: 500;
}

.tshirtpersonnalise-title {
  font-size: 1.8rem;
  margin: 1rem 0 0.5rem;
  color: #000000;
}

.tshirtpersonnalise-subtitle {
  font-size: 1rem;
  color: #555;
  margin-top: 0;
}

.tshirtpersonnalise-main {
  padding: 2rem 1rem;
  max-width: 1800px;
  margin: 0 auto;
}

.tshirtpersonnalise-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tshirtpersonnalise-card {
  background: white;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.tshirtpersonnalise-card:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tshirtpersonnalise-card img {
  width: 100%;
  height: auto;
  margin-bottom: 0.8rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.tshirtpersonnalise-card div {
  font-weight: bold;
}

.tshirtpersonnalise-card span {
  display: block;
  margin-top: 0.3rem;
  font-weight: normal;
  font-size: 0.85rem;
  color: #555;
}

.tshirtpersonnalise-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.tshirtpersonnalise-option {
  background: white;
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.tshirtpersonnalise-option.express {
  background: #ffe9e4;
  color: #d9534f;
  font-weight: bold;
}

.tshirtpersonnalise-option.devis {
  background: #e9f1f8;
}

.tshirtpersonnalise-option.inspiration {
  background: #c2fdf2;
}

.tshirtpersonnalise-option button {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  background: #333;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.tshirtpersonnalise-about {
  padding: 4rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #2e2e2e;
}

.tshirtpersonnalise-container {
  max-width: 1100px;
  margin: 0 auto;
}

.tshirtpersonnalise-section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #000000;
}

.tshirtpersonnalise-article {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.tshirtpersonnalise-article.reverse {
  flex-direction: row-reverse;
}

.tshirtpersonnalise-article img {
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tshirtpersonnalise-article div {
  flex: 1 1 300px;
}

.tshirtpersonnalise-article h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f1f1f;
}

.tshirtpersonnalise-article p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tshirtpersonnalise-article strong {
  color: #000000;
  font-weight: 600;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  height: 100%;
}

.logo-section {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-section img {
  max-width: auto;
  max-height: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: border-radius 0.3s ease, transform 0.3s ease;
}

.logo-section img:hover {
  border-radius: 16px;
  transform: translateY(-4px);
}

.text-section {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.text-section h1 {
    color: #dc2626;
    font-size: 3em;
    margin: 0 0 10px;
    font-weight: 700;
}

.text-section h2 {
  color: #dc2626;
  font-size: 1.2em;
  margin: 0 0 10px;
}

.text-section h3 {
  color: #000;
  font-size: 4em;
  font-weight: bold;
  margin: 0 0 10px;
}

.text-section p {
  color: #1f2937;
  font-size: 0.9em;
  line-height: 1.5;
  max-width: 500px;
  text-align: left;
}

.show-more-btn {
  background-color: #000000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  max-width: 300px;
}

.show-more-btn:hover {
  background-color: #444444;
}

.nononeed {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      width: 100%;
      padding: 20px;
      box-sizing: border-box;
    }
    .text-section {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      background-color: #fff;
      padding: 20px;
    }
    .text-section h1 {
      font-size: 3.5em;
      font-weight: bold;
      color: #000;
      margin: 0;
      line-height: 1.2;
    }
   
     

    .image-section {
      flex: 1;
      min-width: 300px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .image-section img {
      width: 100%;
      height: auto;
      display: block;
    }
    .category {
      position: absolute;
      bottom: 60px;
      left: 20px;
      color: #fff;
      font-size: 2em;
      font-weight: bold;
    }
    .browse-btn {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background-color: #fff;
      padding: 10px 20px;
      font-size: 1em;
      font-weight: bold;
      color: #000;
      text-decoration: none;
      border: 2px solid #000;
      display: inline-block;
    }
    .browse-btn:hover {
      background-color: #f0f0f0;
    }

.non-inspiration {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.title-section {
  text-align: center;
  margin-bottom: 20px;
}

.title-section h1 {
  font-size: 3em;
  color: #000000;
  margin: 0;
  font-weight: bold;
}

.title-section p {
  font-size: 1em;
  color: #666;
  margin: 5px 0 0;
}

.slider {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
}

.slider::-webkit-scrollbar {
  display: none;
}

.slide {
  min-width: 250px;
  height: 300px;
  position: relative;
  margin: 0 10px;
  flex: 0 0 auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: filter 0.3s ease;
}

.slide-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 0.9em;
  transition: bottom 0.3s ease;
}

.slide:hover img {
  filter: brightness(0.7);
}

.slide:hover .slide-content {
  bottom: 20px;
}

.slide-content a {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: bold;
}

.slide-content .social {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.slide-content .social a {
  color: #1e3a8a;
  font-size: 1.2em;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 1.5em;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.add-photo {
  text-align: center;
  margin-top: 20px;
}

.add-photo button {
  background-color: #000000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
}

.add-photo button:hover {
  background-color: #434343;
}

.modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.modern-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.modern-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modern-hero p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.modern-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.modern-section h2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 3.5rem;
  color: #000000;
}

.modern-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #000000;
  transition: width 0.4s ease;
}

.modern-section h2:hover::after {
  width: 100%;
}

.modern-list {
  display: grid;
  gap: 1.5rem;
}

.modern-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.modern-list-icon {
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.modern-card {
  background: var(--light);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.modern-card:hover {
  transform: translateY(-5px);
}

.modern-card h3 {
  margin-bottom: 0.5rem;
}

.modern-cta {
  text-align: center;
  margin-top: 3rem;
}

.modern-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.modern-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modern-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.innovation-nono {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 60%;
  margin: 4rem auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.innovation-nono__image {
  flex: 1 1 50%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.innovation-nono__image img {
  width: 100%;
  height: auto;
  display: block;
}

.innovation-nono__content {
  flex: 1 1 40%;
  max-width: 600px;
}

.innovation-nono__tag {
  color: #f9461c;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.innovation-nono__title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #1a1a1a;
}

.innovation-nono__text {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.innovation-nono__text em {
  font-style: italic;
}

.innovation-nono__button {
  background-color: #f9461c;
  color: white;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
  display: inline-block;
}

.innovation-nono__button:hover {
  background-color: #d33b17;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--darker), var(--dark));
  color: var(--lighter);
  padding: 5rem 1rem 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.containerb {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.footer-column p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-left: 1rem;
  transition: var(--transition);
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -5px;
  color: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--lighter);
  padding-left: 1.5rem;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.contact-info {
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--gray);
}

.contact-item i {
  margin-right: 0.75rem;
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lighter);
  font-size: 1.1rem;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
  overflow: hidden;
}

.social-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-link:hover::after {
  opacity: 1;
}

.social-link i {
  position: relative;
  z-index: 1;
}

.newsletter {
  margin-top: 1.5rem;
}

.newsletter p {
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lighter);
  font-size: 0.95rem;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: var(--gray);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.newsletter-btn {
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: none;
  background: var(--primary);
  color: var(--lighter);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  font-size: 0.85rem;
}

.copyright a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

.copyright a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column {
  animation: fadeIn 0.6s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero-graphics {
    opacity: 0.5;
  }
}

@media (max-width: 992px) {
  nav {
    padding: 1.5rem 3rem;
  }

  .hero {
    padding: 8rem 3rem 6rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1.5rem 2rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-group {
    justify-content: center;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .stat-item {
    align-items: center;
  }

  .hero-graphics {
    display: none;
  }

  .modern-hero h1 {
    font-size: 2rem;
  }

  .modern-hero p {
    font-size: 1rem;
  }

  .modern-section {
    padding: 1.5rem;
  }

  .innovation-nono {
    flex-direction: column;
    text-align: center;
  }

  .innovation-nono__image,
  .innovation-nono__content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .innovation-nono__title {
    font-size: 2rem;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .tshirtpersonnalise-topbar {
    flex-direction: column;
    align-items: center;
  }

  .tshirtpersonnalise-title {
    font-size: 1.4rem;
  }

  .tshirtpersonnalise-subtitle {
    font-size: 0.9rem;
  }

  .wrapper {
    flex-direction: column;
    text-align: center;
  }

  .logo-section,
  .text-section {
    width: 100%;
  }

  .logo-section img {
    height: auto;
    width: 100%;
  }

  .text-section {
    height: auto;
    justify-content: flex-start;
  }

  .text-section h2 {
    font-size: 1em;
  }

  .text-section h3 {
    font-size: 1.5em;
  }

  .text-section p {
    font-size: 0.8em;
  }

  .show-more-btn {
    font-size: 0.9em;
    padding: 8px 16px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column h3::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .auth-buttons {
    gap: 0.5rem;
  }

  .auth-buttons button {
    padding: 0.8rem 1rem;
  }

  .text-section h1 {
    font-size: 1.8em;
  }

  .category {
    font-size: 1em;
    padding: 8px 16px;
  }

  .browse-btn {
    font-size: 0.9em;
    padding: 8px 16px;
  }

  .title-section h1 {
    font-size: 1.2em;
  }

  .slide {
    min-width: 150px;
    height: 200px;
  }

  .slide-content {
    font-size: 0.8em;
  }

  .arrow {
    font-size: 1em;
    padding: 6px;
  }
}

 @media (max-width: 768px) {
      .text-section h1 {
        font-size: 1.8em;
      }
      .category {
        font-size: 1em;
        padding: 8px 16px;
      }
      .browse-btn {
        font-size: 0.9em;
        padding: 8px 16px;
      }
    }
    @media (max-width: 480px) {
      .text-section h1 {
        font-size: 1.5em;
      }
      .category {
        font-size: 0.9em;
        padding: 6px 12px;
      }
      .browse-btn {
        font-size: 0.8em;
        padding: 6px 12px;
      }
    }

