/* ================================================
   POÊLES & CONFORT - PrestaShop 8 Custom Theme
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- VARIABLES ---- */
:root {
  --color-primary: #c8873e;
  --color-primary-hover: #b5762f;
  --color-dark: #1a1a1a;
  --color-dark-alt: #2d2d2d;
  --color-footer: #8b7355;
  --color-footer-text: #e8e0d6;
  --color-bg: #ffffff;
  --color-card: #f9f7f4;
  --color-border: #e8e0d6;
  --color-text: #555555;
  --color-text-dark: #1a1a1a;
  --color-text-light: #888888;
  --color-success: #2d7b2d;
  --color-star: #e8912d;
  --color-danger: #c0392b;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --container-max: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-hover); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  line-height: 1.3;
  margin-top: 0;
}
ul { list-style: none; padding: 0; margin: 0; }
p { margin-top: 0; }

/* ---- GRID (PS compat) ---- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.row > * { padding: 0 15px; }
.col-xs-12 { width: 100%; }
.col-sm-6 { width: 50%; }
.col-md-2 { width: 16.666%; }
.col-md-3 { width: 25%; }
.col-md-4 { width: 33.333%; }
.col-md-5 { width: 41.666%; }
.col-md-6 { width: 50%; }
.col-md-7 { width: 58.333%; }
.col-md-8 { width: 66.666%; }
.col-md-9 { width: 75%; }
.col-md-10 { width: 83.333%; }
.col-md-12, .col-lg-12 { width: 100%; }
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-9 { width: 75%; }
.hidden-sm-down { display: block !important; }
.hidden-md-up { display: none !important; }
.text-sm-center { text-align: center; }
.clearfix::after { content: ''; display: table; clear: both; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  border: 2px solid transparent; text-decoration: none; line-height: 1.4;
}
.btn-primary, .btn.add-to-cart {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}
.btn-primary:hover, .btn.add-to-cart:hover {
  background: var(--color-primary-hover); border-color: var(--color-primary-hover); color: #fff;
}
.btn-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: #fff; color: var(--color-dark); border-color: #fff;
}
.btn-outline-dark {
  background: transparent; color: var(--color-dark); border: 2px solid var(--color-border);
}
.btn-outline-dark:hover { background: var(--color-dark); color: #fff; }
.btn-secondary {
  background: var(--color-card); color: var(--color-text-dark); border-color: var(--color-border);
}
.btn-secondary:hover { background: var(--color-border); }

/* ================================================
   HEADER
   ================================================ */
#header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--color-dark) !important;
  background-color: var(--color-dark) !important;
}
.header-banner, .header-nav { display: none !important; }

.header-top,
#header .header-top {
  background: var(--color-dark) !important;
  background-color: var(--color-dark) !important;
  padding: 0;
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 20px;
}

/* Logo */
.header-logo a {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; white-space: nowrap;
}
.logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(200,135,62,0.15);
  border-radius: 50%;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading); color: #fff;
  font-size: 20px; font-weight: 400; line-height: 1.2;
}
.logo-name em {
  font-style: italic; color: var(--color-primary);
}
.logo-subtitle {
  font-family: var(--font-body); color: rgba(255,255,255,0.5);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
}

/* Main Menu */
.header-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
/* Hide non-menu elements from displayTop hook */
.header-menu .search-widget,
.header-menu .search-widgets,
.header-menu #search_widget,
.header-menu #contact-link,
.header-menu .user-info,
.header-menu .ps-languageselector,
.header-menu .ps-currencyselector,
.header-menu .language-selector,
.header-menu .currency-selector {
  display: none !important;
}
.header-menu #_desktop_top_menu,
.header-menu .ps-mainmenu,
.header-menu #top-menu {
  display: flex; align-items: center; gap: 0;
  list-style: none; padding: 0; margin: 0;
}
#top-menu { position: relative; }
#top-menu > li { position: relative; }
#top-menu > li > a,
.header-menu .ps-mainmenu a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  font-size: 12px;
  font-family: var(--font-body);
  padding: 10px 16px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
#top-menu > li > a:hover { color: var(--color-primary); }
#top-menu .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; box-shadow: var(--shadow); border-radius: var(--radius);
  padding: 12px; min-width: 200px; z-index: 100;
}
#top-menu li:hover > .sub-menu { display: block; }
#top-menu .sub-menu a {
  color: var(--color-text-dark); font-size: 14px;
  text-transform: none; letter-spacing: 0;
  padding: 8px 12px; display: block; border-radius: 4px;
}
#top-menu .sub-menu a:hover { color: var(--color-primary); background: var(--color-card); }

/* Header Right */
.header-right {
  display: flex; align-items: center; gap: 20px;
  margin-left: auto; white-space: nowrap;
}
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: #fff !important; font-size: 14px; font-weight: 500;
  text-decoration: none;
}
.header-phone:hover { color: var(--color-primary) !important; }
.header-phone svg { flex-shrink: 0; }

/* Cart in header - icon only */
.header-cart-wrapper { display: flex; align-items: center; position: relative; }
.header-cart-wrapper .blockcart { position: relative; }
.header-cart-wrapper .blockcart .header a {
  color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  font-size: 0; /* hide text */
  position: relative;
}
.header-cart-wrapper .blockcart .header a::before {
  content: '';
  display: inline-block;
  width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") no-repeat center;
  font-size: 16px;
}
.header-cart-wrapper .blockcart .header a:hover::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23c8873e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") no-repeat center;
}
.header-cart-wrapper .cart-products-count {
  background: var(--color-primary); color: #fff; border-radius: 50%;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px !important; font-weight: 700;
  position: absolute; top: -6px; right: -8px;
}
/* Hide cart body (subtotals, shipping, total) */
.header-cart-wrapper .blockcart .body,
.header-cart-wrapper .blockcart > .body,
.header-cart-wrapper .cart-preview .body,
.header-cart-wrapper .cart-preview > .body,
.blockcart.cart-preview .body,
#header .blockcart .body {
  display: none !important;
}
.header-cart-wrapper .blockcart .cart-subtotals,
.header-cart-wrapper .blockcart .cart-total,
.blockcart.cart-preview .cart-subtotals,
.blockcart.cart-preview .cart-total,
#header .cart-subtotals,
#header .cart-total {
  display: none !important;
}
/* Hide elements from displayNav2 that aren't cart */
.header-cart-wrapper .user-info,
.header-cart-wrapper .ps-languageselector,
.header-cart-wrapper .ps-currencyselector,
.header-cart-wrapper #_desktop_user_info,
.header-cart-wrapper .language-selector,
.header-cart-wrapper .currency-selector,
.header-cart-wrapper .js-language,
.header-cart-wrapper .js-currency {
  display: none !important;
}

/* Mobile toggle */
.header-mobile-toggle {
  display: none; cursor: pointer;
  padding: 5px;
}

/* Mobile menu */
.mobile-menu-wrapper {
  background: var(--color-dark);
  padding: 15px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-wrapper #top-menu {
  flex-direction: column;
}
.mobile-menu-wrapper #top-menu > li > a {
  padding: 12px 0; display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

/* ================================================
   HOMEPAGE - Remove container constraints
   ================================================ */
#index #wrapper > .container {
  max-width: none;
  padding: 0;
}
#index #wrapper > .container > .row {
  margin: 0;
}
#index #content-wrapper {
  padding: 0;
  max-width: none;
  width: 100%;
}
#index #main {
  padding: 0;
}
#index .page-home {
  padding: 0;
}

/* Section inner container */
.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Common section styles */
.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 15px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 15px;
  margin-bottom: 10px;
}
.section-divider {
  width: 60px; height: 3px;
  background: var(--color-primary);
  margin: 20px auto 40px;
  border-radius: 2px;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%),
    url('https://images.unsplash.com/photo-1543076447-215ad9ba6923?w=1600&h=900&fit=crop') center/cover no-repeat;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: 4px;
  margin-bottom: 25px;
  font-family: var(--font-body);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--color-primary);
}
.hero-text {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 500px;
}
.hero-buttons {
  display: flex; gap: 15px; flex-wrap: wrap;
}
.hero-buttons .btn-primary {
  padding: 16px 36px;
  font-size: 15px;
  border-radius: 8px;
}
.hero-buttons .btn-outline {
  padding: 16px 36px;
  font-size: 15px;
  border-radius: 8px;
}

/* ================================================
   WHY SECTION
   ================================================ */
.why-section {
  padding: 80px 0;
  background: #fff;
}
.why-section .section-title {
  margin-bottom: 50px;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(200,135,62,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}
.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

/* ================================================
   FEATURED PRODUCTS SECTION
   ================================================ */
.products-section {
  padding: 60px 0 80px;
  background: var(--color-card);
}
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
}
.section-header-row .section-title {
  text-align: left;
  margin-bottom: 5px;
}
.section-header-row .section-subtitle {
  text-align: left;
  margin-bottom: 0;
}
.link-catalog {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.link-catalog:hover { gap: 10px; }

/* Hide image slider & custom text from HOOK_HOME, keep featured products */
.hook-home-wrapper .ps-imageslider,
.hook-home-wrapper #homeslider,
.hook-home-wrapper .homeslider,
.hook-home-wrapper .custom-text-block,
.hook-home-wrapper #custom-text {
  display: none !important;
}

/* Featured products from module */
.hook-home-wrapper .featured-products,
.hook-home-wrapper .ps-featuredproducts {
  padding: 0;
}
.hook-home-wrapper .featured-products h2,
.hook-home-wrapper .ps-featuredproducts h2,
.hook-home-wrapper .products-section-title {
  display: none;
}
.hook-home-wrapper .featured-products .all-product-link {
  display: none;
}
.hook-home-wrapper .featured-products .products,
.hook-home-wrapper .ps-featuredproducts .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ================================================
   PRODUCT MINIATURE (Cards)
   ================================================ */
.product-miniature {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-miniature:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.product-miniature .thumbnail-container { position: relative; }
.product-miniature .thumbnail-top { position: relative; overflow: hidden; }
.product-miniature .product-thumbnail {
  display: block; aspect-ratio: 1;
  overflow: hidden; background: var(--color-card);
}
.product-miniature .product-thumbnail img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-miniature:hover .product-thumbnail img { transform: scale(1.05); }
.product-miniature .product-description { padding: 18px; }
.product-miniature .product-title {
  font-family: var(--font-heading); font-size: 18px;
  font-weight: 700; margin-bottom: 5px;
}
.product-miniature .product-title a { color: var(--color-text-dark); text-decoration: none; }
.product-miniature .product-title a:hover { color: var(--color-primary); }
.product-miniature .product-price-and-shipping { margin-top: 10px; }
.product-miniature .price {
  font-size: 20px; font-weight: 700; color: var(--color-text-dark);
}
.product-miniature .regular-price {
  text-decoration: line-through; color: var(--color-text-light);
  font-size: 14px; margin-right: 8px;
}
.product-miniature .discount-percentage,
.product-miniature .discount-amount {
  background: var(--color-danger); color: #fff;
  padding: 2px 8px; border-radius: 4px; font-size: 12px; font-weight: 600;
}
.product-miniature .highlighted-informations {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.7); padding: 10px; text-align: center;
  transform: translateY(100%); transition: var(--transition);
}
.product-miniature:hover .highlighted-informations { transform: translateY(0); }
.product-miniature .highlighted-informations a { color: #fff; font-size: 13px; }

/* Product Flags */
.product-flags {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  display: flex; flex-direction: column; gap: 5px;
}
.product-flag {
  padding: 5px 14px; border-radius: 4px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; color: #fff;
}
.product-flag.on-sale, .product-flag.discount { background: var(--color-danger); }
.product-flag.new { background: var(--color-success); }
.product-flag.pack { background: var(--color-primary); }

/* ================================================
   SERVICE SECTION
   ================================================ */
.service-section {
  padding: 80px 0;
  background: var(--color-dark);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-title {
  font-family: var(--font-heading);
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.service-title em {
  font-style: italic;
  color: var(--color-primary);
}
.service-text {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 35px;
}
.service-items {
  display: flex; flex-direction: column; gap: 25px;
}
.service-item {
  display: flex; gap: 15px; align-items: flex-start;
}
.service-item-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(200,135,62,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-item h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 16px;
  margin: 0 0 4px;
  font-weight: 700;
}
.service-item p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}
.service-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}
.service-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 13px;
  padding: 12px 20px;
  font-style: italic;
}

/* ================================================
   PARTNERS SECTION
   ================================================ */
.partners-section {
  padding: 60px 0;
  background: #fff;
}
.partners-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--color-text-light);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.partners-divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin-bottom: 40px;
}
.partners-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.partners-list span {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 1px;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--color-card);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.testimonial-avatar img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author {
  flex: 1;
}
.testimonial-author strong {
  display: block;
  font-size: 16px;
  color: var(--color-text-dark);
}
.testimonial-city {
  font-size: 12px;
  color: var(--color-text-light);
  letter-spacing: 1px;
}
.testimonial-quote {
  font-size: 36px;
  color: var(--color-primary);
  line-height: 1;
  font-family: serif;
  opacity: 0.6;
}
.testimonial-stars {
  color: var(--color-star);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 15px;
}
.testimonial-product {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-text-light);
  text-transform: uppercase;
}

/* ================================================
   BREADCRUMB
   ================================================ */
.breadcrumb-wrapper, .breadcrumb[data-depth] {
  background: transparent; padding: 12px 0; margin-bottom: 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--color-text-light);
  padding: 10px 0; margin: 0; background: transparent;
}
.breadcrumb-item a { color: var(--color-text-light); }
.breadcrumb-item a:hover { color: var(--color-primary); }
.breadcrumb-item + .breadcrumb-item::before {
  content: '>'; color: var(--color-text-light); margin-right: 8px;
}
.breadcrumb-item.active { color: var(--color-text-dark); }

/* ================================================
   CATEGORY PAGE
   ================================================ */
.category-header {
  background: var(--color-card);
  padding: 40px 0;
  margin-bottom: 30px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.category-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}
.category-description {
  color: var(--color-text-light); font-size: 15px;
}

/* Filters Sidebar */
#left-column { padding-right: 30px; }
#left-column .block-categories,
#left-column #search_filters {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 20px;
}
.facet {
  margin-bottom: 25px; padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.facet:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.facet-title {
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  color: var(--color-text-dark); margin-bottom: 12px;
}
.facet-label { padding: 5px 0; }
.facet-label a {
  color: var(--color-text); font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.facet-label a:hover { color: var(--color-primary); }
.facet-label.active a { color: var(--color-primary); font-weight: 600; }
.active-filter-title {
  font-weight: 600; color: var(--color-primary);
  font-size: 14px; margin-bottom: 10px;
}
.filter-block {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--color-card); padding: 4px 12px;
  border-radius: 20px; font-size: 13px; margin: 0 5px 5px 0;
}

/* Products Top (count + sort) */
.products-selection {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 25px; padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}
.total-products p { font-size: 14px; color: var(--color-text-light); margin: 0; }
.products-sort-order select, .js-sort-orders {
  padding: 8px 35px 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 6px; font-size: 14px;
  background: #fff; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}

/* Product Grid in category */
.products.row, #js-product-list .products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
}
.products .js-product { width: 100% !important; padding: 0 !important; }

/* ================================================
   PRODUCT PAGE
   ================================================ */
.product-container { margin-top: 20px; }
.product-container .page-content { position: relative; }
.product-cover {
  position: relative; background: var(--color-card);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 15px;
}
.product-cover img { width: 100%; height: auto; display: block; }
.images-container .mask { margin-top: 10px; }
.product-images { display: flex; gap: 10px; }
.product-images .thumb-container { cursor: pointer; }
.product-images .thumb {
  width: 80px; height: 80px; object-fit: cover;
  border: 2px solid var(--color-border);
  border-radius: 6px; transition: var(--transition);
}
.product-images .thumb:hover, .product-images .thumb.selected {
  border-color: var(--color-primary);
}
.scroll-box-arrows { display: none; }

/* Product Info */
.product-container h1.h1 {
  font-family: var(--font-heading); font-size: 32px; margin-bottom: 10px;
}
.product-prices { margin-bottom: 20px; }
.product-prices .current-price-value {
  font-size: 36px; font-weight: 700; color: var(--color-text-dark);
  font-family: var(--font-heading);
}
.product-prices .regular-price {
  text-decoration: line-through; color: var(--color-text-light); font-size: 18px;
}
.product-prices .discount-percentage {
  background: var(--color-danger); color: #fff;
  padding: 3px 10px; border-radius: 4px; font-size: 13px; margin-left: 10px;
}
.product-information { margin-top: 20px; }
.product-description {
  font-size: 15px; line-height: 1.7; color: var(--color-text); margin-bottom: 20px;
}
.product-availability { margin-top: 5px; }
.product-available { color: var(--color-success); }
.product-unavailable { color: var(--color-danger); }
.product-last-items { color: var(--color-primary); }
#product-availability {
  font-size: 14px; display: flex; align-items: center; gap: 5px; margin-top: 10px;
}
#product-availability .material-icons { font-size: 18px; }

/* Product Quantity & Add to cart */
.product-quantity { display: flex; align-items: center; gap: 15px; margin-top: 25px; }
.product-quantity .qty { display: flex; align-items: center; }
.product-quantity .qty input {
  width: 60px; height: 48px; text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 6px; font-size: 16px; font-weight: 600;
}
.product-quantity .qty input:focus { outline: none; border-color: var(--color-primary); }
.product-quantity .add .btn {
  height: 48px; padding: 0 35px;
  background: var(--color-footer); color: #fff; border-color: var(--color-footer);
  font-size: 15px; font-weight: 600; border-radius: 6px;
}
.product-quantity .add .btn:hover {
  background: var(--color-primary); border-color: var(--color-primary);
}
.product-quantity .add .btn .material-icons { display: none; }

/* Product Tabs */
.tabs { margin-top: 40px; }
.tabs .nav-tabs {
  display: flex; border-bottom: 2px solid var(--color-border); gap: 0;
}
.tabs .nav-link {
  padding: 12px 25px; font-size: 14px; font-weight: 600;
  color: var(--color-text-light);
  border: none; background: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: var(--transition);
}
.tabs .nav-link:hover { color: var(--color-text-dark); }
.tabs .nav-link.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.tab-content { padding: 25px 0; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.data-sheet { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.data-sheet dt {
  padding: 10px 15px; background: var(--color-card);
  font-weight: 600; font-size: 14px; border-bottom: 1px solid var(--color-border);
}
.data-sheet dd {
  padding: 10px 15px; margin: 0; font-size: 14px;
  border-bottom: 1px solid var(--color-border);
}

/* Product Accessories */
.product-accessories {
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
.product-accessories .h5 {
  font-family: var(--font-heading); font-size: 24px; margin-bottom: 25px;
}
.product-accessories .products {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.product-accessories .js-product { width: 100% !important; padding: 0 !important; }

/* ================================================
   FOOTER
   ================================================ */
#footer { margin-top: 0; }
.footer-before { display: none !important; }

.footer-container {
  background: var(--color-footer);
  padding: 50px 0 0;
  color: var(--color-footer-text);
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-container h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-container a { color: var(--color-footer-text); }
.footer-container a:hover { color: #fff; }
.footer-container ul li {
  margin-bottom: 10px; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}

/* Footer logo & about */
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 15px;
}
.footer-logo-text {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 20px;
}
.footer-logo-text em {
  font-style: italic; color: var(--color-primary);
}
.footer-about-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-footer-text);
  margin-bottom: 18px;
}
.footer-brands {
  display: flex; gap: 8px;
}
.footer-brand-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}

/* Footer contact */
.footer-contact-list li {
  align-items: flex-start !important;
}
.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* Footer certifications */
.footer-certifications {
  display: flex; gap: 10px;
  margin-top: 20px;
}
.cert-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.cert-badge-green {
  background: rgba(45,123,45,0.4);
}

/* Footer copyright */
.footer-copyright {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-legal a {
  font-size: 13px;
  margin-left: 20px;
}

/* ================================================
   FORMS
   ================================================ */
input[type="text"], input[type="email"], input[type="password"], input[type="tel"],
input[type="number"], select, textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px; font-size: 14px; font-family: var(--font-body);
  transition: var(--transition); background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200,135,62,0.1);
}

/* ================================================
   ALERTS
   ================================================ */
.alert { padding: 15px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ================================================
   PAGINATION
   ================================================ */
.pagination {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.page-list { display: flex; gap: 5px; list-style: none; padding: 0; justify-content: flex-end; }
.page-list li a, .page-list li span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 6px; font-size: 14px; color: var(--color-text);
  text-decoration: none; transition: var(--transition);
}
.page-list li.current a, .page-list li a.disabled {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}
.page-list li a:hover { background: var(--color-card); border-color: var(--color-primary); }

/* ================================================
   MODALS
   ================================================ */
.blockcart-modal .modal-dialog { max-width: 600px; margin: 80px auto; }
.blockcart-modal .modal-content { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-hover); }
.blockcart-modal .modal-header { border-bottom: 1px solid var(--color-border); padding: 20px 25px; }
.blockcart-modal .modal-header .close { font-size: 24px; background: none; border: none; cursor: pointer; }
.blockcart-modal .modal-body { padding: 25px; }
.blockcart-modal .cart-content { display: flex; gap: 20px; }
.blockcart-modal .product-image img { width: 100px; border-radius: var(--radius); }
.blockcart-modal .btn-primary { width: 100%; margin-top: 15px; justify-content: center; }

.modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.5); align-items: center; justify-content: center; }
.modal.show, .modal.in { display: flex; }
.modal-dialog { background: #fff; border-radius: var(--radius-lg); max-width: 900px; width: 90%; max-height: 90vh; overflow-y: auto; }
.modal-content { border: none; border-radius: var(--radius-lg); }
.modal-body { padding: 30px; }

/* ================================================
   PRODUCT VARIANTS
   ================================================ */
.product-variants { margin-bottom: 20px; }
.product-variants-item { margin-bottom: 15px; }
.product-variants-item .control-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.product-variants-item select { max-width: 250px; }
.input-color { display: none; }
.product-variants .color {
  display: inline-block; width: 30px; height: 30px;
  border-radius: 50%; border: 2px solid var(--color-border); cursor: pointer;
}
.product-variants .color:hover, .input-color:checked + .color {
  border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary);
}

/* ================================================
   STAR RATING
   ================================================ */
.star-content, .comments-note { display: flex; align-items: center; gap: 3px; }
.star-content .star, .grade-stars .star-on { color: var(--color-star); }
.star-content .star-off { color: #ddd; }

/* ================================================
   MATERIAL ICONS
   ================================================ */
.material-icons { font-family: 'Material Icons'; font-size: 24px; vertical-align: middle; }

/* ================================================
   PAGE CONTENT
   ================================================ */
.page-content.card { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 30px; }
.page-header h1 { font-family: var(--font-heading); font-size: 32px; margin-bottom: 25px; }

/* ================================================
   CUSTOMER PAGES
   ================================================ */
.page-my-account #content .links a {
  display: flex; align-items: center; gap: 10px; padding: 15px;
  border: 1px solid var(--color-border); border-radius: var(--radius);
  margin-bottom: 10px; font-weight: 500; color: var(--color-text-dark);
}
.page-my-account #content .links a:hover { border-color: var(--color-primary); background: var(--color-card); }

/* ================================================
   CHECKOUT
   ================================================ */
.checkout-step { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 25px; margin-bottom: 20px; }
.checkout-step .step-title { font-family: var(--font-heading); font-size: 20px; cursor: pointer; }

/* ================================================
   PS MODULE OVERRIDES
   ================================================ */
/* Faceted Search */
#search_filters .facet { margin-bottom: 20px; }
#search_filters .facet-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
#search_filters .facet-label { margin-bottom: 4px; }
#search_filters .facet-label a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--color-text); }

/* Social Follow */
.block-social { margin-top: 20px; }
.block-social ul { display: flex; gap: 12px; }
.block-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff; transition: var(--transition);
}
.block-social a:hover { background: var(--color-primary); }

/* Reassurance */
.blockreassurance { display: none; }

/* Email subscription */
.block_newsletter { padding: 30px 0; }
.block_newsletter form { display: flex; gap: 10px; max-width: 400px; }
.block_newsletter input[type="email"] {
  flex: 1; padding: 10px 15px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1); color: #fff;
  border-radius: 6px; font-size: 14px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
  .hook-home-wrapper .featured-products .products,
  .hook-home-wrapper .ps-featuredproducts .products,
  .product-accessories .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hidden-sm-down { display: none !important; }
  .hidden-md-up { display: block !important; }
  .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
  .col-md-7, .col-md-8, .col-md-9, .col-md-10 { width: 100%; }
  #left-column { padding-right: 15px; margin-bottom: 25px; }

  /* Header */
  .header-menu { display: none; }
  .header-phone span { display: none; }
  .header-mobile-toggle { display: block; }

  /* Hero */
  .hero-title { font-size: 40px; }
  .hero-section { min-height: 450px; }

  /* Why cards */
  .why-cards { grid-template-columns: 1fr; gap: 20px; }

  /* Products */
  .products.row, #js-product-list .products { grid-template-columns: repeat(2, 1fr); }
  .hook-home-wrapper .featured-products .products,
  .hook-home-wrapper .ps-featuredproducts .products { grid-template-columns: repeat(2, 1fr); }
  .product-accessories .products { grid-template-columns: repeat(2, 1fr); }

  /* Service */
  .service-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-image-wrapper img { height: 300px; }

  /* Partners */
  .partners-list { gap: 25px; }
  .partners-list span { font-size: 18px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  /* Mobile menu */
  .mobile-menu-wrapper { padding: 15px 20px; }
}

@media (max-width: 768px) {
  .products.row, #js-product-list .products { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .product-container h1.h1 { font-size: 26px; }
  .product-prices .current-price-value { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-container { padding: 30px 0 0; }
  .footer-copyright { flex-direction: column; gap: 10px; text-align: center; }
  .footer-legal a { margin-left: 10px; }
  .tabs .nav-tabs { overflow-x: auto; }
  .tabs .nav-link { white-space: nowrap; padding: 10px 15px; font-size: 13px; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 15px; }
  .hero-content { padding: 40px 20px; }
  .hero-title { font-size: 36px; }
  .hero-buttons .btn { padding: 12px 24px; font-size: 14px; }
}

@media (max-width: 576px) {
  .products.row, #js-product-list .products,
  .hook-home-wrapper .featured-products .products,
  .hook-home-wrapper .ps-featuredproducts .products { grid-template-columns: 1fr; }
  .product-accessories .products { grid-template-columns: repeat(2, 1fr); }
  .container, .section-inner { padding: 0 15px; }
  h1 { font-size: 26px; }
  .hero-title { font-size: 30px; }
  .hero-section { min-height: 400px; }
  .why-section, .products-section, .service-section,
  .partners-section, .testimonials-section { padding: 50px 0; }
  .product-quantity { flex-direction: column; align-items: stretch; }
  .product-quantity .add .btn { width: 100%; justify-content: center; }
  .products-selection { flex-direction: column; gap: 10px; align-items: flex-start; }
  .partners-list span { font-size: 16px; }
}
