/* VARIABLES - Thème Minimaliste Noir & Blanc */
:root {
  --color-nude: #ffffff;
  --color-taupe: #fafafa;
  --color-text: #000000;
  --color-dark: #000000;
  --font-logo: "Bodoni Moda", serif;
  --font-title: "Playfair Display", serif;
  --font-body: "Hanken Grotesk", sans-serif;
  --white: #ffffff;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-nude);
  color: var(--color-text);
}/* HEADER STYLE */


.main-header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-nude);
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

@media (max-width: 767px) {
  .main-header.hide-header {
    transform: translateY(-100%);
  }
}

body:not(.home-page) {
  padding-top: 145px;
}

.header-top {
  padding: 30px 20px 10px;
  text-align: center;
}

.logo {
  font-family: var(--font-logo);
  font-size: 48px;
  letter-spacing: 12px;
  text-transform: lowercase;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.header-bottom {
  padding: 15px 5%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}/* Compact Mode Styles */


.compact-logo {
  display: none;
  font-family: var(--font-logo);
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: lowercase;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
}

.main-header.compact-mode .header-top {
  display: none;
}

.main-header.compact-mode .social-icons {
  display: none;
}

.main-header.compact-mode .compact-logo {
  display: block;
}/* Socials & Right Icons */


.social-icons,
.header-right {
  display: flex;
  gap: 20px; /* Espace entre chaque icône */
  align-items: center;
}

.social-icons a,
.header-icon {
  color: var(--color-text);
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}
@media (hover: hover) and (min-width: 768px) {


.social-icons a:hover,
.header-icon:hover {
  opacity: 0.5;
}
}
/* Nav Menu */


.nav {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav a {
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1px;
  padding-bottom: 5px;
  position: relative;
  transition: 0.3s;
}
@media (hover: hover) and (min-width: 768px) {


.nav a:hover {
  opacity: 0.6;
}
}


.nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
}/* HERO SECTION */


.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 100px;
  color: var(--white);
  text-align: left;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(30px, 6vw, 65px);
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 400;
}/* Hero Buttons */


.hero-btns {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  transition: 0.4s;
  text-transform: uppercase;
}

.btn-white {
  background-color: var(--white);
  color: var(--color-text);
}

.btn-outline {
  background-color: var(--color-text);
  color: var(--white);
  border: 1px solid var(--color-text);
}
@media (hover: hover) and (min-width: 768px) {


.btn:hover {
  transform: translateY(-3px);
  background-color: var(--white);
  color: var(--color-text);
}
}

@media (hover: hover) and (min-width: 768px) {


.btn-white:hover {
  background-color: var(--color-dark);
  color: var(--white);
}
}
/* SECTION PRODUITS */


.section-products {
  background-color: var(--color-taupe);
  padding: 100px 5%;
}

.section-title {
  font-family: var(--font-title);
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  text-align: center;
}

.product-image-container {
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
  filter: grayscale(10%);
  display: block;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
@media (hover: hover) and (min-width: 768px) {


.product-image:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}
}


.product-name {
  font-family: var(--font-title);
  font-size: 24px;
  margin-bottom: 2px;
}

.product-price {
  font-size: 12px;
  margin-bottom: 0px;
}

.btn-add {
  background: none;
  border: 1px solid var(--color-text);
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 10px;
  transition: 0.3s;
}
@media (hover: hover) and (min-width: 768px) {


.btn-add:hover {
  background: var(--color-text);
  color: var(--white);
}
}


.header-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background-color: var(--color-text);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

.cart-panel {
  position: fixed;
  top: 90px;
  right: 30px;
  width: min(420px, calc(100vw - 40px));
  max-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 2000;
}

.cart-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cart-panel-inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0; /* allow inner flex children to scroll */
}

.cart-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-panel-header h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.cart-panel-header .cart-status {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}

.cart-close {
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
}

.cart-items {
  padding: 20px 24px;
  display: grid;
  gap: 18px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}/* Scoped cart quantity styles so product page controls stay large */


.cart-items .cart-quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 4px 6px;
}

.cart-items .cart-quantity-control button {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: none;
  color: var(--color-text);
  font-size: 12px;
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-items .cart-quantity-control span {
  min-width: 18px;
  text-align: center;
  font-size: 12px;
}

.cart-empty {
  padding: 40px 24px;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

.cart-summary {
  padding: 18px 24px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-weight: 700;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: start;
}

.cart-item-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 18px;
}

.cart-item-info h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.cart-item-size {
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 8px;
}

.cart-item-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 6px 8px;
}

.quantity-control button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: none;
  color: var(--color-text);
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
}

.quantity-control span {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
}

.cart-item-remove {
  border: none;
  background: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.7);
}

.checkout-button {
  width: 100%;
  padding: 14px 0;
  border-radius: 999px;
  border: 1px solid var(--color-text);
  background-color: var(--color-text);
  font-weight: 700;
  cursor: pointer;
}
@media (hover: hover) and (min-width: 768px) {


.checkout-button:hover {
  background-color: var(--white);
  color: var(--color-text);
}
}


.checkout-page {
  padding: 40px 5% 80px;
  background-color: var(--color-taupe);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.checkout-left,
.checkout-right {
  min-width: 0;
}

@media (min-width: 981px) {
  .checkout-left {
    position: relative;
  }
  .checkout-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
  }
}

.checkout-right {
  position: sticky;
  top: 85px;
  align-self: start;
  max-height: calc(100vh - 105px);
  overflow-y: auto;
}

.checkout-page .btn-primary {
  padding: 8px 16px;
  font-size: 12px;
}


.checkout-card,
.checkout-section {
  background: var(--color-nude);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
  padding: 12px;
}

.checkout-card-header h2,
.checkout-section h3 {
  margin-bottom: 12px;
  font-family: var(--font-title);
  font-size: 14px;
  margin-bottom: 5px;
}

.checkout-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.checkout-section-header h3 {
  margin-bottom: 0;
}

.checkout-card-header p,
.checkout-section p {
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.6;
  font-size: 10px;
}

.discount-code {
  margin-bottom: 24px;
}

.discount-code label {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 600;
}

.discount-input-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 8px;
}

.discount-input-wrap input {
  padding: 6px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  font-size: 10px;
}

.discount-message {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
}

.checkout-cart-items {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.checkout-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 5px 7px;
}

.checkout-cart-item-main {
  display: flex;
  gap: 16px;
  align-items: center;
}

.checkout-cart-item-main img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 6px;
}

.checkout-cart-item-main h4 {
  margin-bottom: 6px;
  font-size: 12px;
}

.checkout-cart-item-main p {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.65);
}

.checkout-cart-item-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.checkout-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 6px 12px;
}

.qty-button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: none;
  cursor: pointer;
  font-size: 18px;
}

.checkout-qty span {
  min-width: 26px;
  text-align: center;
}

.remove-item {
  border: none;
  background: none;
  color: rgba(0, 0, 0, 0.7);
  font-size: 13px;
  cursor: pointer;
}

.checkout-summary-lines {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 22px;
  display: grid;
  gap: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

.discount-row {
  color: rgba(0, 0, 0, 0.7);
}

.total-row {
  font-size: 18px;
  font-weight: 700;
}

.checkout-form {
  display: grid;
  gap: 24px;
}

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

.same-as-billing {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.checkout-fields {
  display: grid;
  gap: 12px;
}

.checkout-fields label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.85);
}

.checkout-fields input,
.checkout-fields select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 14px;
}

.shipping-methods,
.payment-options {
  display: grid;
  gap: 12px;
}

.shipping-option,
.payment-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  cursor: pointer;
  position: relative;
}
@media (hover: hover) and (min-width: 768px) {


.shipping-option:hover,
.payment-option:hover {
  border-color: rgba(0, 0, 0, 0.25);
}
}


.shipping-option input,
.payment-option input {
  cursor: pointer;
}

.shipping-option span,
.payment-option span {
  font-size: 14px;
}

.shipping-price {
  font-weight: 700;
}

.shipping-details {
  grid-column: 2 / span 2;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  display: none;
  padding-top: 10px;
}
@media (hover: hover) and (min-width: 768px) {


.shipping-option:hover .shipping-details {
  display: block;
}
}


.checkout-consents {
  display: grid;
  gap: 14px;
  padding: 16px 0px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.8);
}

.consent-option {
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  cursor: pointer;
}

.consent-option input {
  width: auto;
  align-self: start;
}

.consent-option a {
  color: var(--color-text);
  text-decoration: underline;
}

.place-order-button {
  width: 100%;
  padding: 16px 0;
  font-size: 14px;
  letter-spacing: 1px;
}

.checkout-empty {
  padding: 32px;
  text-align: center;
  color: rgba(0, 0, 0, 0.65);
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 18px;
}

@media (max-width: 1100px) {
  .billing-delivery-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .checkout-page {
    padding: 30px 4% 40px;
  }

  .shipping-option,
  .payment-option {
    grid-template-columns: 1fr auto;
  }

  .shipping-details {
    grid-column: 1 / -1;
  }
}/* WhatsApp Floating Button */


.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-dark);
  color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  text-decoration: none;
  transition: 0.3s;
}
@media (hover: hover) and (min-width: 768px) {


.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: var(--white);
  border: 1px solid var(--color-dark);
}
}
/* FOOTER */


footer {
  background-color: #000000;
  color: var(--white);
  padding: 30px 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.footer-section {
  flex: 1;
  text-align: center;
}

.footer-connect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-connect h3 {
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 400;
}

.social-footer-icons {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.social-footer-icons a {
  color: var(--white);
  font-size: 28px;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (min-width: 768px) {


.social-footer-icons a:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
}


.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-footer {
  font-family: var(--font-logo);
  font-size: 48px;
  letter-spacing: 12px;
  text-transform: lowercase;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.footer-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-support h3 {
  font-family: var(--font-title);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-support p {
  margin: 10px 0;
  font-family: var(--font-body);
  font-size: 13px;
}

.footer-support a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
  text-transform: uppercase;
}
@media (hover: hover) and (min-width: 768px) {


.footer-support a:hover {
  opacity: 0.7;
}
}


.footer-bottom {
  background-color: #000000;
  color: var(--white);
  padding: 5px 5%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  width: 100%;
  box-sizing: border-box;
}/* PRODUCT PAGE */


.product-link {
  color: inherit;
  text-decoration: none;
  display: block;
  position: relative;
}

.new-tag {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 4px 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.product-page {
  padding: 80px 5%;
  background-color: var(--color-taupe);
}
.product-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.product-media {
  display: grid;
  gap: 20px;
}
.product-main-image {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}
.product-thumb-row {
  display: flex;
  gap: 15px;
}
.product-thumb-row img {
  width: 100%;
  max-width: 140px;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (min-width: 768px) {

.product-thumb-row img:hover {
  transform: translateY(-3px);
}
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.product-category {
  display: none !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
.product-page h1 {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}
.product-subtitle {
  font-size: 16px;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.7);
}
.product-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
}
.product-content .product-price {
  font-size: 34px;
  font-family: var(--font-title);
}
.product-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.select-group,
.quantity-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.select-group label,
.quantity-group label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.7);
}
.select-group select {
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  font-family: var(--font-body);
}
.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  width: max-content;
}
.quantity-control button {
  width: 40px;
  height: 45px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.quantity-control span {
  padding: 0 22px;
  font-size: 12px;
}
.product-actions .btn-add {
  width: 100%;
  padding: 16px 0;
  font-size: 12px;
}

.product-details-column {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
}
.info-link {
  text-decoration: none;
  color: var(--color-text);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 15px 22px;
  border-radius: 30px;
  font-size: 12px;
  text-transform: uppercase;
  transition: 0.3s;
}
@media (hover: hover) and (min-width: 768px) {

.info-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
}

.product-info-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
details.product-info-section {
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
details.product-info-section[open] {
  border-color: rgba(0, 0, 0, 0.12);
}
details.product-info-section summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 32px;
  font-family: var(--font-title);
  font-size: 17px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease;
}
@media (hover: hover) and (min-width: 768px) {

details.product-info-section summary:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
}

details.product-info-section summary::marker {
  display: none;
}
details.product-info-section summary::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
}
details.product-info-section[open] summary::after {
  content: "–";
}
details.product-info-section > *:not(summary) {
  padding: 30px 32px 40px;
}
details.product-info-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
}
details.product-info-section p {
  margin-bottom: 10px;
}
details.product-info-section a {
  text-decoration: underline;
}
.product-details-compact details.product-info-section summary {
  padding: 15px 20px;
  font-size: 14px;
}
.product-details-compact details.product-info-section > *:not(summary) {
  padding: 15px 20px 20px;
}
.product-details-compact details.product-info-section summary::after {
  font-size: 18px;
}
.product-info-section {
  background: var(--white);
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}
.product-info-section h2 {
  font-family: var(--font-title);
  margin-bottom: 20px;
  font-size: 24px;
  letter-spacing: 2px;
}
.product-info-section p,
.product-info-section ul {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
}
.product-info-section ul {
  list-style: disc inside;
  margin-top: 15px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.review-card h3 {
  font-family: var(--font-title);
  font-size: 18px;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 14px;
  line-height: 1.7;
}
.review-card .review-meta {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 10px;
}
.customer-reviews-section {
  padding: 60px 5%;
  background-color: var(--color-taupe);
}
.customer-reviews-section h2 {
  text-align: center;
  font-family: var(--font-title);
  font-size: 28px;
  margin-bottom: 40px;
}
.no-reviews-msg {
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  opacity: 0.7;
  margin-bottom: 20px;
}
.btn-review {
  display: block;
  margin: 30px auto;
  padding: 15px 30px;
  background: var(--color-text);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
@media (hover: hover) and (min-width: 768px) {

.btn-review:hover {
  background: rgba(0, 0, 0, 0.8);
}
}

.review-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  display: none;
}
.review-form form {
  display: grid;
  gap: 20px;
}
.review-form label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}
.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
}
.review-form textarea {
  resize: vertical;
  min-height: 100px;
}
.review-form button {
  padding: 15px;
  background: var(--color-text);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
@media (hover: hover) and (min-width: 768px) {

.review-form button:hover {
  background: rgba(0, 0, 0, 0.8);
  color: rgba(0, 0, 0, 0.75);
}
}

.review-meta {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}
.recommendation-section {
  background: var(--color-taupe);
  padding: 60px 0;
}
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px 0px;
  max-width: 1200px;
  margin: 0 auto;
}
.item-card {
  border-radius: 23%;
  background: none;
  box-shadow: none;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (min-width: 768px) {

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

.item-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 23%;
  margin-bottom: 8px;
  filter: grayscale(10%);
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media (hover: hover) and (min-width: 768px) {

.item-card img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}
}

.item-card-content {
  padding: 0px;
}
.item-card-content h3 {
  font-family: var(--font-title);
  font-size: 24px;
  margin-bottom: 2px;
}
.item-card-content p {
  font-size: 12px;
  color: var(--color-text);
}
@media screen and (max-width: 980px) {
  .product-page-inner {
    grid-template-columns: 1fr;
  }
  .product-options {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 680px) {
  .header-container,
  footer {
    flex-direction: column;
    align-items: center;
  }
  .product-page {
    padding: 50px 5%;
  }
  .product-page h1 {
    font-size: 40px;
  }
}/* ABOUT SECTION */


.about-section {
  background-color: var(--color-nude);
  padding: 100px 5%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  max-width: 800px;
}

.about-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.3;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
}

.about-content p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--color-text);
  text-align: justify;
}

.about-buttons {
  margin-top: 60px;
}

.btn-black {
  background-color: var(--color-dark);
  color: var(--white);
  display: inline-block;
}
@media (hover: hover) and (min-width: 768px) {


.btn-black:hover {
  background-color: var(--white);
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}
}
/* CONTACT SECTION */


.contact-section {
  background-color: var(--color-nude);
  padding: 100px 5%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 600px;
  width: 100%;
}

.contact-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
}

.contact-intro {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 50px;
  color: var(--color-text);
  text-align: center;
}

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

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

.form-group label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.required {
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-text);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

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

.btn-submit {
  background-color: var(--color-dark);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s;
  margin-top: 20px;
}
@media (hover: hover) and (min-width: 768px) {


.btn-submit:hover {
  background-color: var(--white);
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  transform: translateY(-3px);
}
}
/* PRIVACY POLICY SECTION */


.privacy-section {
  background-color: var(--color-nude);
  padding: 100px 5%;
  min-height: 80vh;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.3;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
}

.privacy-container h2 {
  font-family: var(--font-title);
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 400;
}

.privacy-container h3 {
  font-family: var(--font-title);
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 400;
}

.privacy-container p {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--color-text);
}

.privacy-container ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.privacy-container li {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 10px;
}

.privacy-container a {
  color: var(--color-dark);
  text-decoration: underline;
}
@media (hover: hover) and (min-width: 768px) {


.privacy-container a:hover {
  opacity: 0.7;
}
}
/* RESPONSIVE */


@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }
  .social-icons,
  .header-right {
    justify-content: center;
  }
  .hero {
    align-items: center;
    text-align: center;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  footer {
    flex-direction: column;
    gap: 50px;
    padding: 50px 5%;
    width: 100%;
  }

  .footer-connect,
  .footer-logo,
  .footer-support {
    width: 100%;
  }

  .logo-footer {
    font-size: 36px;
  }
}/* User requested focus styles */


main:nth-of-type(1) > section:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

main:nth-of-type(1)
  > section:nth-of-type(1)
  > div:nth-of-type(1)
  > div:nth-of-type(1) {
  width: 100%;
  padding: 15px 20px;
}/* Shop Controls */


.shop-controls-container {
  max-width: 1400px;
  margin: 40px auto 10px auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.shop-filters {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.shop-filters::-webkit-scrollbar {
  height: 4px;
}
.shop-filters::-webkit-scrollbar-track {
  background: transparent;
}
.shop-filters::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (hover: hover) and (min-width: 768px) {


.filter-btn:hover {
  border-color: var(--color-text);
}
}


.filter-btn.active {
  background-color: var(--color-text);
  color: var(--white);
  border-color: var(--color-text);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.sort-select-wrapper {
  position: relative;
}

.sort-select-wrapper::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
}

.sort-select {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 8px 36px 8px 16px;
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
  outline: none;
  font-family: inherit;
}
@media (hover: hover) and (min-width: 768px) {


.sort-select:hover {
  border-color: var(--color-text);
}
}


.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* User requested focus styles for review form */


section:nth-of-type(2) > div#reviewForm:nth-of-type(2) > form:nth-of-type(1) {
  gap: 12px;
}

section:nth-of-type(2)
  > div#reviewForm:nth-of-type(2)
  > form:nth-of-type(1)
  > div:nth-of-type(1)
  > label:nth-of-type(1) {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
}

section:nth-of-type(2)
  > div#reviewForm:nth-of-type(2)
  > form:nth-of-type(1)
  > div:nth-of-type(1)
  > label:nth-of-type(1)
  > input[type="checkbox"] {
  width: auto;
}

section:nth-of-type(2) > button:nth-of-type(1),
section:nth-of-type(2)
  > div#reviewForm:nth-of-type(2)
  > form:nth-of-type(1)
  > button:nth-of-type(1) {
  padding: 15px 40px;
  background: var(--color-text);
  color: var(--white);
  border: 1px solid var(--color-text);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s;
}
@media (hover: hover) and (min-width: 768px) {


section:nth-of-type(2) > button:nth-of-type(1):hover,
section:nth-of-type(2)
  > div#reviewForm:nth-of-type(2)
  > form:nth-of-type(1)
  > button:nth-of-type(1):hover {
  background: var(--white);
  color: var(--color-text);
}
}


section:nth-of-type(1)
  > div:nth-of-type(1)
  > form:nth-of-type(1)
  > button:nth-of-type(1),
.btn-black {
  padding: 15px 40px !important;
  background: var(--color-text) !important;
  color: var(--white) !important;
  border: 1px solid var(--color-text) !important;
  border-radius: 50px !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: 0.4s !important;
}
@media (hover: hover) and (min-width: 768px) {


section:nth-of-type(1)
  > div:nth-of-type(1)
  > form:nth-of-type(1)
  > button:nth-of-type(1):hover,
.btn-black:hover {
  background: var(--white) !important;
  color: var(--color-text) !important;
}
}


footer:nth-of-type(1) > div:nth-of-type(3) {
  display: grid;
  grid-auto-flow: row;
  justify-content: center;
  justify-items: start;
  text-align: left;
}

.home-page header:nth-of-type(1) {
  background-color: rgba(255, 255, 255, 0.05); /* 95% transparent */
}

.home-page header:nth-of-type(1).compact-mode,
.home-page header:nth-of-type(1).force-solid {
  background-color: var(--color-nude) !important;
}

@media (hover: hover) and (min-width: 768px) {
  .home-page header:nth-of-type(1):hover {
    background-color: var(--color-nude);
  }
}


header:nth-of-type(1) > div:nth-of-type(1) {
  /* Kept for focus mode compliance */
}

header:nth-of-type(1) > div:nth-of-type(2) {
  /* Kept for focus mode compliance */
}

.section-shop-controls {
  position: sticky;
  top: 145px;
  z-index: 999;
  background-color: var(--white);
  padding-top: 30px;
  padding-bottom: 10px;
  transition: top 0.3s ease, transform 0.3s ease;
}

header:nth-of-type(1).compact-mode ~ .section-shop-controls {
  top: 61px; /* Adjust according to compact header height */
}

@media (max-width: 768px) {
  .section-shop-controls {
    top: 228px;
  }
  header:nth-of-type(1).compact-mode ~ .section-shop-controls {
    top: 61px;
  }
}

.shop-controls-container {
  margin-top: 0;
  margin-bottom: 0;
}

section:nth-of-type(1) > div:nth-of-type(1) {
  /* Kept for focus mode compliance */
}/* Shop image overrides */


section:nth-of-type(2)
  > div#shopProductGrid:nth-of-type(1)
  > article:nth-of-type(1)
  > a:nth-of-type(1)
  > img:nth-of-type(1),
.product-image {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  border-radius: 0 !important;
  aspect-ratio: 3 / 4 !important;
  object-fit: cover !important;
}

section:nth-of-type(2) > h2:nth-of-type(1) {
  /* Kept for focus mode */
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .header-top {
    display: none !important;
  }
  .header-bottom {
    padding: 0 !important;
  }

  .header-container {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    row-gap: 20px !important;
    padding: 10px 15px !important;
    align-items: center !important;
  }

  .hamburger-menu {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    display: block !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
  }

  .compact-logo {
    white-space: nowrap !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    display: block !important;
    margin: 0 !important;
  }

  .social-icons {
    grid-column: 1 / 2 !important;
    grid-row: 2 !important;
    justify-self: start !important;
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
  }

  .header-right {
    grid-column: 3 / 4 !important;
    grid-row: 2 !important;
    justify-self: end !important;
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    position: static !important;
    transform: none !important;
  }

  .nav {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    display: none !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 15px !important;
    padding: 10px 0 0 !important;
    position: static !important;
    transform: none !important;
  }

  .nav.mobile-active {
    display: flex !important;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
  }

  .section-products {
    padding-left: 2px;
    padding-right: 2px;
  }
  #shopProductGrid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 2px !important;
  }
  #shopProductGrid .product-name {
    font-size: 14px !important;
  }
  #shopProductGrid .product-price {
    font-size: 12px !important;
  }

  .hero-content h1 {
    font-size: 32px !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  footer {
    flex-direction: column !important;
  }

  body:not(.home-page) {
    padding-top: 90px !important;
  }


  .section-shop-controls {
    top: 90px !important;
  }


}/* Contact Form Alerts */


.form-alert {
  padding: 24px;
  margin-bottom: 30px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  border-width: 3px;
  border-style: solid;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  animation: slide-down 0.4s ease-out;
}
.alert-success {
  background-color: #e6ffed;
  color: #006b1b;
  border-color: #2ea043;
}
.alert-error {
  background-color: #ffebe9;
  color: #9e1c23;
  border-color: #ff8182;
}
@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* Focus Mode Adjustments - Generic */


label[for="publishConsent"],
.review-moderation label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-direction: row !important;
}

input#publishConsent,
.review-moderation label input[type="checkbox"] {
  width: auto !important;
  margin: 0 !important;
}

section:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > img:nth-of-type(1).portrait-fixed {
  height: 453.288px !important;
  width: 312.125px !important;
}

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

.checkout-fields textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
}

.search-container {
  display: flex;
  align-items: center;
  position: relative;
}
.search-input {
  width: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  padding: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease, border-color 0.3s ease, visibility 0.3s ease;
  outline: none;
  overflow: hidden;
  position: absolute;
  right: 100%;
  margin-right: 10px;
}
.search-input.active {
  width: 150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  border-bottom-color: var(--color-text);
  padding: 5px 10px;
}/* SOPHISTICATED CATEGORY SHOWCASE */


.category-showcase {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 5%;
  overflow-x: hidden;
}

.showcase-header {
  text-align: center;
  margin-bottom: 80px;
}

.showcase-main-title {
  font-family: var(--font-title);
  font-size: 42px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.showcase-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(0,0,0,0.6);
}

.showcase-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8%;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease-out;
}

.showcase-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.showcase-block.reverse {
  direction: rtl;
}

.showcase-block.reverse > * {
  direction: ltr;
}

.showcase-image-wrapper {
  position: relative;
  overflow: hidden;
}

.showcase-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}
@media (hover: hover) and (min-width: 768px) {


.showcase-image-wrapper:hover .showcase-image {
  transform: scale(1.05);
}
}


.showcase-text {
  padding: 20px 0;
}

.category-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: rgba(0,0,0,0.5);
  display: block;
  margin-bottom: 20px;
}

.showcase-title {
  font-family: var(--font-title);
  font-size: 48px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.showcase-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0,0,0,0.7);
  margin-bottom: 40px;
  max-width: 400px;
}

.btn-chic {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: gap 0.3s ease;
}

.btn-chic::after {
  content: \;
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-text);
  transition: width 0.4s ease;
}
@media (hover: hover) and (min-width: 768px) {


.btn-chic:hover {
  gap: 25px;
}
}

@media (hover: hover) and (min-width: 768px) {


.btn-chic:hover::after {
  width: 100%;
}
}


@media (max-width: 900px) {
  .showcase-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .showcase-block.reverse {
    direction: ltr;
  }
  .showcase-image {
    height: 400px;
  }
}/* ADVANCED UX FEATURES *//* 2. Cinematic Hero Mask Entrance */





.hero-content h1 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  animation: maskRevealText 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
  transform: translateY(40px);
}
@keyframes maskRevealText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* 3. Horizontal Scroll Gallery */


.horizontal-container {
  height: 400vh;
  position: relative;
  background: #fdfdfd;
}
.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.horizontal-gallery {
  display: flex;
  gap: 8vw;
  padding: 0 10vw;
  will-change: transform;
}
.hz-item {
  width: 60vw;
  height: 70vh;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.hz-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (hover: hover) and (min-width: 768px) {

.hz-item:hover img {
  transform: scale(1.05);
}
}
/* 4. Product Hover Swap & Grain/Blur */


.trending-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}
.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.tp-image-container {
  position: relative;
  overflow: hidden;
  height: 450px;
  border-radius: 4px;
  cursor: pointer;
}
.tp-main, .tp-hover {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.tp-hover {
  opacity: 0;
  transform: scale(1.1);
}
.tp-glass-overlay {
  position: absolute;
  bottom: 0px; left: 0px;
  width: 100%;
  padding: 30px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(15px);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease-out;
  display: flex;
  justify-content: center;
}
@media (hover: hover) and (min-width: 768px) {

.tp-image-container:hover .tp-main {
  opacity: 0;
  transform: scale(0.95);
}
}

@media (hover: hover) and (min-width: 768px) {

.tp-image-container:hover .tp-hover {
  opacity: 1;
  transform: scale(1);
}
}

@media (hover: hover) and (min-width: 768px) {

.tp-image-container:hover .tp-glass-overlay {
  opacity: 1;
  transform: translateY(0);
}
}

.tp-details {
  text-align: center;
  margin-top: 20px;
}
.tp-title {
  font-family: var(--font-title);
  font-size: 20px;
  margin-bottom: 5px;
}
.tp-price {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}/* 5. Smooth Page Transition - View Transitions API */


@view-transition {
  navigation: auto;
}
::view-transition-group(root) {
  animation-duration: 0.35s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
::view-transition-old(root) {
  animation-name: slide-up-out;
}
::view-transition-new(root) {
  animation-name: slide-up-in;
}

@keyframes slide-up-out {
  from { transform: translateY(0); }
  to { transform: translateY(-100vh); }
}

@keyframes slide-up-in {
  from { transform: translateY(100vh); }
  to { transform: translateY(0); }
}

a[href^="mailto:"] {
  text-transform: lowercase;
}

section:nth-of-type(2) > div#shopProductGrid:nth-of-type(1) > article:nth-of-type(2) > a:nth-of-type(1) > img:nth-of-type(1) {
  border-radius: 0 !important;
  aspect-ratio: 3 / 4 !important;
  width: 100% !important;
  object-fit: cover !important;
}

section:nth-of-type(2) > div#shopProductGrid:nth-of-type(1) > article:nth-of-type(2) > a:nth-of-type(1) {
}

@media (max-width: 767px) {
  .section-shop-controls.hide-controls {
    top: -150px !important;
    transform: translateY(-150%) !important;
  }
}
@media (max-width: 767px) {
  .tp-glass-overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 15px; /* compact */
  }
}

.shipping-option input:checked ~ .shipping-details {
  display: block;
}

/* FOCUS MODE MODIFICATIONS */
section:nth-of-type(3) > div:nth-of-type(1) {
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 5vh;
}

section:nth-of-type(3) > div:nth-of-type(1) > h2:nth-of-type(1) {
  margin: 0 0 5vh 0 !important;
}

/* FOCUS MODE: Adjusting horizontal scroll title position */
section:nth-of-type(3) > div:nth-of-type(1) {
  padding-top: 0 !important;
}
section:nth-of-type(3) > div:nth-of-type(1) > h2:nth-of-type(1) {
  margin: 20px 0 5vh 0 !important;
}

/* FOCUS MODE: Sticky Wrapper Top Adjustment */
section:nth-of-type(3) > div:nth-of-type(1) {
  top: 61px !important;
  height: calc(100vh - 61px) !important;
}

section:nth-of-type(3) > div:nth-of-type(1) > h2:nth-of-type(1) {
  margin: 0 0 5vh 0 !important;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
  /* Override the existing rules that made it 1fr */
  .showcase-block {
    grid-template-columns: 1fr 1fr !important;
    gap: 4% !important;
    margin-bottom: 50px !important;
    align-items: center !important;
  }
  .showcase-block.reverse {
    direction: rtl !important;
  }
  .showcase-block.reverse > * {
    direction: ltr !important;
  }
  .showcase-image {
    height: auto !important;
    max-height: 300px !important;
    object-fit: cover;
  }
  .showcase-title {
    font-size: 20px !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
  }
  .showcase-desc {
    font-size: 12px !important;
    margin-bottom: 15px !important;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4 !important;
  }
  .btn-chic {
    font-size: 10px !important;
    padding: 8px 12px !important;
  }
  
  /* Mobile Product Thumbnails Carousel */
  .product-media {
    max-width: 100vw;
  }
  .product-thumb-row {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .product-thumb-row::-webkit-scrollbar {
    display: none !important;
  }
  .product-thumb-row img {
    flex: 0 0 auto !important;
    width: 100px !important;
    max-width: 100px !important;
  }
}

@media (max-width: 900px) {
  .checkout-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  
  .checkout-right,
  .checkout-right .cart-card {
    display: contents !important;
  }
  
  .checkout-left {
    order: 5 !important;
    margin-top: 24px !important;
  }
  
  .checkout-right .checkout-card-header {
    background: var(--color-nude) !important;
    padding: 16px 16px 0 16px !important;
    border-radius: 24px 24px 0 0 !important;
  }
  
  .checkout-right .discount-code,
  .checkout-right .checkout-cart-items {
    background: var(--color-nude) !important;
    padding: 16px 16px 0 16px !important;
  }
  
  main:nth-of-type(1) > form#checkoutForm:nth-of-type(1) > section:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(4) {
    background: var(--color-nude) !important;
    padding: 16px !important;
    border-radius: 0 0 24px 24px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    
    position: sticky !important;
    top: 94px !important; /* increased to prevent header overlap */
    z-index: 100 !important;
    transition: top 0.3s ease !important;
  }
}

@media (max-width: 900px) {
  header.hide-header ~ main:nth-of-type(1) > form#checkoutForm:nth-of-type(1) > section:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(4) {
    top: 0 !important;
  }
}

/* FOCUS MODE MODIFICATIONS FOR CHECKOUT STICKY OVERLAP */
@media (max-width: 900px) {
  main:nth-of-type(1) > form#checkoutForm:nth-of-type(1) > section:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(1) > div:nth-of-type(4) {
    top: 90px !important;
  }
  
  header:nth-of-type(1) > div:nth-of-type(2) > div:nth-of-type(1) {
    /* Maintained for focus mode targeting, height defines sticky offset */
  }
}

