/* DPF Shop - Custom Styles */
/* Barevné schéma podle dpfpraha.cz */

:root {
  /* Primary - zelená */
  --bs-primary: #72bf44;
  --bs-primary-rgb: 114, 191, 68;

  /* Secondary - oranžová (CTA) */
  --bs-secondary: #f49b00;
  --bs-secondary-rgb: 244, 155, 0;

  /* Link colors */
  --bs-link-color-rgb: 114, 191, 68;
  --bs-link-color: #72bf44;
  --bs-link-hover-color: #5a9936;

  /* Layout */
  --boxed-max-width: 1320px;
  --boxed-bg-color: #f5f5f5;
}

/* Font Montserrat */
body {
  font-family: "Montserrat", sans-serif;
}

/* Primary button - zelená */
.btn-primary {
  --bs-btn-bg: #72bf44;
  --bs-btn-border-color: #72bf44;
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #5a9936;
  --bs-btn-hover-border-color: #5a9936;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: #4d8530;
  --bs-btn-active-border-color: #4d8530;
  --bs-btn-active-color: #fff;
  font-weight: 700;
}

/* Secondary button - oranžová (CTA) */
.btn-secondary {
  --bs-btn-bg: #f49b00;
  --bs-btn-border-color: #f49b00;
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #d98a00;
  --bs-btn-hover-border-color: #d98a00;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: #c07a00;
  --bs-btn-active-border-color: #c07a00;
}

/* Add to cart button - zelená */
.add-to-cart,
.product-add-to-cart .btn-primary,
.product-miniature .btn-primary,
button[data-button-action="add-to-cart"] {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: #5ea835;
  --bs-btn-hover-border-color: #5ea835;
  --bs-btn-active-bg: #4e9a2d;
  --bs-btn-active-border-color: #4e9a2d;
}

/* Product page - add to cart larger */
.product__add-to-cart .add-to-cart {
  font-size: 1.15rem;
  padding: 0.85rem 2rem;
  font-weight: 700;
  color: #fff !important;
}

/* Quantity input same height as add to cart button */
.product__add-to-cart .row.g-2 {
  align-items: stretch;
}

.product__add-to-cart .quantity-button {
  height: auto;
}

.product__add-to-cart .quantity-button .input-group {
  height: 100%;
  margin-bottom: 0 !important;
}

.product__add-to-cart .quantity-button .input-group .btn,
.product__add-to-cart .quantity-button .input-group .form-control {
  height: 100%;
}

/* Product listing - reduce gap between title and price */
.product-miniature .product-list-reviews:empty,
.product-miniature .product-list-reviews {
  display: none;
}

/* Hide quick view button in product listing */
.product-miniature .product-miniature__quickview {
  display: none;
}

.product-miniature .product-miniature__infos__top {
  padding-bottom: 0;
}

.product-miniature .product-miniature__infos__bottom {
  margin-top: 0;
}


a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
}

a:hover {
  color: var(--bs-link-hover-color);
}

/* ===========================================
   BOXED LAYOUT
   =========================================== */

body {
  background-color: var(--boxed-bg-color);
}

/* Main wrapper - boxed container */
#wrapper,
#header,
#footer {
  max-width: var(--boxed-max-width);
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

/* Header boxed */
header#header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Header top bar - full width inside box */
.header__top {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

/* Header nav container */
.header__nav,
.header__top .container {
  max-width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Main content wrapper */
#wrapper {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Footer boxed */
#footer {
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  background-color: transparent;
}

/* Slider/Carousel - full width inside box */
.carousel {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  width: calc(100% + 3rem);
}


/* Responsive adjustments */
@media (max-width: 1400px) {
  :root {
    --boxed-max-width: 100%;
  }

  body {
    background-color: #fff;
  }

  #wrapper,
  #header,
  #footer {
    box-shadow: none;
  }
}

/* ===========================================
   HOMEPAGE - HERO BANNER
   =========================================== */

.hero-banner {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  width: calc(100% + 3rem);
  margin-bottom: 2rem;
}

.hero-banner__container {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  max-height: 550px;
}

.hero-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 400px;
  max-height: 550px;
  padding: 3rem 2rem;
}

.hero-banner__text {
  max-width: 700px;
  color: #fff;
}

.hero-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #fff;
}

.hero-banner__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-banner__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-banner__cta .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-banner__cta .btn-outline-light {
  border-width: 2px;
}

.hero-banner__cta .btn-outline-light:hover {
  background-color: #fff;
  color: #333;
}

/* Hero Banner - Responsive */
@media (max-width: 768px) {
  .hero-banner__container {
    min-height: 350px;
  }

  .hero-banner__content {
    min-height: 350px;
    padding: 2rem 1.5rem;
  }

  .hero-banner__title {
    font-size: 1.75rem;
  }

  .hero-banner__subtitle {
    font-size: 1rem;
  }

  .hero-banner__cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .hero-banner__container {
    min-height: 300px;
  }

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

  .hero-banner__cta {
    flex-direction: column;
  }

  .hero-banner__cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ===========================================
   HOMEPAGE - CATEGORY CARDS GRID (ps-category-card)
   =========================================== */

.ps-category-cards {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.ps-category-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.ps-category-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.ps-category-card__header {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.ps-category-card__image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  filter: saturate(0.3);
  transition: filter 0.3s ease;
}

.ps-category-card__image--placeholder {
  background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
}

.ps-category-card__header:hover .ps-category-card__image {
  filter: saturate(1);
}

/* Green overlay on image - using primary color #72bf44 (rgb: 114, 191, 68) */
.ps-category-card__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(114, 191, 68, 0.7) 0%,
    rgba(90, 153, 54, 0.85) 100%
  );
  z-index: 1;
  transition: background 0.3s ease;
}

.ps-category-card__header:hover::before {
  background: linear-gradient(
    180deg,
    rgba(114, 191, 68, 0.6) 0%,
    rgba(90, 153, 54, 0.75) 100%
  );
}

.ps-category-card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.ps-category-card__links {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.ps-category-card__links li {
  border-bottom: 1px solid #f0f0f0;
}

.ps-category-card__links li:last-child {
  border-bottom: none;
}

.ps-category-card__links a {
  display: block;
  padding: 0.75rem 1rem;
  color: #008b8b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.ps-category-card__links a:hover {
  background-color: #f8f9fa;
  color: #006666;
  padding-left: 1.25rem;
}

/* Category Cards - Responsive */
@media (max-width: 768px) {
  .ps-category-card__image {
    height: 100px;
  }

  .ps-category-card__title {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .ps-category-card__links a {
    padding: 0.625rem 0.75rem;
    font-size: 0.85rem;
  }
}

/* ===========================================
   HOMEPAGE - FEATURED PRODUCTS SECTION
   =========================================== */

.page-home .featured-products {
  padding: 2rem 0;
}

.page-home .featured-products .products-section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #333;
}

.page-home .featured-products .products-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--bs-primary);
  margin: 0.75rem auto 0;
}

/* Hide other homepage modules */
.page-home #content > section:not(.featured-products):not(.hero-banner):not(.ps-category-cards) {
  display: none;
}

/* ===========================================
   PRODUCT LISTING - Miniature Cards
   =========================================== */

/* Název produktu - bold */
.product-miniature__title {
  font-weight: 700;
}

/* Menší mezera mezi názvem produktu a cenou */
.product-miniature__infos__top {
  margin-bottom: 0.25rem;
}

.product-miniature__infos__bottom {
  padding-top: 0;
}

/* ===========================================
   MODERN HEADER STYLES
   =========================================== */

/* Header Top - Modern compact style */
.header-top {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .header-top {
    border-bottom: none;
  }
}

.header-top a:not(.dropdown-item) {
  color: var(--header-top-color);
  transition: color 0.2s ease;
  font-weight: 500;
}

.header-top a:not(.dropdown-item):hover,
.header-top a:not(.dropdown-item):hover *,
.header-top a:not(.dropdown-item):hover .material-icons {
  color: var(--bs-primary);
}

.header-top-desktop {
  padding: 0.5rem 0;
}

.header-top__right {
  gap: 0.5rem;
}

.header-top__right > *:not(:last-child) {
  margin-right: 0;
}

.header-top__left a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.header-top__left a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--bs-primary);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.header-top__left a:hover::before {
  opacity: 1;
}

/* ===========================================
   HEADER BOTTOM - Modern style
   =========================================== */

.header-bottom {
  padding: 0.5rem 0;
  border-bottom: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .header-bottom {
    padding: 0.75rem 0;
  }

  .header-bottom__row {
    min-height: 4.5rem;
  }
}

.header-bottom .navbar-brand {
  max-width: 180px;
  padding: 0;
  transition: transform 0.2s ease;
}

.header-bottom .navbar-brand:hover {
  transform: scale(1.02);
}

.header-bottom .navbar-brand img.logo {
  width: auto;
  max-height: 40px;
  display: block;
}

/* Logo container padding and centering */
.header-bottom__row .logo {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-bottom__row .logo .header-bottom__h1 {
  display: flex;
  align-items: center;
}

.header-bottom__row .logo .navbar-brand {
  display: flex;
  align-items: center;
}

/* Modern navigation links */
.header-bottom .nav-link {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.75rem 1rem !important;
  transition: color 0.2s ease;
}

.header-bottom .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--bs-primary);
  transition: all 0.25s ease;
  transform: translateX(-50%);
}

.header-bottom .nav-link:hover::after {
  width: 80%;
}

.header-bottom .nav-link:active,
.header-bottom .nav-link.active {
  color: var(--bs-primary);
}

.header-bottom .nav-link:active::after,
.header-bottom .nav-link.active::after {
  width: 80%;
}

.header-bottom .nav-link:active:hover {
  color: var(--bs-primary);
}

/* Dropdown improvements */
.header-bottom .dropdown-menu {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem;
  animation: fadeInDown 0.2s ease;
}

.header-bottom .dropdown-item {
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  transition: all 0.15s ease;
}

.header-bottom .dropdown-item:hover {
  background: var(--bs-gray-100);
  transform: translateX(4px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================================
   HEADER BLOCK - Action buttons (cart, user, etc)
   =========================================== */

.header-block__action-btn {
  display: flex;
  gap: 0.2em;
  align-items: center;
  padding: var(--header-block-spacing-y) var(--header-block-spacing-x);
  color: var(--header-top-color);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  background: transparent;
}

.header-block__action-btn:hover,
.header-block__action-btn:focus {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), 0.08);
}

@media (min-width: 768px) {
  .header-block__action-btn {
    padding: 0.625rem 0.875rem;
  }
}

.header-block__icon {
  font-size: 1.375rem;
  transition: transform 0.2s ease;
}

@media (min-width: 768px) {
  .header-block__icon {
    margin-right: 0.35em;
  }
}

.header-block__action-btn:hover .header-block__icon {
  transform: scale(1.1);
}

.header-block__title {
  font-weight: 500;
  font-size: 0.875rem;
}

.header-block__badge {
  position: absolute;
  top: 0.25em;
  right: -0.15em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5em;
  height: 1.5em;
  padding: 0 0.35em;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  color: var(--bs-white);
  text-align: center;
  background: var(--bs-primary);
  border-radius: 50rem;
  box-shadow: 0 2px 4px rgba(var(--bs-primary-rgb), 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .header-block__badge {
    position: static;
    min-width: 1.75em;
    height: 1.75em;
    margin-left: 0.5em;
    font-size: 0.75rem;
    color: var(--bs-white);
    background: var(--bs-primary);
    animation: none;
  }
}

/* Header block active state */
@media (min-width: 992px) {
  .header-block--active .header-block__action-btn {
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.08);
  }

  .header-block--active .header-block__icon {
    color: var(--bs-primary);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ===========================================
   MODERN SEARCH BOX
   =========================================== */

.header-bottom #search_widget,
.search__offcanvas #search_widget {
  min-width: 22rem;
  overflow: visible;
}

@media (max-width: 767.98px) {
  .header-bottom #search_widget,
  .search__offcanvas #search_widget {
    min-width: inherit;
  }
}

.header-bottom #search_widget input,
.search__offcanvas #search_widget input {
  height: 2.75rem;
  padding-right: 3.5rem;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  background: var(--bs-gray-100);
  border: 2px solid transparent;
  border-radius: 0.75rem;
  transition: all 0.25s ease;
}

.header-bottom #search_widget input::placeholder,
.search__offcanvas #search_widget input::placeholder {
  color: var(--bs-gray-500);
  font-weight: 400;
}

.header-bottom #search_widget input:hover,
.search__offcanvas #search_widget input:hover {
  background: var(--bs-gray-50);
  border-color: var(--bs-gray-200);
}

.header-bottom #search_widget input:focus,
.search__offcanvas #search_widget input:focus {
  background: var(--bs-white);
  border-color: var(--bs-primary);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(var(--bs-primary-rgb), 0.12);
}

@media (max-width: 767.98px) {
  .header-bottom #search_widget input,
  .search__offcanvas #search_widget input {
    font-size: 1rem;
    height: 3rem;
  }
}

.header-bottom #search_widget .search,
.search__offcanvas #search_widget .search {
  right: 0.75rem;
  color: var(--bs-gray-500);
  transition: all 0.2s ease;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.header-bottom #search_widget .search:hover,
.search__offcanvas #search_widget .search:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.header-bottom #search_widget .clear,
.search__offcanvas #search_widget .clear {
  right: 3rem;
  color: var(--bs-gray-500);
  transition: color 0.2s ease;
}

.header-bottom #search_widget .clear:hover,
.search__offcanvas #search_widget .clear:hover {
  color: var(--bs-gray-700);
}

/* Search dropdown results */
.search-widgets__dropdown {
  border: none !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
  overflow: hidden;
}

.search-widgets__results {
  padding: 0.75rem !important;
}

.search-result__link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease;
}

.search-result__link:hover {
  background: var(--bs-gray-100);
  transform: translateX(4px);
}

.search-result__name {
  font-weight: 500;
}

.search-result__image {
  border-radius: 0.5rem;
}

/* ===========================================
   HEADER MODERN - Additional styles
   =========================================== */

/* Smooth sticky header */
.header {
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Main menu improvements */
.top-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.top-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Category dropdown */
.category-top-menu .dropdown-toggle::after {
  transition: transform 0.2s ease;
}

.category-top-menu.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* User info block */
.user-info .dropdown-menu {
  min-width: 200px;
  padding: 0.5rem;
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.user-info .dropdown-menu .dropdown-divider {
  margin: 0.5rem 0;
}

.user-info .dropdown-item {
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-weight: 500;
  transition: all 0.15s ease;
}

.user-info .dropdown-item i {
  margin-right: 0.5rem;
  font-size: 1.125rem;
}

.user-info .dropdown-item:hover {
  background: var(--bs-gray-100);
  transform: translateX(4px);
}

/* Cart block improvements */
.blockcart .header-block__action-btn {
  position: relative;
}

/* Logo container */
.logo a {
  display: block;
}

.logo img {
  transition: opacity 0.2s ease;
}

.logo:hover img {
  opacity: 0.9;
}

/* ===========================================
   MODERN FOOTER STYLES
   =========================================== */

/* Footer variables */
#footer {
  --footer-bg: #1a1d21;
  --footer-bg-dark: #12141a;
  --footer-text: #9ca3af;
  --footer-heading: #ffffff;
  --footer-link: #9ca3af;
  --footer-link-hover: #72bf44;
  --footer-border: rgba(255, 255, 255, 0.08);
}

/* Footer wrapper */

/* ===========================================
   FOOTER - Newsletter Section (Before)
   =========================================== */

#footer .footer__before {
  background: #e8eaed;
  border-top: 1px solid #ddd;
}

#footer .footer__before .container {
  padding-left: 0;
  padding-right: 0;
}

#footer .email-subscription {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/* Newsletter block styling */
#footer .block_newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

#footer .block_newsletter .block_newsletter__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1d21;
  margin-bottom: 0.5rem;
}

#footer .block_newsletter .block_newsletter__label {
  color: #6b7280;
  font-size: 0.9375rem;
}

#footer .block_newsletter form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

#footer .block_newsletter input[type="email"] {
  min-width: 280px;
  height: 3rem;
  padding: 0 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  transition: all 0.25s ease;
}

#footer .block_newsletter input[type="email"]:focus {
  border-color: var(--bs-primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--bs-primary-rgb), 0.1);
}

#footer .block_newsletter button,
#footer .block_newsletter .btn {
  height: 3rem;
  padding: 0 1.75rem;
  background: var(--bs-primary);
  border: none;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

#footer .block_newsletter button:hover,
#footer .block_newsletter .btn:hover {
  background: var(--bs-link-hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
}

@media (max-width: 768px) {
  #footer .block_newsletter {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  #footer .block_newsletter form {
    width: 100%;
    flex-direction: column;
  }

  #footer .block_newsletter input[type="email"] {
    min-width: 100%;
    width: 100%;
  }

  #footer .block_newsletter button,
  #footer .block_newsletter .btn {
    width: 100%;
  }
}

/* ===========================================
   FOOTER - Main Section
   =========================================== */

#footer .footer__main {
  background: var(--footer-bg);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  border-radius: 0 0 0.75rem 0.75rem;
}

/* Footer top row - link columns */
#footer .footer__main__top {
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
}

/* Footer block styling */
#footer .footer__block {
  margin-bottom: 2rem;
}

/* Footer headings */
#footer .footer__block__title,
#footer .footer__block h2,
#footer .footer__block h3,
#footer .footer__block .h3,
#footer .footer__block .h4 {
  color: var(--footer-heading) !important;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bs-primary);
  display: inline-block;
}

/* Footer links list */
#footer .footer__block__content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer__block__content-list li {
  margin-bottom: 0.5rem;
}

#footer .footer__block__content-list a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0;
  transition: all 0.2s ease;
  position: relative;
}

#footer .footer__block__content-list a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--footer-link-hover);
  transition: width 0.25s ease;
}

#footer .footer__block__content-list a:hover {
  color: var(--footer-link-hover);
  padding-left: 0.5rem;
}

#footer .footer__block__content-list a:hover::before {
  width: 100%;
}

/* Store info block */
#footer .footer__block__content-contact {
  color: var(--footer-text);
  font-size: 0.9375rem;
  line-height: 1.7;
}

#footer .footer__block__content-contact a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

#footer .footer__block__content-contact a:hover {
  color: var(--footer-link-hover);
}

#footer .footer__block__content-contact .contact__infos,
#footer .footer__block__content-contact .contact__phone,
#footer .footer__block__content-contact .contact__fax,
#footer .footer__block__content-contact .contact__email {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

#footer .footer__block__content-contact i,
#footer .footer__block__content-contact .material-icons {
  color: var(--bs-primary);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* Footer bottom row */
#footer .footer__main__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Payment icons / social links area */
#footer .footer__main__bottom .links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ===========================================
   FOOTER - Copyright Section
   =========================================== */

#footer .copyright {
  background: transparent;
  color: var(--footer-text);
  font-size: 0.875rem;
  text-align: center;
  padding: 1.25rem 1.5rem;
  margin: 0;
  border-top: none;
}

#footer .copyright a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

#footer .copyright a:hover {
  color: var(--footer-link-hover);
}

/* ===========================================
   FOOTER - Mobile Accordion
   =========================================== */

@media (max-width: 767.98px) {
  #footer .footer__block {
    border-bottom: 1px solid var(--footer-border);
    margin-bottom: 0;
  }

  #footer .footer__block:last-child {
    border-bottom: none;
  }

  #footer .footer__block__title,
  #footer .footer__block__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 0;
    border-bottom: none;
    cursor: pointer;
  }

  #footer .footer__block__toggle i {
    color: var(--footer-text);
    transition: transform 0.25s ease;
  }

  #footer .footer__block__toggle:not(.collapsed) i {
    transform: rotate(180deg);
  }

  #footer .footer__block__content {
    padding-bottom: 1rem;
  }

  #footer .footer__main__top {
    padding-bottom: 0;
  }
}

/* ===========================================
   FOOTER - Responsive Adjustments
   =========================================== */

@media (max-width: 1400px) {
  #footer .footer__before,
  #footer .footer__main,
  #footer .copyright {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  #footer .footer__block {
    margin-bottom: 0;
  }
}

/* ===========================================
   FOOTER - Trust Badges / Features Bar (Optional)
   =========================================== */

.footer-features {
  background: #fff;
  border-top: 1px solid #e9ecef;
  padding: 2rem 0;
}

.footer-features__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-features__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #4b5563;
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer-features__item i,
.footer-features__item .material-icons {
  color: var(--bs-primary);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .footer-features__list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ===========================================
   FOOTER - Contact Section
   =========================================== */

#footer .footer__contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

#footer .footer__contact-col .footer__block__title {
  display: flex;
  margin-bottom: 0.75rem;
}

#footer .footer__address {
  font-style: normal;
  color: var(--footer-text);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

#footer .footer__address strong {
  color: var(--footer-heading);
  font-weight: 600;
}

#footer .footer__contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

#footer .footer__contact-row i {
  font-size: 1.1rem;
  color: var(--footer-link-hover);
  flex-shrink: 0;
}

#footer .footer__contact-row a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 0.85rem;
}

#footer .footer__contact-row a:hover {
  color: var(--footer-link-hover);
}

@media (max-width: 767.98px) {
  #footer .footer__contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===========================================
   PRODUCT PAGE - 30/70 Layout
   =========================================== */

@media (min-width: 992px) {
  .product.js-product-container .product__left {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .product.js-product-container .product__col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
