body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fffaf7;
    color: #333;
}

nav {
    background: #d97aa7;
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
}

h1 {
    color: #a94f76;
}

footer {
    background: #f4e7ee;
    padding: 15px;
    text-align: center;
    margin-top: 30px;
}

/* ==============================
   K-BEAUTY COSMETICS - STYLE.CSS
   Palette : Peach & Corail
   ============================== */

:root {
  --primary: #ff7f6e;
  --primary-dark: #e96a58;
  --secondary: #ffc4b3;
  --background: #fff7f3;
  --background-soft: #fff1eb;
  --white: #ffffff;
  --dark: #6b4a3a;
  --text: #3b2b24;
  --muted: #8b6f63;
  --accent: #b68b7a;
  --border: #f6e7df;
  --shadow: 0 12px 35px rgba(107, 74, 58, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

/* ==============================
   HEADER
   ============================== */

header {
  width: 100%;
  padding: 22px 8%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  transition: var(--transition);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

/* ==============================
   HERO
   ============================== */

.hero {
  min-height: 82vh;
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  background:
    radial-gradient(circle at top left, rgba(255, 196, 179, 0.7), transparent 35%),
    linear-gradient(135deg, #fff7f3 0%, #ffe8df 100%);
}

.hero-content {
  max-width: 620px;
}

.hero .tag,
.tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 22px rgba(255, 127, 110, 0.28);
}

.btn:hover,
button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: none;
}

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

.hero-image {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 196, 179, 0.7), rgba(255, 255, 255, 0.75)),
    url("images/hero.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image::before {
  content: "Glass Skin";
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.hero-image::after {
  content: "K-Beauty Routine";
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  border-radius: var(--radius-md);
  font-weight: 800;
  box-shadow: var(--shadow);
}

/* ==============================
   SECTIONS
   ============================== */

section {
  padding: 80px 8%;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-title h2,
.categories h2,
.products h2,
.newsletter h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--dark);
  margin-bottom: 14px;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

/* ==============================
   CATEGORIES
   ============================== */

.categories {
  background: var(--white);
  text-align: center;
}

.card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  color: var(--dark);
  font-weight: 800;
  transition: var(--transition);
}

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

.card-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 24px;
}

/* ==============================
   PRODUCTS
   ============================== */

.products {
  background: var(--background);
  text-align: center;
}

.product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(107, 74, 58, 0.07);
  transition: var(--transition);
  overflow: hidden;
}

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

.product img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--background-soft);
  margin-bottom: 18px;
}

.product h3 {
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 8px;
}

.product .brand {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.product p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.price {
  display: block;
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}

.product button {
  width: 100%;
  padding: 13px 20px;
}

/* ==============================
   ROUTINE SECTION
   ============================== */

.routine {
  background: linear-gradient(135deg, #fff 0%, #fff1eb 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 22px;
  margin-top: 35px;
}

.step {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

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

.step-number {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.step h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

/* ==============================
   AVIS / BENEFITS
   ============================== */

.benefits {
  background: var(--white);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.benefit {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--background);
  border: 1px solid var(--border);
  text-align: center;
}

.benefit h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.benefit p {
  color: var(--muted);
  font-size: 14px;
}

/* ==============================
   NEWSLETTER
   ============================== */

.newsletter {
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(255, 127, 110, 0.2), transparent 32%),
    linear-gradient(135deg, #ffe2d8 0%, #fff7f3 100%);
}

.newsletter-box {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.newsletter p {
  color: var(--muted);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  outline: none;
  color: var(--text);
  background: var(--white);
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

/* ==============================
   CONTACT / FORMULAIRES
   ============================== */

.form-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 38px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--background);
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* ==============================
   FOOTER
   ============================== */

footer {
  background: var(--dark);
  color: var(--white);
  padding: 55px 8% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 35px;
}

footer h3,
footer h4 {
  margin-bottom: 16px;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

footer a {
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}

footer a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

/* ==============================
   PANIER / BADGES
   ============================== */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 950px) {
  header {
    padding: 18px 5%;
    flex-direction: column;
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 70px 5%;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  section {
    padding: 65px 5%;
  }

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

@media (max-width: 620px) {
  .logo {
    font-size: 24px;
  }

  nav a {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 58px 5%;
  }

  .hero-image {
    min-height: 300px;
  }

  .newsletter-box,
  .form-container {
    padding: 28px 20px;
  }

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

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

  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-item img {
    margin: 0 auto;
  }
}

/* ==============================
   PS BEAUTY NAVBAR - ISOLATED CSS
   ============================== */

#navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.ps-navbar {
  width: 100%;
  padding: 14px 8%;
  background: transparent;
  background-color: transparent;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  border-bottom: 1px solid rgba(255, 196, 179, 0.18);
  box-shadow: 0 8px 30px rgba(107, 74, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
}

body {
  padding-top: 96px;
}


.ps-navbar-logo {
  color: var(--primary);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
}

.ps-navbar-logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(107, 74, 58, 0.08));
}


.ps-navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.ps-navbar-item {
  position: relative;
  margin: 0;
  padding: 0;
}

.ps-navbar-link {
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 2px;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  transition: color 0.25s ease;
}

.ps-navbar-link:hover {
  color: var(--primary);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.ps-navbar-link::after {
  content: "" !important;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.ps-navbar-link:hover::after {
  width: 100%;
}

.ps-navbar-arrow {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.ps-navbar-dropdown:hover .ps-navbar-arrow {
  transform: rotate(180deg);
}

.ps-navbar-dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 285px;
  margin: 0;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 6000;
}

.ps-navbar-dropdown:hover .ps-navbar-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ps-navbar-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.ps-navbar-dropdown-menu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}

.ps-navbar-dropdown-menu a:hover {
  background: var(--background-soft);
  color: var(--primary);
}

.ps-navbar-badge {
  min-width: 21px;
  height: 21px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 950px) {
  .ps-navbar {
    padding: 12px 5%;
    flex-direction: column;
    gap: 12px;
  }

  body {
    padding-top: 138px;
  }

  .ps-navbar-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .ps-navbar-dropdown-menu {
    left: 0;
    transform: translateY(8px);
  }

  .ps-navbar-dropdown:hover .ps-navbar-dropdown-menu {
    transform: translateY(0);
  }
}

@media (max-width: 620px) {
  .ps-navbar-logo {
    font-size: 24px;
  }

  .ps-navbar-logo-img {
    height: 58px;
  }

  body {
    padding-top: 132px;
  }

  .ps-navbar-link {
    font-size: 14px;
  }

  .ps-navbar-dropdown-menu {
    width: 245px;
  }
}

/* ==============================
   PS BEAUTY BOUTIQUE PAGE CSS
   ============================== */

.shop-hero {
  width: 100%;
  padding: 46px 8% 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 196, 179, 0.5), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 127, 110, 0.1), transparent 28%),
    linear-gradient(135deg, #fff7f3 0%, #ffe8df 100%);
}

.shop-hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.shop-hero-content h1 {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin-bottom: 10px;
}

.shop-hero-content p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.shop-section {
  width: 100%;
  padding: 55px 8% 95px;
  background: var(--background);
}

.shop-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 4fr);
  gap: 34px;
  align-items: flex-start;
}

.shop-sidebar {
  position: sticky;
  top: 115px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(107, 74, 58, 0.07);
}

.shop-sidebar h2 {
  color: var(--dark);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 16px;
}

.shop-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-filter {
  width: 100%;
  min-height: auto;
  padding: 10px 12px;
  justify-content: flex-start;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background);
  color: var(--dark);
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.shop-filter:hover,
.shop-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateX(3px);
  box-shadow: 0 8px 18px rgba(255, 127, 110, 0.2);
}

.shop-products-area {
  width: 100%;
  min-width: 0;
}

.shop-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.shop-product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(107, 74, 58, 0.07);
  transition: var(--transition);
  overflow: hidden;
}

.shop-product:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.shop-product.hidden {
  display: none;
}

.shop-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  background: var(--background-soft);
  margin-bottom: 15px;
}

.shop-product-category {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--background-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.shop-product h3 {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.shop-product p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 15px;
}

.shop-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.shop-product-bottom .price {
  margin-bottom: 0;
  white-space: nowrap;
}

.shop-product-bottom button {
  padding: 10px 16px;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(255, 127, 110, 0.2);
}

@media (max-width: 1100px) {
  .shop-layout {
    grid-template-columns: 220px 1fr;
    gap: 24px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .shop-section {
    padding: 45px 5% 80px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .shop-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-filter {
    text-align: center;
    justify-content: center;
  }

  .shop-filter:hover,
  .shop-filter.active {
    transform: translateY(-2px);
  }
}

@media (max-width: 620px) {
  .shop-hero {
    padding: 38px 5% 28px;
  }

  .shop-hero-content h1 {
    font-size: 30px;
  }

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

  .shop-filters {
    grid-template-columns: 1fr;
  }

  .shop-product-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-product-bottom button {
    width: 100%;
  }
}

/* ==============================
   HOME BANNER FULL WIDTH
   ============================== */

.hero-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 !important;
  background: transparent;
  overflow: hidden;
}

.hero-banner-link {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  min-height: unset !important;
  display: block;
  object-fit: contain;
  border: none;
  margin: 0;
  padding: 0;
}
/* ==============================
   PS BEAUTY FOOTER
   ============================== */

.ps-footer {
  background: linear-gradient(135deg, #3b2b24 0%, #6b4a3a 100%);
  color: var(--white);
  padding: 64px 8% 26px;
  margin-top: 0;
}

.ps-footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 42px;
  max-width: 1400px;
  margin: 0 auto 42px;
}

.ps-footer-logo {
  width: 145px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.ps-footer-column h3 {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 18px;
}

.ps-footer-column p,
.ps-footer-column a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.8;
}

.ps-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ps-footer-column li {
  margin-bottom: 11px;
}

.ps-footer-column a {
  text-decoration: none;
  transition: var(--transition);
}

.ps-footer-column a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.ps-footer-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.ps-footer-newsletter input {
  flex: 1;
  padding: 13px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: none;
}

.ps-footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.ps-footer-newsletter button {
  padding: 13px 20px;
  white-space: nowrap;
  box-shadow: none;
}

.ps-footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.ps-footer-bottom p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.ps-footer-bottom strong {
  color: var(--secondary);
}

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

@media (max-width: 680px) {
  .ps-footer {
    padding: 50px 5% 24px;
  }

  .ps-footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ps-footer-newsletter {
    flex-direction: column;
  }

  .ps-footer-newsletter button {
    width: 100%;
  }
}

/* ==============================
   FOOTER LOGO CENTER FIX
   ============================== */

.ps-footer-column:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ps-footer-column:first-child .ps-footer-logo {
  margin-left: auto;
  margin-right: auto;
}

/* ==============================
   STICKY FOOTER FIX
   ============================== */

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.ps-footer {
  margin-top: auto;
  flex-shrink: 0;
}

/* ==============================
   PS BEAUTY CONTACT PAGE
   ============================== */

.contact-hero {
  width: 100%;
  padding: 90px 8% 70px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255, 196, 179, 0.68), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 127, 110, 0.14), transparent 30%),
    linear-gradient(135deg, #fff7f3 0%, #ffe8df 100%);
}

.contact-hero h1 {
  color: var(--dark);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.contact-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.contact-page {
  padding: 70px 8% 100px;
  background: var(--background);
}

.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr);
  gap: 34px;
  align-items: flex-start;
}

.contact-informations,
.contact-form-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.contact-informations {
  padding: 32px;
  position: sticky;
  top: 125px;
}

.contact-form-container {
  padding: 36px;
}

.contact-informations h2,
.contact-form-container h2 {
  color: var(--dark);
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-card {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-card:first-of-type {
  padding-top: 0;
}

.contact-card:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-card h3 {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-group label {
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 0;
}

.contact-group input,
.contact-group select,
.contact-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--background);
  color: var(--text);
  font-size: 15px;
  padding: 15px 16px;
  outline: none;
  transition: var(--transition);
}

.contact-group input:focus,
.contact-group select:focus,
.contact-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 127, 110, 0.12);
}

.contact-group textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  margin-top: 4px;
  padding: 15px 28px;
}

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

  .contact-informations {
    position: static;
  }
}

@media (max-width: 620px) {
  .contact-hero {
    padding: 60px 5% 45px;
  }

  .contact-page {
    padding: 50px 5% 80px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-informations,
  .contact-form-container {
    padding: 24px;
  }

  .contact-informations h2,
  .contact-form-container h2 {
    font-size: 24px;
  }
}
/* ==============================
   PS BEAUTY CART PAGE
   ============================== */

.cart-page {
  width: 100%;
  padding: 70px 8% 100px;
  background: var(--background);
}

.cart-header {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.cart-header h1 {
  color: var(--dark);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.cart-header p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-product {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto auto auto;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 8px 24px rgba(107, 74, 58, 0.07);
}

.cart-product-image img,
.cart-product img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--background-soft);
}

.cart-product-info span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.cart-product-info small {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}

.cart-product-info h3 {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.cart-product-info h3 a:hover {
  color: var(--primary);
}

.cart-product-info p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: var(--background-soft);
  border: 1px solid var(--border);
}

.cart-quantity button {
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  box-shadow: none;
  font-size: 16px;
}

.cart-quantity strong {
  min-width: 22px;
  text-align: center;
  color: var(--dark);
  font-size: 14px;
}

.cart-line-total {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.cart-remove {
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
}

.cart-remove:hover {
  background: var(--background-soft);
  color: var(--primary);
  transform: none;
}

.cart-summary {
  position: sticky;
  top: 125px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow);
}

.cart-summary h2 {
  color: var(--dark);
  font-size: 24px;
  margin-bottom: 20px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.summary-line strong {
  color: var(--dark);
}

.summary-line.total {
  border-bottom: none;
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
}

.summary-line.total strong {
  color: var(--primary);
}

.cart-note {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 22px;
}

.checkout-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 127, 110, 0.24);
  transition: var(--transition);
  margin-bottom: 14px;
}

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

.continue-shopping {
  display: block;
  text-align: center;
  color: var(--primary);
  font-weight: 900;
}

.continue-shopping:hover {
  color: var(--primary-dark);
}

.cart-empty {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 52px 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cart-empty h2 {
  color: var(--dark);
  font-size: 30px;
  margin-bottom: 10px;
}

.cart-empty p {
  color: var(--muted);
  margin-bottom: 22px;
}

@media (max-width: 1080px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 780px) {
  .cart-page {
    padding: 55px 5% 85px;
  }

  .cart-product {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: flex-start;
  }

  .cart-product-image img,
  .cart-product img {
    width: 88px;
    height: 88px;
  }

  .cart-quantity,
  .cart-line-total,
  .cart-product form:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* ==============================
   PS BEAUTY CHECKOUT PAGE
   ============================== */

.checkout-hero {
  width: 100%;
  padding: 64px 8% 48px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255, 196, 179, 0.58), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 127, 110, 0.12), transparent 30%),
    linear-gradient(135deg, #fff7f3 0%, #ffe8df 100%);
}

.checkout-hero h1 {
  color: var(--dark);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.checkout-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.checkout-page {
  padding: 65px 8% 100px;
  background: var(--background);
}

.checkout-layout {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: flex-start;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.checkout-block,
.checkout-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 8px 24px rgba(107, 74, 58, 0.07);
}

.checkout-block h2,
.checkout-summary h2 {
  color: var(--dark);
  font-size: 24px;
  margin-bottom: 22px;
}

.checkout-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.checkout-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.checkout-group:last-child {
  margin-bottom: 0;
}

.checkout-group label {
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 0;
}

.checkout-group input,
.checkout-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--background);
  color: var(--text);
  font-size: 15px;
  padding: 15px 16px;
  outline: none;
  transition: var(--transition);
}

.checkout-group input:focus,
.checkout-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 127, 110, 0.12);
}

.checkout-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--background);
  cursor: pointer;
  transition: var(--transition);
}

.checkout-option:hover {
  border-color: var(--secondary);
  background: var(--background-soft);
}

.checkout-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.checkout-option span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.checkout-option strong {
  color: var(--dark);
  font-size: 15px;
}

.checkout-option small {
  color: var(--muted);
  font-size: 13px;
}

.checkout-option b {
  color: var(--primary);
  font-size: 15px;
}

.checkout-payment-placeholder {
  padding: 18px;
  border: 1px dashed var(--secondary);
  border-radius: 16px;
  background: var(--background-soft);
  margin-bottom: 20px;
}

.checkout-payment-placeholder p {
  color: var(--muted);
  font-size: 14px;
}

.checkout-submit {
  width: 100%;
  padding: 15px 28px;
}

.checkout-summary {
  position: sticky;
  top: 125px;
  box-shadow: var(--shadow);
}

.checkout-summary-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}

.checkout-summary-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
}

.checkout-summary-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--background-soft);
}

.checkout-summary-item h3 {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.checkout-summary-item p {
  color: var(--muted);
  font-size: 13px;
}

.checkout-summary-item strong {
  color: var(--primary);
  font-size: 14px;
  white-space: nowrap;
}

.checkout-summary-lines {
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.checkout-summary-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.checkout-summary-lines strong {
  color: var(--dark);
}

.checkout-summary-total {
  border-bottom: none !important;
  font-size: 20px;
  font-weight: 900;
  color: var(--dark) !important;
}

.checkout-summary-total strong {
  color: var(--primary);
}

.checkout-secure-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--background-soft);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1080px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .checkout-hero {
    padding: 48px 5% 36px;
  }

  .checkout-page {
    padding: 50px 5% 85px;
  }

  .checkout-row {
    grid-template-columns: 1fr;
  }

  .checkout-block,
  .checkout-summary {
    padding: 24px;
  }

  .checkout-summary-item {
    grid-template-columns: 58px 1fr;
  }

  .checkout-summary-item strong {
    grid-column: 1 / -1;
  }
}

/* ==============================
   PS BEAUTY ADMIN AREA
   ============================== */

.admin-dashboard-page,
.admin-products-page,
.admin-orders-page,
.admin-product-page {
  width: 100%;
  padding: 64px 8% 100px;
  background: var(--background);
}

.admin-product-header {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.admin-product-header h1 {
  color: var(--dark);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.admin-product-header p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.admin-dashboard-actions {
  max-width: 1300px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(107, 74, 58, 0.06);
  transition: var(--transition);
}

.admin-secondary-link:hover {
  color: var(--primary-dark);
  background: var(--background-soft);
  transform: translateY(-2px);
}

.admin-stats-grid {
  max-width: 1300px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.admin-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(107, 74, 58, 0.07);
}

.admin-stat-card span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}

.admin-stat-card strong {
  display: block;
  color: var(--dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  margin-bottom: 8px;
}

.admin-stat-card p {
  color: var(--muted);
  font-size: 14px;
}

.admin-dashboard-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.admin-dashboard-panel,
.admin-product-form,
.admin-product-help,
.admin-orders-table-wrapper,
.admin-products-table-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.admin-dashboard-panel {
  padding: 28px;
}

.admin-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-panel-title h2,
.admin-product-help h2,
.admin-form-block h2 {
  color: var(--dark);
  font-size: 22px;
}

.admin-panel-title a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-list-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--background);
}

.admin-list-item span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
}

.admin-list-item h3 {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.admin-list-item p {
  color: var(--muted);
  font-size: 13px;
}

.admin-status,
.order-status,
.admin-stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--background-soft);
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.admin-status.active {
  background: rgba(255, 127, 110, 0.14);
  color: var(--primary-dark);
}

.admin-status.inactive,
.admin-stock.empty {
  background: rgba(107, 74, 58, 0.09);
  color: var(--muted);
}

.admin-empty {
  color: var(--muted);
  text-align: center;
  padding: 28px;
}

.admin-products-toolbar,
.admin-orders-toolbar {
  max-width: 1300px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 220px 180px auto;
  gap: 12px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(107, 74, 58, 0.07);
}

.admin-orders-toolbar {
  grid-template-columns: minmax(240px, 1fr) 220px;
}

.admin-products-toolbar input,
.admin-products-toolbar select,
.admin-orders-toolbar input,
.admin-orders-toolbar select {
  background: var(--background);
  border-radius: 999px;
}

.admin-products-toolbar button {
  padding: 14px 22px;
}

.admin-products-table-wrapper,
.admin-orders-table-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  overflow-x: auto;
}

.admin-products-table,
.admin-orders-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}

.admin-products-table th,
.admin-products-table td,
.admin-orders-table th,
.admin-orders-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  vertical-align: middle;
}

.admin-products-table th,
.admin-orders-table th {
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  background: var(--background-soft);
}

.admin-products-table tr:last-child td,
.admin-orders-table tr:last-child td {
  border-bottom: none;
}

.admin-product-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.admin-product-cell img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--background-soft);
}

.admin-product-cell strong {
  display: block;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.admin-product-cell small {
  color: var(--muted);
  font-size: 12px;
}

.admin-table-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-table-actions a,
.admin-orders-table td a {
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
}

.admin-table-actions a:hover,
.admin-orders-table td a:hover {
  color: var(--primary-dark);
}

.admin-product-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: flex-start;
}

.admin-product-form {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.admin-product-help {
  position: sticky;
  top: 125px;
  padding: 26px;
}

.admin-product-help p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.admin-product-help p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.admin-form-block {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--background);
}

.admin-form-block h2 {
  margin-bottom: 18px;
}

.admin-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-form-group:last-child {
  margin-bottom: 0;
}

.admin-form-group label,
.admin-checkbox span {
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
}

.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  padding: 15px 16px;
  outline: none;
  transition: var(--transition);
}

.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 127, 110, 0.12);
}

.admin-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.admin-form-group small {
  color: var(--muted);
  font-size: 12px;
}

.admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.admin-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-alert {
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
}

.admin-alert.success {
  background: rgba(255, 127, 110, 0.14);
  color: var(--primary-dark);
  border: 1px solid rgba(255, 127, 110, 0.22);
}

.admin-alert.error {
  background: rgba(107, 74, 58, 0.08);
  color: var(--dark);
  border: 1px solid rgba(107, 74, 58, 0.16);
}

.admin-alert ul {
  margin: 8px 0 0 18px;
}

@media (max-width: 1100px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-dashboard-grid,
  .admin-product-layout {
    grid-template-columns: 1fr;
  }

  .admin-product-help {
    position: static;
  }

  .admin-products-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .admin-orders-toolbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .admin-dashboard-page,
  .admin-products-page,
  .admin-orders-page,
  .admin-product-page {
    padding: 48px 5% 80px;
  }

  .admin-stats-grid,
  .admin-products-toolbar,
  .admin-form-row {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-actions,
  .admin-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-dashboard-actions a,
  .admin-form-actions a,
  .admin-form-actions button {
    width: 100%;
  }

  .admin-product-form,
  .admin-product-help,
  .admin-dashboard-panel {
    padding: 22px;
  }

  .admin-form-block {
    padding: 20px;
  }
}




/* ==============================
   NAVBAR FIXE GLASS + BANNIERE FIX
   ============================== */

body {
  padding-top: 0 !important;
}

#navbar-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: transparent !important;
}

#navbar-container .ps-navbar {
  position: relative !important;
  width: 100% !important;
  background: rgba(255, 247, 243, 0.48) !important;
  background-color: rgba(255, 247, 243, 0.48) !important;
  -webkit-backdrop-filter: blur(18px) saturate(175%) !important;
  backdrop-filter: blur(18px) saturate(175%) !important;
  border-bottom: 1px solid rgba(255, 196, 179, 0.24) !important;
  box-shadow: 0 8px 26px rgba(107, 74, 58, 0.06) !important;
}

.hero-banner,
main > .hero-banner:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

main > section:first-child:not(.hero-banner) {
  padding-top: 145px !important;
}

/* ==============================
   PS BEAUTY PRODUCT PUBLIC PAGE
   ============================== */

.product-page {
  width: 100%;
  padding: 120px 8% 100px;
  background: var(--background);
}

.product-layout {
  max-width: 1300px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: flex-start;
}

.product-gallery {
  position: sticky;
  top: 120px;
  height: 100%;

}

.product-image-main,
.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.product-info {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: 0 10px 28px rgba(107, 74, 58, 0.08);
}

.product-category,
.product-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 8px 14px 0;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--background-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-brand {
  color: var(--accent);
  background: var(--white);
  border: 1px solid var(--border);
}

.product-name,
.product-info h1 {
  color: var(--dark);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin: 6px 0 18px;
}

.product-price {
  color: var(--primary);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 14px;
}

.product-availability {
  margin-bottom: 24px;
}

.in-stock,
.out-of-stock {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.in-stock {
  background: rgba(255, 127, 110, 0.14);
  color: var(--primary-dark);
}

.out-of-stock {
  background: rgba(107, 74, 58, 0.1);
  color: var(--muted);
}

.product-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.add-to-cart-form {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.add-to-cart-form label {
  width: 100%;
  margin-bottom: -4px;
}

.quantity-selector,
.add-to-cart-form select {
  max-width: 120px;
  border-radius: 999px;
  background: var(--white);
}

.add-to-cart-button,
.add-to-cart-form button {
  flex: 1;
  min-width: 220px;
  padding: 15px 28px;
}

.btn-disabled,
.product-info button:disabled {
  width: 100%;
  background: var(--muted);
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

.product-benefits {
  max-width: 1300px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-benefits h2 {
  grid-column: 1 / -1;
  color: var(--dark);
  font-size: clamp(30px, 4vw, 44px);
  text-align: center;
  margin-bottom: 10px;
}

.benefits-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(107, 74, 58, 0.07);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.benefit-card h3 {
  color: var(--dark);
  font-size: 21px;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-usage {
  max-width: 1300px;
  margin: 0 auto 70px;
  background:
    radial-gradient(circle at top left, rgba(255, 196, 179, 0.45), transparent 34%),
    var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow);
}

.product-usage h2 {
  color: var(--dark);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}

.product-usage p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.related-products {
  max-width: 1300px;
  margin: 0 auto;
}

.related-products h2 {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 44px);
  text-align: center;
  margin-bottom: 34px;
}

.related-products-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.related-product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(107, 74, 58, 0.07);
  transition: var(--transition);
}

.related-product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.related-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--background-soft);
}

.related-product-info {
  padding: 18px;
}

.related-product-name {
  color: var(--dark);
  font-size: 17px;
  line-height: 1.28;
  margin-bottom: 10px;
}

.related-product-price {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
    max-width: 650px;
    margin: 0 auto;
  }

  .benefits-cards,
  .related-products-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .product-page {
    padding: 105px 5% 80px;
  }

  .product-info {
    padding: 28px;
  }

  .product-price {
    font-size: 28px;
  }

  .add-to-cart-form {
    flex-direction: column;
    align-items: stretch;
  }

  .quantity-selector,
  .add-to-cart-form select,
  .add-to-cart-button,
  .add-to-cart-form button {
    max-width: none;
    width: 100%;
    min-width: 0;
  }

  .benefits-cards,
  .related-products-cards {
    grid-template-columns: 1fr;
  }

  .product-usage {
    padding: 28px;
  }
}
/* ==============================
   PRODUCT PAGE EQUAL CARDS FINAL
   ============================== */

.product-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 58px !important;
}

.product-gallery,
.product-info {
  min-height: 680px !important;
  height: auto !important;
}

.product-gallery {
  display: flex !important;
  position: sticky !important;
  top: 120px !important;
}

.product-image-main,
.product-gallery img {
  width: 100% !important;
  height: auto !important;
  min-height: 680px !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: #fff1eb !important;
}

.product-info {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  overflow: visible !important;
}

@media (max-width: 1080px) {
  .product-layout {
    grid-template-columns: 1fr !important;
  }

  .product-gallery,
  .product-info {
    min-height: auto !important;
    height: auto !important;
  }

  .product-gallery {
    position: static !important;
  }

  .product-image-main,
  .product-gallery img {
    min-height: unset !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  .product-info {
    justify-content: flex-start !important;
  }
}

/* ==============================
   SHOP IMAGES FINAL FIX
   ============================== */

.shop-product-image-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 280px !important;
  min-height: 280px !important;
  max-height: 280px !important;
  margin-bottom: 15px !important;
  padding: 14px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: #fff1eb !important;
}

.shop-product-image-link img,
.shop-product img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
}

.shop-product {
  min-height: 540px !important;
  display: flex !important;
  flex-direction: column !important;
}

.shop-product-bottom {
  margin-top: auto !important;
}

.shop-section {
  padding-top: 115px !important;
}

@media (max-width: 780px) {
  .shop-product-image-link {
    height: 250px !important;
    min-height: 250px !important;
    max-height: 250px !important;
  }

  .shop-section {
    padding-top: 150px !important;
  }
}


/* ==============================
   BOUTIQUE GRID FINAL ALIGN FIX
   ============================== */

.shop-section {
  padding-top: 155px !important;
}

.shop-layout {
  align-items: flex-start !important;
}

.shop-products-area {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.shop-grid {
  align-items: stretch !important;
}

.shop-product {
  height: 560px !important;
  min-height: 560px !important;
  max-height: 560px !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.shop-product-image-link {
  flex: 0 0 285px !important;
  height: 285px !important;
  min-height: 285px !important;
  max-height: 285px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.shop-product-image-link img,
.shop-product img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.shop-product h3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.shop-product p {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.shop-product-bottom {
  margin-top: auto !important;
}

@media (max-width: 780px) {
  .shop-section {
    padding-top: 165px !important;
  }

  .shop-product {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
}

/* ==============================
   BOUTIQUE IMAGE PREMIUM FINAL
   ============================== */

.shop-product {
  height: 560px !important;
  min-height: 560px !important;
  max-height: 560px !important;
  padding: 16px !important;
}

.shop-product-image-link {
  width: 100% !important;
  height: 295px !important;
  min-height: 295px !important;
  max-height: 295px !important;
  padding: 0 !important;
  margin-bottom: 16px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: var(--background-soft) !important;
}

.shop-product-image-link img,
.shop-product > img,
.shop-product img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 18px !important;
  background: transparent !important;
}

.shop-product-category {
  margin-top: 0 !important;
}

.shop-product h3 {
  min-height: 46px !important;
}

.shop-product p {
  min-height: 44px !important;
}

.shop-product-bottom {
  margin-top: auto !important;
}

/* ==============================
   BOUTIQUE IMAGE FULL WIDTH BOTTOM FINAL
   ============================== */

.shop-product-image-link {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  width: 100% !important;
  height: 335px !important;
  min-height: 335px !important;
  max-height: 335px !important;
  padding: 0 !important;
  margin-bottom: 16px !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: var(--background-soft) !important;
}

.shop-product-image-link img,
.shop-product > img,
.shop-product img {
  width: 100% !important;
  height: auto !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center calc(100% + 12px) !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 18px !important;
  background: transparent !important;
}


/* ==============================
   BOUTIQUE CARDS IMAGE + CONTENT FINAL FIX
   ============================== */

.shop-product {
  height: auto !important;
  min-height: 520px !important;
  max-height: none !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 16px !important;
}

.shop-product-image-link {
  width: 100% !important;
  height: 340px !important;
  min-height: 340px !important;
  max-height: 340px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin-bottom: 16px !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: var(--background-soft) !important;
}

.shop-product-image-link img,
.shop-product > img,
.shop-product img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 18px !important;
  background: transparent !important;
}

.shop-product-category {
  flex: 0 0 auto !important;
  margin-bottom: 10px !important;
}

.shop-product h3 {
  min-height: 0 !important;
  margin-bottom: 8px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.shop-product p {
  min-height: 0 !important;
  margin-bottom: 16px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.shop-product-bottom {
  margin-top: auto !important;
  padding-top: 12px !important;
}

@media (max-width: 780px) {
  .shop-product {
    min-height: auto !important;
  }

  .shop-product-image-link {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
  }
}

/* ==============================
   HOME PRODUCTS CAROUSEL
   ============================== */

.home-products-carousel {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.home-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.home-carousel-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  transition: var(--transition);
}

.home-carousel-link:hover {
  color: var(--primary-dark);
}

.home-carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-carousel-btn {
  width: 42px;
  height: 42px;
  padding: 0 !important;
  border-radius: 50%;
  background: var(--white) !important;
  color: var(--primary) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 8px 22px rgba(107, 74, 58, 0.08) !important;
  font-size: 28px;
  line-height: 1;
}

.home-carousel-btn:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.home-carousel-viewport {
  width: 100%;
  overflow: hidden;
  padding: 4px 2px 18px;
}

.home-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.home-carousel-card {
  flex: 0 0 calc((100% - 72px) / 4) !important;
  min-width: calc((100% - 72px) / 4) !important;
  height: auto !important;
  min-height: 560px !important;
  max-height: none !important;
}

.home-carousel-card .shop-product-image-link {
  height: 300px !important;
  min-height: 300px !important;
  max-height: 300px !important;
}

.home-carousel-card .shop-product-bottom {
  margin-top: auto !important;
}

@media (max-width: 1100px) {
  .home-carousel-card {
    flex-basis: calc((100% - 24px) / 2) !important;
    min-width: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 680px) {
  .home-carousel-header {
    flex-direction: column;
    align-items: center;
  }

  .home-carousel-card {
    flex-basis: 100% !important;
    min-width: 100% !important;
  }

  .home-carousel-card .shop-product-image-link {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
  }
}

/* ==============================
   HOME CAROUSEL HARD FIX
   ============================== */

.home-products-section .home-products-carousel {
  width: 100% !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
}

.home-products-section .home-carousel-viewport {
  width: 100% !important;
  overflow: hidden !important;
  padding: 8px 0 22px !important;
}

.home-products-section .home-carousel-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 24px !important;
  width: max-content !important;
  transition: transform 0.45s ease !important;
}

.home-products-section .home-carousel-card {
  flex: 0 0 307px !important;
  width: 307px !important;
  min-width: 307px !important;
  max-width: 307px !important;
  height: 560px !important;
  min-height: 560px !important;
  max-height: 560px !important;
  padding: 16px !important;
  overflow: hidden !important;
}

.home-products-section .home-carousel-card .shop-product-image-link {
  width: 100% !important;
  height: 285px !important;
  min-height: 285px !important;
  max-height: 285px !important;
  flex: 0 0 285px !important;
}

.home-products-section .home-carousel-card .shop-product-image-link img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.home-products-section .home-carousel-card h3 {
  min-height: 46px !important;
  max-height: 46px !important;
}

.home-products-section .home-carousel-card p {
  min-height: 44px !important;
  max-height: 44px !important;
}

.home-products-section .home-carousel-card .shop-product-bottom {
  margin-top: auto !important;
}

@media (max-width: 1100px) {
  .home-products-section .home-carousel-card {
    flex-basis: calc((100vw - 10vw - 24px) / 2) !important;
    width: calc((100vw - 10vw - 24px) / 2) !important;
    min-width: calc((100vw - 10vw - 24px) / 2) !important;
    max-width: calc((100vw - 10vw - 24px) / 2) !important;
  }
}

@media (max-width: 680px) {
  .home-products-section .home-carousel-card {
    flex-basis: 90vw !important;
    width: 90vw !important;
    min-width: 90vw !important;
    max-width: 90vw !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
}
/* ==============================
   HOME ROUTINE SECTION - MAQUETTE
   ============================== */

.home-routine-section {
  width: 100%;
  padding: 0 !important;
  background: linear-gradient(135deg, #fff7f3 0%, #fff1eb 100%);
  overflow: hidden;
}

.home-routine-content {
  width: 100%;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.home-routine-left {
    padding: 72px 7% 64px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(255, 208, 194, 0.95) 0%,
            rgba(255, 196, 179, 0.78) 28%,
            transparent 62%),
        radial-gradient(circle at bottom right,
            rgba(255, 170, 150, 0.35) 0%,
            transparent 55%),
        linear-gradient(
            135deg,
            #fff5f0 0%,
            #ffe9df 45%,
            #ffd8cb 100%
        );
}


.home-routine-left::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 150px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 127, 110, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.home-routine-heading {
  max-width: 580px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.home-routine-heading .tag {
  margin-bottom: 14px;
}

.home-routine-heading h2 {
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -1.8px;
  margin-bottom: 18px;
}

.home-routine-heading h2 em {
  color: var(--primary);
  font-style: normal;
}

.home-routine-heading p {
  max-width: 500px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.home-routine-grid {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.home-routine-card {
  min-height: 186px;
  padding: 22px 16px 20px;
  border: 1px solid rgba(233, 106, 88, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.home-routine-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(107, 74, 58, 0.1);
}

.home-routine-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(255, 196, 179, 0.28);
  border: 1px solid rgba(233, 106, 88, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.home-routine-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--dark);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-routine-card span {
  color: var(--primary-dark);
  font-size: 15px;
  line-height: 1;
  margin-bottom: 7px;
}

.home-routine-card h3 {
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 9px;
}

.home-routine-card p {
  color: var(--text);
  font-size: 12px;
  line-height: 1.45;
  max-width: 150px;
}

.home-routine-button {
  width: fit-content;
  margin-top: 22px;
  padding: 17px 30px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, #f59a9c 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 12px 28px rgba(255, 127, 110, 0.22);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.home-routine-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255, 127, 110, 0.32);
}

.home-routine-button span {
  font-size: 22px;
  line-height: 1;
}

.home-routine-visual {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(255, 196, 179, 0.55), rgba(255, 127, 110, 0.12));
}

.home-routine-visual img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 1120px) {
  .home-routine-content {
    grid-template-columns: 1fr;
  }

  .home-routine-left {
    padding: 70px 6%;
  }

  .home-routine-heading,
  .home-routine-grid {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-routine-button {
    margin-left: auto;
    margin-right: auto;
  }

  .home-routine-visual {
    min-height: 520px;
  }

  .home-routine-visual img {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .home-routine-left {
    padding: 58px 5%;
  }

  .home-routine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-routine-card {
    min-height: 172px;
    padding: 20px 12px;
  }

  .home-routine-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 460px) {
  .home-routine-grid {
    grid-template-columns: 1fr;
  }

  .home-routine-card p {
    max-width: 230px;
  }

  .home-routine-button {
    width: 100%;
    justify-content: center;
  }
}
/* ==============================
   BRANDS STRIP MARQUEE - LOGOS
   ============================== */

.brands-strip {
  width: 100%;
  padding: 80px 0 90px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,196,179,.45), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,127,110,.12), transparent 30%),
    linear-gradient(135deg,#fff7f3 0%,#fff1eb 100%);
}

.brands-strip-header {
  max-width: 1400px;
  margin: 0 auto 38px;
  padding: 0 8%;
  text-align: center;
}

.brands-strip-header .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(107,74,58,.08);
}

.brands-strip-header h2 {
  display: none;
}

.brands-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 18px 0 22px;
  background: transparent;
  border: none;
}

.brands-marquee::before,
.brands-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff7f3 0%, rgba(247, 247, 247, 0) 100%);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff7f3 0%, rgba(247, 247, 247, 0) 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 72px;
  animation: psBrandsMarquee 38s linear infinite;
  will-change: transform;
}

.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

.brand-logo {
  flex: 0 0 180px;
  width: 180px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.88;
  filter: grayscale(100%) contrast(110%);
  transition: var(--transition);
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(100%) contrast(130%);
  transform: translateY(-2px);
}

.brand-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 54px;
  object-fit: contain;
}

@keyframes psBrandsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 780px) {
  .brands-strip {
    padding: 52px 0 60px !important;
  }

  .brands-strip-header {
    padding: 0 5%;
    margin-bottom: 24px;
  }

  .brands-strip-header .tag {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .brands-marquee::before,
  .brands-marquee::after {
    width: 55px;
  }

  .brands-track {
    gap: 42px;
    animation-duration: 30s;
  }

  .brand-logo {
    flex-basis: 135px;
    width: 135px;
    height: 62px;
  }

  .brand-logo img {
    max-width: 125px;
    max-height: 42px;
  }
}