/* =============================================================================
   ACHIRI THEME — custom.css
   Loads after classic's Bootstrap CSS. Every rule here wins over the parent.
   ============================================================================= */

/* ── BRAND TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --color-white: #ffffff;
  --color-rose: #ecb6ce;
  --color-lila: #c79eff;
  --color-green: #00c5bc;
  --color-dark: #3d3b3b;
  --color-muted: #6b6b6b;

  --font-title: 'Impact', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* ── BASE ─────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* Full-page rose background */
body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-rose);
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-title);
  color: var(--color-dark);
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
  text-transform: lowercase !important;
}

/* Override word-break for footer headings to prevent unwanted line breaks */
.achiri-footer h1,
.achiri-footer h2,
.achiri-footer h3,
.achiri-footer h4,
.achiri-footer h5,
.achiri-footer h6,
.achiri-footer .h1,
.achiri-footer .h2,
.achiri-footer .h3,
.achiri-footer .h4,
.achiri-footer .h5,
.achiri-footer .h6 {
  overflow-wrap: normal;
  word-break: normal;
}

a {
  color: var(--color-dark);
  transition: color 150ms ease;
}

a:hover {
  color: var(--color-lila);
  text-decoration: none;
}

/* ── HEADER — SINGLE UNIFIED BAR ─────────────────────────────────────────── */

/*
 * header.tpl override uses .achiri-header instead of classic's
 * .header-nav + .header-top two-row structure.
 * The classic parent CSS for those classes simply won't match anything.
 */

#header {
  background-color: var(--color-rose);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.achiri-header {
  background-color: var(--color-rose);
}

.achiri-header>.container {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1rem;
}

/* Logo — text only, Impact font */
.achiri-logo {
  flex-shrink: 0;
  text-decoration: none !important;
  margin-right: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.achiri-logo:hover {
  text-decoration: none !important;
}

.achiri-logo__img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.achiri-logo__text {
  font-family: var(--font-title) !important;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  color: var(--color-white) !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: block;
  line-height: 1;
}

/* Navigation links (rendered by ps_mainmenu into displayTop) */
#_desktop_top_menu {
  flex: 1;
  /* Show on mobile too — overrides Bootstrap's hidden-sm-down */
  display: flex !important;
}

.top-menu,
.top-menu>li {
  display: inline-flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-menu a,
.top-menu .nav-link,
#_desktop_top_menu a {
  font-family: var(--font-title) !important;
  font-size: clamp(1.3rem, 4vw, 1.75rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  color: var(--color-white) !important;
  padding: 0.4rem 0.75rem !important;
  white-space: nowrap;
  line-height: 1;
  transition: color 150ms ease;
}

.top-menu a:hover,
#_desktop_top_menu a:hover {
  color: var(--color-lila) !important;
  text-decoration: none !important;
}

/* Hide search — we don't want it in the header */
#search_widget,
.search-widget,
#_desktop_search_widget {
  display: none !important;
}

/* Right-side actions: language + sign in + cart */
.achiri-header__actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  margin-left: auto;
}

.achiri-header__actions a,
.achiri-header__actions button,
.achiri-header__actions .dropdown-toggle,
.achiri-header__actions span {
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  color: var(--color-dark) !important;
  font-weight: 500 !important;
}

.achiri-header__actions a:hover {
  color: var(--color-lila) !important;
}

/* Cart count badge */
.achiri-header__actions .cart-products-count,
#_desktop_cart .cart-products-count {
  background-color: transparent !important;
  color: var(--color-black) !important;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.material-icons .shopping-cart{
  color: var(--color-dark) !important;
}

/* Language/currency dropdowns */
.achiri-header__actions .dropdown-menu {
  background-color: var(--color-white);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.dropdown select {
  background-color: transparent !important;
}

.achiri-header__actions .dropdown-item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-dark);
}

.achiri-header__actions .dropdown-item:hover {
  background-color: rgba(236, 182, 206, 0.3);
  color: var(--color-dark);
}

/* Mobile header (classic theme JS needs this) */
.mobile-header-logo a {
  font-family: var(--font-title);
  color: var(--color-dark);
}

#language-selector-label {
  display: none !important;
}

/* ── HIDE UNWANTED ELEMENTS ───────────────────────────────────────────────── */

/* Image slider (ps_imageslider) */
#ps_imageslider,
.slick-slider,
[id^="blockslider"],
.carousel-container,
.banner-homepage {
  display: none !important;
}

/* Product flags: "New", "On sale", "% off", "Pack" */
.product-flag,
.product-flag.new,
.product-flag.on-sale,
.product-flag.discount,
.product-flag.pack,
.product-flag.online-only {
  display: none !important;
}

.all-product-link float-xs-left float-md-right h4,
.all-product-link float-xs-left float-md-right h4 a,
.all-product-link {
color: var(--color-dark) !important;
}

/* Discount percentage / strikethrough price in product cards */
.discount-percentage,
.discount-amount {
  display: none !important;
}

/* "On sale!" and "New products" module sections */
.products-section-title,
[class*="blockbestsellers"],
[class*="blocknewproducts"],
[id*="blocknewproducts"],
[id*="blockbestsellers"] {
  display: none !important;
}

/* Newsletter subscription block (ps_emailsubscription) */
.block_newsletter,
[id*="emailsubscription"],
.newsletter-block,
#ps_emailsubscription_block_newsletter {
  display: none !important;
}

/* Customer sign-in / registration (no customer accounts on this shop) */
#_desktop_user_info,
#_mobile_user_info,
.user-info,
.ps-customer-signin {
  display: none !important;
}

/* Checkout: hide Sign In tab, login form, and optional account creation */
.nav-item:has(a[data-link-action="show-login-form"]),
.nav-item:has(.nav-separator),
.nav-separator,
#checkout-login-form,
.form-informations,
.field-password-policy {
  display: none !important;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */

.btn,
button[type="submit"] {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 250ms ease;
  text-align: center;
  max-width: 100%;
  word-break: break-word;
}

.btn-primary {
  background-color: var(--color-dark) !important;
  border-color: var(--color-dark) !important;
  color: var(--color-white) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-lila) !important;
  border-color: var(--color-lila) !important;
  color: var(--color-dark) !important;
}

.btn-secondary {
  background-color: transparent !important;
  border-color: var(--color-dark) !important;
  border-width: 2px !important;
  color: var(--color-dark) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--color-dark) !important;
  color: var(--color-white) !important;
}


.add-to-cart,
.btn-add-to-cart {
  background-color: var(--color-rose) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--color-rose) !important;
  border-radius: var(--radius-lg);
}

.add-to-cart:hover {
  opacity: 0.85;
}

/* All price elements - dark color instead of cyan - HIGHEST SPECIFICITY */
.price,
.current-price span,
.product-price,
.current-price-value,
.product-prices .price,
.product-price .price,
.product-price-and-shipping .price,
.product-price-and-shipping span,
span.price,
span[itemprop="price"],
.current-price .price,
.product-miniature .price,
.product-miniature .product-price-and-shipping .price,
#product .price,
#product .current-price-value,
#product .product-prices .price,
.product-detail .price,
.product-list .price,
.featured-products .price,
article .price,
.js-product-miniature .price,
.product-miniature .current-price span,
.has-discount .current-price-value,
.product-price h5.price,
div.current-price > span {
  color: var(--color-dark) !important;
  font-weight: 700;
}

/* Product descriptions */
.product-information p,
#product-description-short-1 p,
.product-description-short p,
.product-description p,
#tab-content .product-description p {
  color: var(--color-dark) !important;
}

/* ── PRODUCTS SECTION LAYOUT ─────────────────────────────────────────────── */

/* Flexbox ordering: "this is us" → slider → "Our Products" → product grid */
.achiri-products__container {
  display: flex;
  flex-direction: column;
}

.section-title--slider  { order: 1; }
#carousel               { order: 2; }
.section-title--products { order: 3; }
.featured-products      { order: 4; }

/* ── PRODUCT CARDS ────────────────────────────────────────────────────────── */

/* Give products section a white card background for legibility */
.achiri-products .products,
.achiri-products .product-list {
  background-color: transparent;
}

.product-miniature .card,
.product-miniature article {
  background-color: var(--color-white) !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.product-miniature:hover .card,
.product-miniature:hover article {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.product-miniature .product-title a {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--color-dark);
}

.product-miniature .product-title a:hover {
  color: var(--color-lila);
}

/* Hide strikethrough/old price */
.regular-price {
  display: none !important;
}

/* ── FORMS (checkout, login, contact) ────────────────────────────────────── */

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  font-family: var(--font-body);
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--color-dark);
}

.form-control:focus,
input:focus,
textarea:focus {
  border-color: var(--color-lila) !important;
  box-shadow: 0 0 0 3px rgba(199, 158, 255, 0.25) !important;
  outline: none;
  background-color: var(--color-white);
}

label {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-dark);
}

/* ── BREADCRUMB ───────────────────────────────────────────────────────────── */

.breadcrumb {
  background-color: transparent !important;
}

.breadcrumb-item a,
.breadcrumb-item.active {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-dark);
}

/* ── HERO SECTION ─────────────────────────────────────────────────────────── */

.achiri-hero {
  background-color: var(--color-rose);
  padding-block: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  width: 100%;
}

.achiri-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.achiri-hero__image {
  width: clamp(120px, 35vw, 220px);
  height: clamp(120px, 35vw, 220px);
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.achiri-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  transition: transform 0.05s linear;
}

.achiri-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(100%, 560px);
}

.achiri-hero__content h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 7vw, 5rem);
  line-height: 1.1;
  color: var(--color-white);
}

.achiri-hero__content p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  color: var(--color-dark);
  max-width: 45ch;
}

@media (max-width: 599px) {
  .achiri-hero__content .btn {
    width: 100%;
  }
}

@media (min-width: 900px) {
  .achiri-hero__inner {
    flex-direction: row;
    text-align: left;
    gap: 5rem;
  }

  .achiri-hero__image {
    width: clamp(180px, 22vw, 300px);
    height: clamp(180px, 22vw, 300px);
  }

  .achiri-hero__content {
    align-items: flex-start;
  }
}

/* ── PRODUCTS SECTION ─────────────────────────────────────────────────────── */

.achiri-products {
  background-color: var(--color-rose);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.achiri-products .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.achiri-products .section-title h2 {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: var(--color-white);
}

/* ps_featuredproducts renders its own heading — hide it (we have our own) */
.achiri-products .products-section-title h2,
.achiri-products .block-title {
  display: none !important;
}

/* ── FOUNDERS / MOTTO SECTION ─────────────────────────────────────────────── */

/* Fix: PrestaShop custom-text blocks override the rose background */
.custom-text,
.block_cms_custom,
[id*="custom_text"],
[class*="cms_custom"],
[class*="customtext"] {
  background-color: var(--color-rose) !important;
  background: var(--color-rose) !important;
}

.achiri-founders {
  background-color: transparent;
  padding-block: clamp(3rem, 6vw, 5rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
}

.achiri-founders__motto {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.achiri-founders__motto h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.achiri-founders__motto p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--color-dark);
  line-height: 1.5;
}

/* Group photo between motto and individual cards */
.achiri-founders__group {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.achiri-founders__group img {
  width: clamp(120px, 35vw, 220px);
  height: clamp(120px, 35vw, 220px);
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 9999px;
}

/* Single card panel containing both founders */
.achiri-founders__panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background-color: transparent;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 600px) {
  .achiri-founders__panel {
    flex-direction: row;
    gap: 2rem;
    padding: 2.5rem 3rem;
  }
}

/* Each person block — centered, no background */
.achiri-founders__person {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

/* Round avatar */
.achiri-founders__avatar {
  width: clamp(100px, 28vw, 160px);
  height: clamp(100px, 28vw, 160px);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}

.achiri-founders__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.achiri-founders__name {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.achiri-founders__meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.achiri-founders__person p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--color-dark);
  line-height: 1.7;
  margin: 0;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */

/* Nuke any white backgrounds the classic theme injects into footer */
#footer,
/* Keep every footer layer on rose */
.achiri-footer,
.achiri-footer *,
.footer-container,
.footer-container .block_content,
.footer-container .linklist,
#footer .container {
  background-color: var(--color-rose) !important;
  background: var(--color-rose) !important;
}

.achiri-footer {
  padding-top: 0;
  background-color: transparent;
}

/* ── MAIN PANEL: two-column grid ─────────────────────────────────────────── */

.achiri-footer__main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .achiri-footer__main {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.achiri-footer__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 992px) {
  .achiri-footer__grid {
    flex: 0 1 auto;
  }
}

@media (min-width: 768px) {
  .achiri-footer__grid {
    display: flex;
    flex-direction: row !important;
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .achiri-footer__grid {
    gap: 3rem;
  }
}

.achiri-footer__info {
  flex: 0 1 auto;
  min-width: 0;
  width: 100%;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .achiri-footer__info {
    margin-top: 0;
    margin-left: 0;
    flex: 0 0 auto;
    min-width: 220px;
    max-width: 280px;
  }
}

/* Hide empty social block injected by displayFooterBefore */
.achiri-footer__info .block-social {
  display: none !important;
}

/* Style the legal links section */
.achiri-footer__info .col-md-6.links {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.achiri-footer__info .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-bottom: none !important;
}

.achiri-footer__info .wrapper {
  padding: 0 !important;
  width: 100% !important;
}

.achiri-footer__info .col-md-6.wrapper {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

.achiri-footer__info .title {
  border-bottom: none !important;
}

/* Mobile: remove only left padding on classic footer accordion titles */
@media (max-width: 767px) {
  .achiri-footer__blocks .links .title {
    /* keep the other paddings, but align left edge flush */
    padding: .625rem .625rem .625rem 0 !important;
  }

  /* Bootstrap columns inside the hook add 15px gutter padding — remove it in this footer column */
  .achiri-footer__info [class^="col-"],
  .achiri-footer__info [class*=" col-"],
  .achiri-footer__info .wrapper,
  .achiri-footer__info .links {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Hook footer title: don't force uppercase */
.achiri-footer__info .h3,
.achiri-footer__info .footer-title,
.achiri-footer__info .title .h3,
.achiri-footer__info .title span,
.achiri-footer__info h3 {
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-family: var(--font-title) !important;
  font-size: clamp(1.6rem, 4vw, 2.4rem) !important;
  color: var(--color-white) !important;
  margin-bottom: 1rem !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.achiri-footer__info .hidden-sm-down {
  margin-bottom: 1.5rem;
}

.achiri-footer__info .title {
  margin-bottom: 1rem;
}

/* Style the legal links */
.achiri-footer__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achiri-footer__info a {
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  color: var(--color-white) !important;
  text-decoration: none;
  transition: color 150ms ease;
  line-height: 1.6;
  display: inline-block;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

@media (min-width: 992px) {
  .achiri-footer__info a {
    white-space: nowrap;
  }
}

.achiri-footer__info a:hover {
  color: var(--color-dark) !important;
  text-decoration: none !important;
}

/* Hide wishlist modals from footer layout (they're positioned absolutely anyway) */
.achiri-footer__info .wishlist-add-to,
.achiri-footer__info .wishlist-delete,
.achiri-footer__info .wishlist-create,
.achiri-footer__info .wishlist-login,
.achiri-footer__info .wishlist-toast {
  position: fixed;
  pointer-events: none;
}

.achiri-footer__info .wishlist-add-to .wishlist-modal,
.achiri-footer__info .wishlist-delete .wishlist-modal,
.achiri-footer__info .wishlist-create .wishlist-modal,
.achiri-footer__info .wishlist-login .wishlist-modal {
  pointer-events: auto;
}

/* ── Left: brand + socials ───────────────────────────────────────────────── */

.achiri-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.achiri-footer__tagline {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--color-white);
  line-height: 1.15;
  margin: 0;
}

.achiri-footer__tagline-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark) !important;
  line-height: 1.6;
  margin: 0;
}

.achiri-footer__brand-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 320px;
}

.achiri-footer__brand-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.achiri-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .achiri-footer__socials {
    justify-content: center;
  }
}

.achiri-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--color-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 150ms ease, box-shadow 150ms ease;
  text-decoration: none !important;
  flex-shrink: 0;
}

.achiri-footer__social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.achiri-footer__social-link img,
.achiri-footer__social-link svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: none;
}

/* ── Right: contact form ─────────────────────────────────────────────────── */

.achiri-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 auto;
  min-width: 0;
}

.achiri-footer__contact-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--color-white);
  margin: 0;
}

.achiri-footer__form {
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.achiri-footer__field {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.achiri-footer__field label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
  align-self: flex-start;
}

.achiri-footer__field input,
.achiri-footer__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  outline: none;
  transition: background 150ms ease, box-shadow 150ms ease;
  resize: vertical;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
}

.achiri-footer__field input::placeholder,
.achiri-footer__field textarea::placeholder {
  color: var(--color-dark);
  opacity: 0.8;
}

.achiri-footer__field input:focus,
.achiri-footer__field textarea:focus {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(199, 158, 255, 0.5);
}

.achiri-footer__contact-sub {
  color: var(--color-dark) !important;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.achiri-footer__submit {
  display: inline-block;
  align-self: center;
  margin-top: 0.25rem;
  padding: 0.75rem 2rem;
  background: transparent;
  cursor: pointer;
  color: var(--color-white) !important;
  border: 1px solid var(--color-white) !important;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 250ms ease;
  text-align: center;
  max-width: 100%;
  word-break: break-word;

}

.achiri-footer__submit:hover {
  background: var(--color-white) !important;
  color: var(--color-rose) !important;
}


.achiri-footer__submit:hover {
  background: var(--color-dark);
  color: var(--color-white);
  text-decoration: none;
}

/* ── Footer blocks (PRODUCTS / OUR COMPANY / etc.) ──────────────────────── */

.achiri-footer__blocks {
  background-color: var(--color-rose);
  padding-block: 3rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Ensure displayFooterBefore content doesn't break layout */
.achiri-footer__blocks>*:not(.container) {
  max-width: 100%;
  width: 100%;
}

/* Override any PrestaShop uppercase styles for footer info */
.achiri-footer__blocks .h3,
.achiri-footer__blocks h3,
.achiri-footer__blocks .title {
  text-transform: none !important;
}

.achiri-footer__blocks .footer-title,
.achiri-footer__blocks h3,
.achiri-footer__blocks h4,
.achiri-footer__blocks .h3,
.achiri-footer__blocks .h4 {
  font-family: var(--font-title) !important;
  font-size: clamp(1.6rem, 4vw, 2.4rem) !important;
  color: var(--color-white) !important;
  margin-bottom: 1rem;
  border: none !important;
  background: none !important;
}

.achiri-footer__blocks a,
.achiri-footer__blocks p,
.achiri-footer__blocks li {
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  color: var(--color-white) !important;
  line-height: 1.5;
}

.achiri-footer__blocks a:hover {
  opacity: 1;
  color: var(--color-dark) !important;
}

/* Mobile accordion for legal links - DISABLED, always show links */
@media (max-width: 991px) {
  /* Hide toggle icon completely */
  .achiri-footer__info .navbar-toggler,
  .achiri-footer__info .collapse-icons {
    display: none !important;
  }

  /* Show title but remove toggle behavior */
  .achiri-footer__info .title {
    cursor: default !important;
    pointer-events: none;
  }

  /* Always show the links, ignore collapse state */
  .achiri-footer__info .collapse {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
  }

  /* Show both title versions */
  .achiri-footer__info .hidden-md-up {
    display: block !important;
  }

  .achiri-footer__info .hidden-sm-down {
    display: none !important;
  }
}

/* Desktop: always show links, hide accordion toggle */
@media (min-width: 992px) {

  .achiri-footer__info .collapse-icons,
  .achiri-footer__info .navbar-toggler {
    display: none !important;
  }

  .achiri-footer__info .hidden-md-up {
    display: none !important;
  }

  .achiri-footer__info .hidden-sm-down {
    display: block !important;
  }

  .achiri-footer__info .collapse {
    display: block !important;
    height: auto !important;
  }
}

/* Hide other collapse toggles in footer blocks */
.achiri-footer__blocks .block_content {
  display: block !important;
  height: auto !important;
}

/* ── Copyright bar ───────────────────────────────────────────────────────── */

.achiri-footer__bottom {
  background-color: var(--color-rose);
  padding-block: 1.25rem;
}

.achiri-footer__bottom p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-dark);
  margin: 0;
  text-align: center;
}

/* ── CONTENT WRAPPER + ALL PAGE BACKGROUNDS ──────────────────────────────── */

/* Classic theme wraps everything in #wrapper and #content-wrapper with white.
   Override every layer to rose. */
#wrapper,
#content-wrapper,
#content,
#main,
.page-wrapper,
#index #wrapper,
.page-home,
section.checkout-step,
.cart-grid,
.checkout-process,
#order-confirmation {
  background-color: var(--color-rose) !important;
}

/* Inner page headers (category/CMS page banners) */
.page-header,
.page-header h1,
#category header,
#product header {
  background-color: var(--color-rose) !important;
}

/* Generic card/block wrappers — transparent so body rose shows through */
.card-block,
.card-body,
.card,
.block,
.col-md-3,
.col-md-6,
.col-md-9 {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Exception: product miniature cards stay white for legibility */
.product-miniature .card,
.product-miniature article {
  background-color: var(--color-white) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  border: none !important;
}

/* Alerts */
.alert-success {
  background-color: rgba(0, 197, 188, 0.15);
  border-color: var(--color-green);
  color: var(--color-dark);
}

/* ── PRODUCT PAGE — TABS + REVIEWS ───────────────────────────────────────── */

/* Tab bar and all tab panels */
.tabs,
.tabs .nav-tabs,
.tabs .nav-item,
.tabs .nav-link,
.tab-content,
.tab-pane,
#product-details,
#description,
.js-product-details {
  background-color: var(--color-rose) !important;
  background: var(--color-rose) !important;
}

/* Tab nav-link active/hover states */
.tabs .nav-link.active,
.tabs .nav-link:focus,
.tabs .nav-link:hover {
  background-color: var(--color-rose) !important;
  border-color: rgba(0, 0, 0, 0.12) rgba(0, 0, 0, 0.12) var(--color-rose) !important;
  color: var(--color-dark) !important;
}

/* Product reviews section (ps_productcomments) */
#product-comments-list-pagination,
.product-comment-list-item,
#empty-product-comment,
.product-comments-additional-info,
#product-comments-list,
.product-comment-list {
  background-color: var(--color-rose) !important;
  background: var(--color-rose) !important;
}

.contact-form {
  background-color: var(--color-rose) !important;
  background: var(--color-rose) !important;
}

/* ── MOBILE GUARDS ────────────────────────────────────────────────────────── */
.container,
.container-fluid {
  max-width: 100%;
}