/*
Theme Name: 4page menu
Theme URI: https://example.com/4page-menu
Author: OpenAI Assistant
Author URI: https://example.com
Description: Custom Bootstrap-based theme with four-page navigation for OPAX-style layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fourpagemenu
*/

:root {
  --primary-color: #f47a18;
  --dark-color: #2c2c2c;
  --light-bg: #f5f3ef;
  --light-color: #ffffff;
  --text-color: #3f3f3f;
  --muted-color: #6b6b6b;
  --radius-lg: 32px;
  --radius-md: 18px;
  --transition-speed: 0.3s;
  --header-offset: 88px;
}

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

body {
  margin: 0;
  width: 100%;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  background-color: #ffffff;
  overflow-x: hidden;
}

body.product-lightbox-open {
  overflow: hidden;
}

main.site-main {
  padding-top: var(--header-offset, 88px);
}

.site-main > .hero-showcase:first-child,
.site-main > .page-hero:first-child {
  margin-top: calc(var(--header-offset, 88px) * -1);
}

.site-main > .product-page:first-child {
  margin-top: calc(var(--header-offset, 88px) * -1);
}

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

a:hover,
a:focus {
  text-decoration: none;
  color: var(--primary-color);
}


.navbar {
  padding: 1.1rem 0;
  transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
}

.top-nav {
  background-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.navbar-brand {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.navbar-brand__logo {
  display: block;
  height: 34px;
  max-height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-speed), filter var(--transition-speed);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.navbar-brand__logo:hover,
.navbar-brand__logo:focus {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.14));
}

@media (max-width: 767.98px) {
  .navbar-brand__logo {
    height: 30px;
    max-height: 32px;
  }
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.top-nav .navbar-nav .nav-link { 
  font-weight: 600;
  padding: 0.5rem 1rem 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--transition-speed);
  position: relative;
}

.top-nav .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.top-nav .navbar-nav .nav-link:hover,
.top-nav .navbar-nav .nav-link:focus,
.top-nav .navbar-nav .nav-link.active {
  color: #ffffff;
}

.top-nav .navbar-nav .nav-link:hover::after,
.top-nav .navbar-nav .nav-link:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0;
}

.navbar-actions__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-weight: 600;
  transition: background-color var(--transition-speed), color var(--transition-speed), transform var(--transition-speed);
}

.navbar-actions__link:hover,
.navbar-actions__link:focus {
  background-color: #ffffff;
  color: var(--primary-color);
  transform: translateY(-1px);
}

.navbar-actions__link--primary {
  background-color: #ffffff;
  color: var(--primary-color);
  border-color: #ffffff;
}

.navbar-actions__link--primary:hover,
.navbar-actions__link--primary:focus {
  background-color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 991.98px) {
  .navbar-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
  }
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.navbar-nav .menu-item-has-children {
  position: relative;
}

.navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
  inset-inline-start: 0;
  top: calc(100% + 0.75rem);
  min-width: 240px;
  padding: 0.5rem 0.15rem;
  margin: 0;
  border: none;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  z-index: 1000;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown-menu {
    max-height: 70vh;
    overflow-y: auto;
  }
}

.navbar-nav .menu-item-has-children:hover > .dropdown-menu,
.navbar-nav .menu-item-has-children:focus-within > .dropdown-menu {
  display: block;
}

.navbar-nav .dropdown-item {
  font-weight: 600;
  color: var(--dark-color);
  padding: 0.45rem 1.25rem;
  white-space: nowrap;
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item.active {
  color: #ffffff;
  background-color: var(--primary-color);
}

@media (max-width: 991.98px) {
  .navbar-nav .menu-item-has-children {
    position: static;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    display: block;
    padding: 0.25rem 0 0.85rem;
    box-shadow: none;
    background: transparent;
  }

  .navbar-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.88);
    padding-inline: 1.5rem;
  }
}

.top-nav .navbar-nav .current-menu-item > .nav-link::after,
.top-nav .navbar-nav .current-menu-ancestor > .nav-link::after,
.top-nav .navbar-nav .current_page_item > .nav-link::after,
.top-nav .navbar-nav .current_page_parent > .nav-link::after,
.top-nav .navbar-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.top-nav .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  padding: 0.35rem 0.6rem;
}

.top-nav .navbar-toggler-icon {
  filter: invert(1) brightness(2);
}

.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: 6rem 1rem 5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-showcase--video {
  padding: 0;
}

.hero-showcase--video .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.home .hero-showcase {
  min-height: clamp(360px, 55vh, 520px);
  padding-top: clamp(5rem, 8vw, 6.25rem);
  padding-bottom: clamp(4rem, 7vw, 5.5rem);
}

.home .hero-showcase--video {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-showcase--offer {
  min-height: clamp(360px, 55vh, 520px);
  padding-top: clamp(5rem, 8vw, 6.25rem);
  padding-bottom: clamp(4rem, 7vw, 5.5rem);
  text-align: center;
}

.hero-showcase--offer .hero-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.52), rgba(15, 23, 42, 0.18));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.hero-showcase > .container,
.hero-showcase .container {
  position: relative;
  z-index: 2;
}

.hero-showcase--offer .container {
  position: relative;
  z-index: 1;
}


.hero-pill-group {
  position: relative;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-pill {
  --hero-pill-padding-y: clamp(0.75rem, 2.2vw, 1.1rem);
  --hero-pill-padding-x: clamp(2rem, 4.5vw, 3.1rem);
  --hero-pill-font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(180px, 26vw, 260px);
  padding: var(--hero-pill-padding-y) var(--hero-pill-padding-x);
  border-radius: 999px;
  background-color: rgba(244, 122, 24, 0.7);
  color: #ffffff;
  font-size: var(--hero-pill-font-size);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  backdrop-filter: blur(2px);
}

.hero-showcase--offer .hero-pill {
  background-color: rgba(244, 122, 24, 0.55);
  letter-spacing: 0.04em;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border: none;
  color: #ffffff;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(244, 122, 24, 0.35);
  background-color: var(--primary-color);
  color: #ffffff;
}

.section {
  padding: 5rem 0;
}


.section-divider {
  position: relative;
  margin: 0;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
}

.home .section-divider--wave {
  background-color: #f5f7fb;
}

.section-divider img {
  display: block;
  width: 100%;
  height: auto;
}


.section-white {
  background-color: #ffffff;
}

.section-categories {
  background-color: #f5f7fb;
}

.page-template-page-oferta .section-categories--offer {
  background-color: #ffffff;
}

.section-categories .row.g-4 {
  --bs-gutter-x: clamp(3.25rem, 6.5vw, 6.25rem);
  --bs-gutter-y: clamp(2.75rem, 5.5vw, 4.5rem);
}

@media (min-width: 1200px) {
  .section-categories .row.g-4 {
    --bs-gutter-x: 6.75rem;
  }
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  color: #0d0d0d;
  text-align: center;
  margin-bottom: 3rem;
}

.section-categories .section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.35rem);
}


.section-categories--offer .col-md-6,
.section-categories--offer .col-lg-4 {
  display: flex;
  justify-content: center;
  align-items: stretch;
}



.category-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0 72px 0 72px;
  padding: 2.25rem 2.25rem 2.5rem;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  isolation: isolate;
}

.section-categories--offer .category-card {
  width: min(100%, 320px);
  padding: 2.5rem 1.85rem 2.85rem;
  min-height: 470px;
}

.category-card > img:first-child {
  width: 100%;
  height: clamp(220px, 32vw, 320px);
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  margin-bottom: 1.75rem;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  display: block;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px -40px;
  height: 150px;
  background: linear-gradient(180deg, rgba(244, 122, 24, 0.05) 0%, rgba(244, 122, 24, 0.18) 100%);
  border-radius: 120px;
  opacity: 0;
  transition: opacity var(--transition-speed);
  z-index: -1;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(15, 23, 42, 0.16);
}

.category-card:hover::after {
  opacity: 1;
}

.category-thumb {
  position: relative;
  margin: 0 0 1.75rem;
  padding: 1.5rem;
  border-radius: 0 72px 0 0;
  overflow: hidden;
  background: #f1f4fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-categories--offer .category-thumb {
  padding: 1.85rem 1.65rem;
  min-height: 190px;
}

.category-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.category-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
}

.section-categories--offer .category-content {
  gap: 0.85rem;
  align-items: stretch;
}

.category-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.category-content p {
  color: var(--muted-color);
  margin-bottom: 0;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2.75rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 36px rgba(244, 122, 24, 0.28);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.btn-pill:hover,
.btn-pill:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(244, 122, 24, 0.34);
  background-color: var(--primary-color);
  color: #ffffff;
}

.categories-actions {
  margin-top: 2.5rem;
}

.categories-actions .btn-pill {
  min-width: min(240px, 80%);
}

.delivery-section {
  background: #ffffff;
}

.section-heading {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.delivery-section p {
  color: var(--muted-color);
}

.delivery-section strong {
  color: var(--text-color);
}

.delivery-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.delivery-list li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.75rem;
}

.delivery-list li::before {
  content: none;
}

.illustration {
  max-width: 100%;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.why-us {
  background: #f5f7fb;
}

.why-item {
  background: transparent;
  border-radius: 0;
  padding: 1.5rem 1.5rem 2.75rem;
  text-align: center;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.why-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-item p {
  color: var(--muted-color);
  margin-bottom: 0;
}

.why-icon {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.payment-section {
  background: #ffffff;
}

.about-section {
  background: var(--primary-color);
  color: #ffffff;
  border-top-right-radius: 0;
  overflow: hidden;
}

.about-heading {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-section p {
  color: rgba(255, 255, 255, 0.9);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 560px;
}

.about-media {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  display: flex;
}

.about-media-image {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 55vh, 520px);
  border-radius: 0;
  border-top-right-radius: 120px;
  object-fit: cover;
  display: block;
}

.section-contact-overview {
  background: #ffffff;
  padding: 4.5rem 0;
}

.contact-overview-layout {
  position: relative;
}

.contact-map-frame {
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.16);
  background: #ffffff;
}

.contact-map-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.contact-info-panel {
  background: #f5f7fb;
  border-radius: 36px;
  padding: clamp(1.75rem, 3.5vw, 2.25rem);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-info-columns {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-info-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-info-block p,
.contact-info-block a,
.contact-info-block li {
  color: var(--text-color);
}

.contact-info-block a:hover {
  color: var(--primary-color);
}

.contact-info-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 1.15rem;
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-hours .meta-label {
  font-weight: 700;
}

.contact-info-block .contact-phones {
  margin-top: 1.25rem;
}

.contact-phones .contact-hours {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  font-weight: 400;
  font-size: 0.95rem;
  gap: 0.25rem;
}

.contact-phones .contact-hours .meta-label {
  font-weight: 700;
  font-size: 1rem;
}

.contact-info-social ul {
  align-items: flex-start;
}

@media (min-width: 992px) {
  .contact-map-frame {
    margin-left: clamp(-4rem, -6vw, -2.5rem);
  }
}

.contact-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.page-template-page-kontakt .contact-section {
  background: #f5f7fb;
}

.contact-section--alt {
  background: #f5f7fb;
}

.contact-section .section-title {
  text-align: left;
  font-weight: 500;
  color: #0d0d0d;
  margin-left: 0;
  margin-bottom: clamp(1rem, 1.5vw, 1.75rem);
}

.contact-layout {
  position: relative;
  z-index: 1;
}

.contact-map {
  border-radius: 0 120px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
  margin-bottom: 0;
  transform: translateX(clamp(-4.5rem, -5vw, -1.5rem));
  background: transparent;
}

.contact-map iframe {
  border: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-info-list--compact {
  gap: 0.65rem;
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef2fb;
  color: #2b3990;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(43, 57, 144, 0.06);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-text {
  display: grid;
  gap: 0.25rem;
}

.contact-info-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.contact-info-link:hover {
  color: var(--primary-color);
}

.contact-info-block h4,
.contact-hours .meta-label {
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-info-block p,
.contact-info-block a,
.contact-info-block li,
.contact-meta a,
.contact-meta p {
  color: var(--text-color);
  font-size: clamp(1.05rem, 1.1vw, 1.2rem);
  line-height: 1.6;
}

.contact-info-block a:hover,
.contact-meta a:hover {
  color: var(--primary-color);
}

.contact-info-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-block--company .contact-info-text .company-detail-label {
  display: inline-block;
  min-width: 72px;
  font-weight: 600;
}

.contact-info-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-meta {
  display: grid;
  gap: 1.25rem;
  justify-items: start;
}

.contact-meta-card {
  padding: 1rem 1.25rem;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(14, 26, 64, 0.08);
  width: 100%;
}

.contact-meta-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.meta-subtitle {
  color: var(--text-color-muted, #6b7280);
}

.contact-hours .meta-label {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .contact-meta {
    grid-template-columns: minmax(220px, 1fr);
    align-items: start;
  }
}

.page-hero {
  position: relative;
  padding: 6rem 1rem 4rem;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
}

.section-light .category-card {
  padding: 0;
  border-radius: 32px;
  overflow: hidden;
}

.section-light .category-card > img:first-child {
  margin-bottom: 0;
  height: clamp(220px, 34vw, 320px);
  border-radius: 0;
}

.section-light .category-card .category-card-body {
  padding: 2.25rem 2.5rem 2.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.btn-offer-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.9rem;
  border-radius: 999px;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  box-shadow: 0 16px 30px rgba(244, 122, 24, 0.32);
}

.btn-offer-card:hover,
.btn-offer-card:focus {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(244, 122, 24, 0.4);
}

/* WooCommerce styles */
.woocommerce-page .page-hero,
.single-product .page-hero {
  margin-bottom: 0;
}

.shop-intro {
  margin-bottom: 3.5rem;
  max-width: 720px;
}

.shop-intro p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}
.woocommerce-checkout .site-main {
  background: linear-gradient(135deg, rgba(244, 122, 24, 0.05), rgba(15, 23, 42, 0.06));
}

.woocommerce-checkout .woocommerce {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem);
}

.woocommerce-checkout form.checkout {
  display: grid;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  grid-template-columns: 1fr;
  align-items: flex-start;
}

@media (max-width: 991.98px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.1);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.woocommerce-checkout .checkout-payment-wrapper {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.1);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.woocommerce-checkout .checkout-payment-wrapper #order_review {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.woocommerce-checkout #customer_details {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.8rem);
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  width: 100%;
}

.woocommerce-checkout h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.woocommerce-checkout h3::after {
  content: "";
  flex: 1 1 auto;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 122, 24, 0.6), rgba(15, 23, 42, 0));
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  gap: 1rem;
}

.woocommerce-checkout form .form-row label {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.woocommerce-checkout form .form-row .optional {
  color: #94a3b8;
  font-weight: 500;
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select {
  width: 100%;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  padding: 0.85rem 1rem;
  color: #0f172a;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed), background-color var(--transition-speed);
}

.woocommerce-checkout form .form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.woocommerce-checkout form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row textarea:focus,
.woocommerce-checkout form .form-row select:focus {
  outline: none;
  border-color: rgba(244, 122, 24, 0.8);
  background: #ffffff;
  box-shadow: 0 0 0 0.22rem rgba(244, 122, 24, 0.15);
}

.woocommerce-checkout form .form-row input::placeholder,
.woocommerce-checkout form .form-row textarea::placeholder {
  color: #94a3b8;
}

.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout .woocommerce-billing-fields h3 {
  margin-bottom: 0.35rem;
}

.woocommerce-checkout #order_review_heading {
  margin-bottom: 0.5rem;
}

.woocommerce-checkout #order_review table.shop_table {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border-collapse: separate;
  border-spacing: 0;
}

.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
  padding: 0.85rem 0.25rem;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  color: #0f172a;
  font-weight: 600;
}

.woocommerce-checkout #order_review table.shop_table th:first-child,
.woocommerce-checkout #order_review table.shop_table td:first-child {
  padding-left: 0.1rem;
}

.woocommerce-checkout #order_review table.shop_table th:last-child,
.woocommerce-checkout #order_review table.shop_table td:last-child {
  padding-right: 0.1rem;
  text-align: right;
}

.woocommerce-checkout #order_review table.shop_table tbody td {
  font-weight: 500;
  color: #475569;
}

.woocommerce-checkout #order_review table.shop_table tfoot tr:last-child td,
.woocommerce-checkout #order_review table.shop_table tfoot tr:last-child th {
  font-size: 1.1rem;
  color: #0f172a;
  border-bottom: none;
}

.woocommerce-checkout #payment {
  margin-top: 1.35rem;
  background: #f8fafc;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  margin: 0 0 0.75rem;
}

.woocommerce-checkout #payment ul.payment_methods li {
  list-style: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
  border-bottom: none;
}

.woocommerce-checkout #payment .payment_box {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.04);
}

.woocommerce-checkout #payment .form-row {
  margin: 0;
}

.woocommerce-checkout #place_order {
  width: 100%;
  margin-top: 1rem;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  background: linear-gradient(135deg, #f47a18, #ff9a47);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(244, 122, 24, 0.28);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed), background-position 0.3s ease;
  background-size: 200% 200%;
  background-position: 0% 50%;
}

.woocommerce-checkout #place_order:hover,
.woocommerce-checkout #place_order:focus {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 26px 48px rgba(244, 122, 24, 0.35);
}

.woocommerce-checkout .woocommerce-privacy-policy-text,
.woocommerce-checkout .form-row.place-order .woocommerce-terms-and-conditions-wrapper {
  color: #475569;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a,
.woocommerce-checkout .form-row.place-order a {
  color: var(--primary-color);
  font-weight: 600;
}

.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  margin-bottom: 1rem;
}

.cart-free-shipping {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(244, 122, 24, 0.12), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(244, 122, 24, 0.25);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.75rem;
}

.cart-free-shipping__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(244, 122, 24, 0.35), rgba(244, 122, 24, 0.15));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.cart-free-shipping__pulse {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f47a18;
  opacity: 0.9;
  animation: cartFreeShippingPulse 1.6s ease-in-out infinite;
  box-shadow: 0 10px 28px rgba(244, 122, 24, 0.35);
}

.cart-free-shipping__content {
  flex: 1;
  min-width: 0;
}

.cart-free-shipping__heading {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--dark-color);
}

.cart-free-shipping__message {
  margin: 0.25rem 0 0.65rem;
  color: var(--text-color);
}

.cart-free-shipping__message strong {
  color: var(--primary-color);
}

.cart-free-shipping__progress {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(44, 44, 44, 0.08);
}

.cart-free-shipping__progress-track,
.cart-free-shipping__progress-fill {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
}

.cart-free-shipping__progress-track {
  background: linear-gradient(90deg, rgba(44, 44, 44, 0.08), rgba(44, 44, 44, 0.16));
}

.cart-free-shipping__progress-fill {
  width: 0;
  background: linear-gradient(90deg, #f47a18, #ffb35c);
  transition: width 0.7s ease, background-position 1.6s ease;
  background-size: 200% 100%;
  animation: cartFreeShippingShimmer 2.2s ease-in-out infinite;
}

.cart-free-shipping.is-achieved .cart-free-shipping__progress-fill {
  background: linear-gradient(90deg, #2ecc71, #8bdc9d);
}

@keyframes cartFreeShippingPulse {
  0% {
    transform: scale(0.94);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(0.94);
    opacity: 0.8;
  }
}

@keyframes cartFreeShippingShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@media (max-width: 575.98px) {
  .cart-free-shipping {
    align-items: flex-start;
  }

  .cart-free-shipping__icon {
    width: 46px;
    height: 46px;
  }

  .cart-free-shipping__pulse {
    width: 28px;
    height: 28px;
  }
}

.shop-category-section {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.shop-category-section:last-of-type {
  margin-bottom: 0;
}

.shop-category-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.25rem;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.shop-category-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}

.shop-category-header .shop-category-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.product-carousel {
  position: relative;
}

.product-carousel-track {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
}

.product-carousel-track::-webkit-scrollbar {
  height: 8px;
}

.product-carousel-track::-webkit-scrollbar-thumb {
  background-color: rgba(15, 23, 42, 0.2);
  border-radius: 999px;
}

.product-carousel-track > * {
  flex: 0 0 clamp(230px, 26vw, 290px);
  scroll-snap-align: start;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(15, 23, 42, 0.12);
}

.product-card-thumb {
  position: relative;
  display: block;
  padding-top: 75%;
  background-color: #f5f3ef;
}

.product-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 1.65rem 1.75rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.product-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: #0f172a;
}

.product-card-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.05rem;
}

.product-card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-card-actions .btn-link {
  padding: 0.5rem 0;
  font-weight: 600;
  color: var(--primary-color);
}

.product-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
  z-index: 2;
}

.product-carousel-control[aria-disabled="true"] {
  opacity: 0.4;
  cursor: default;
}

.product-carousel-control:hover,
.product-carousel-control:focus {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.05);
}

.product-carousel-control--prev {
  inset-inline-start: -1.5rem;
}

.product-carousel-control--next {
  inset-inline-end: -1.5rem;
}

@media (max-width: 1199.98px) {
  .product-carousel-control--prev {
    inset-inline-start: -1rem;
  }

  .product-carousel-control--next {
    inset-inline-end: -1rem;
  }
}

@media (max-width: 767.98px) {
  .product-carousel {
    padding-inline: 0.5rem;
  }

  .product-carousel-track > * {
    flex-basis: clamp(220px, 70vw, 280px);
  }

  .product-carousel-control {
    display: none;
  }
}

.product-category-layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 992px) {
  .product-category-layout {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

.product-category-filter {
  background: var(--light-bg);
  border-radius: 28px;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.product-category-filter__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-category-filter__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.product-category-filter__item {
  margin: 0;
}

.product-category-filter__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  font-weight: 600;
  color: var(--dark-color);
  transition: background-color var(--transition-speed), color var(--transition-speed);
}

.product-category-filter__link:hover,
.product-category-filter__link:focus,
.product-category-filter__link.is-active {
  background-color: rgba(244, 122, 24, 0.12);
  color: var(--primary-color);
}

.product-category-filter__sublist {
  margin: 0.35rem 0 0 0.75rem;
  padding: 0 0 0 0.75rem;
  border-left: 1px solid rgba(15, 23, 42, 0.12);
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.product-category-filter__sublist .product-category-filter__link {
  font-size: 0.95rem;
  font-weight: 500;
}

.woocommerce-breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--muted-color);
}

.woocommerce-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.product-listing-grid {
  display: grid;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 576px) {
  .product-listing-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}

.product-card--grid {
  flex: 1;
}

.product-card--grid .product-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.product-card--grid .product-card-title {
  font-size: 1rem;
}

.woocommerce-pagination {
  margin-top: 3rem;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce-pagination .page-numbers li {
  margin: 0;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 600;
}

.woocommerce-pagination .page-numbers .current,
.woocommerce-pagination .page-numbers a:hover,
.woocommerce-pagination .page-numbers a:focus {
  background: var(--primary-color);
  color: #ffffff;
}

.single-product-hero {
  padding-bottom: 3.5rem;
  margin-bottom: 0;
}

.single-product-layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 992px) {
  .single-product-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.single-product-gallery__container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.single-product-gallery__container:focus-visible {
  outline: 3px solid rgba(244, 122, 24, 0.45);
  outline-offset: 6px;
}

.single-product-gallery__main {
  margin: 0;
  position: relative;
  display: flex;
  align-items: stretch;
}

.single-product-gallery__link {
  display: block;
  flex: 1 1 auto;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
  cursor: zoom-in;
}

.single-product-gallery__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.68);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed), opacity var(--transition-speed);
  z-index: 2;
}

.single-product-gallery__control:hover,
.single-product-gallery__control:focus {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.05);
}

.single-product-gallery__control:focus-visible {
  outline: 3px solid rgba(244, 122, 24, 0.6);
  outline-offset: 2px;
}

.single-product-gallery__control[disabled],
.single-product-gallery__control[aria-disabled='true'] {
  opacity: 0.45;
  cursor: not-allowed;
}

.single-product-gallery__control--prev {
  left: 1rem;
}

.single-product-gallery__control--next {
  right: 1rem;
}

.single-product-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-product-gallery__thumbnails {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.single-product-thumbnails-track {
  flex: 1;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
}

.single-product-thumbnails-track::-webkit-scrollbar {
  height: 6px;
}

.single-product-thumbnails-track::-webkit-scrollbar-thumb {
  background-color: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
}

.single-product-thumbnail {
  flex: 0 0 96px;
  border: none;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.single-product-thumbnail:hover,
.single-product-thumbnail:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.14);
}

.single-product-thumbnail.is-active {
  box-shadow: 0 18px 34px rgba(244, 122, 24, 0.4);
  outline: 3px solid rgba(244, 122, 24, 0.6);
  outline-offset: 3px;
}

.single-product-thumbnail__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-product-thumbnails__control {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.single-product-thumbnails__control:hover,
.single-product-thumbnails__control:focus {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.single-product-thumbnails__control[aria-disabled='true'],
.single-product-thumbnails__control:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  background: rgba(15, 23, 42, 0.35);
  transform: none;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.75);
  padding: 2rem;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.product-lightbox__dialog {
  position: relative;
  width: min(1100px, 95vw, calc(90vh - 3rem));
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox__canvas {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.35);
  box-sizing: border-box;
  width: min(1100px, 95vw, calc(90vh - 3rem));
  max-height: calc(90vh - 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-lightbox__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.product-lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
  z-index: 2;
}

.product-lightbox__close:hover,
.product-lightbox__close:focus {
  background: var(--primary-color);
  transform: scale(1.05);
}

.product-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.product-lightbox__nav:hover,
.product-lightbox__nav:focus {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.05);
}

.product-lightbox__nav--prev {
  left: -1.5rem;
}

.product-lightbox__nav--next {
  right: -1.5rem;
}

@media (max-width: 767.98px) {
  .single-product-gallery__control {
    width: 38px;
    height: 38px;
  }

  .single-product-gallery__control--prev {
    left: 0.75rem;
  }

  .single-product-gallery__control--next {
    right: 0.75rem;
  }

  .product-lightbox {
    padding: 1rem;
  }

  .product-lightbox__nav--prev {
    left: -0.75rem;
  }

  .product-lightbox__nav--next {
    right: -0.75rem;
  }
}

@media (max-width: 575.98px) {
  .single-product-thumbnail {
    flex-basis: 82px;
    border-radius: 18px;
  }
}

.single-product-summary {
  background: #ffffff;
  border-radius: 32px;
  padding: clamp(1.75rem, 3.2vw, 2.5rem);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.single-product-summary .product_title {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.single-product-summary .price {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.single-product-summary .woocommerce-product-details__short-description {
  margin-bottom: 1.5rem;
  color: var(--muted-color);
}

.single-product-summary form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.single-product-summary .quantity .qty {
  width: 90px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  padding: 0.6rem 0.75rem;
}

.single-product-summary .single_add_to_cart_button {
  border-radius: 999px;
  padding: 0.8rem 2.5rem;
  background: var(--primary-color) !important;
  color: #ffffff;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.single-product-summary .single_add_to_cart_button:hover,
.single-product-summary .single_add_to_cart_button:focus {
  background: #dd6b12 !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(244, 122, 24, 0.32);
}

.single-product-summary .product_meta {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--muted-color);
}

.single-product-summary .product_meta a {
  color: var(--primary-color);
}

.single-product-tabs .woocommerce-tabs {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.single-product-tabs .tabs {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.single-product-tabs .tabs li {
  margin: 0;
}

.single-product-tabs .tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  background: #f1f5f9;
  color: #0f172a;
}

.single-product-tabs .tabs .active a,
.single-product-tabs .tabs a:hover,
.single-product-tabs .tabs a:focus {
  background: var(--primary-color);
  color: #ffffff;
}

.single-product-tabs .woocommerce-Tabs-panel {
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.single-product-related {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.single-product-related .related.products {
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(1.85rem, 3.5vw, 2.65rem);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.single-product-related .related-products__heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.single-product-related .related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.single-product-related .related-products__item {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.single-product-related .related-products__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.14);
}

.single-product-related .related-products__item .onsale {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  z-index: 2;
}

.single-product-related .related-products__link {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: #0f172a;
  text-decoration: none;
  flex: 1;
}

.single-product-related .related-products__figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product-related .related-products__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-product-related .related-products__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  color: #0f172a;
}

.single-product-related .related-products__price {
  font-weight: 600;
  font-size: 1.05rem;
  color: #0f172a;
}

.single-product-related .related-products__price del {
  opacity: 0.55;
  margin-right: 0.45rem;
}

.single-product-related .related-products__price ins {
  text-decoration: none;
  color: var(--primary-color);
}

.single-product-related .related-products__actions {
  margin-top: auto;
}

.single-product-related .related-products__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.65rem;
  border-radius: 999px;
  border: none;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
  box-shadow: 0 14px 32px rgba(244, 122, 24, 0.22);
  width: 100%;
}

.single-product-related .related-products__actions .button:hover,
.single-product-related .related-products__actions .button:focus {
  background: #d96307;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(244, 122, 24, 0.28);
}

@media (max-width: 767.98px) {
  .single-product-related .related.products {
    padding: clamp(1.5rem, 4vw, 2.15rem);
  }
}

@media (max-width: 575.98px) {
  .single-product-related .related-products__grid {
    gap: 1.35rem;
  }

  .single-product-related .related-products__item {
    padding: 1.6rem 1.45rem;
    gap: 0.85rem;
  }

  .single-product-related .related-products__title {
    font-size: 1.05rem;
  }
}

.section-categories--offer .category-card {
  min-height: 100%;
}

.section-categories--offer .category-card,
.section-categories--offer .category-card::after {
  border-radius: 0 50px 0 50px;
}

.section-categories--offer .category-card {
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.6rem) clamp(1.5rem, 3vw, 1.9rem);
}

.section-categories--offer .category-thumb {
  margin-bottom: clamp(0.85rem, 2vw, 1.2rem);
  padding: clamp(0.95rem, 2.2vw, 1.25rem);
  border-radius: 0 50px 0 0;
}

.section-categories--offer .category-thumb img {
  width: 70%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.section-categories--offer .category-content h3 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.section-categories--offer .category-content p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.section-categories--offer .btn-offer-card {
  padding: 0.6rem 1.6rem;
  font-size: 0.85rem;
}

.section-categories--offer .btn-offer-card {
  align-self: center;
  margin-top: auto;
}

.category-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--muted-color);
  text-align: left;
}

.category-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.category-features li::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(244, 122, 24, 0.85);
}

.form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
  overflow: hidden;
}

.form-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-fit-cover {
  object-fit: cover;
}

.form-card .card-body {
  padding: 2.5rem;
}

.form-control,
textarea.form-control {
  border-radius: var(--radius-md);
  border: 1px solid #e0e0e0;
  padding: 0.85rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(244, 122, 24, 0.2);
}

.contact-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
  padding: 2.75rem;
  height: 100%;
}

.contact-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a,
.contact-card li {
  color: var(--text-color);
}

.contact-card a:hover {
  color: var(--primary-color);
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card li {
  margin-bottom: 0.65rem;
}

.map-wrapper iframe {
  border: 0;
  border-radius: 28px;
}

.site-footer {
  background: var(--dark-color);
  color: #ffffff;
  padding: 3rem 0 2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer .footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991.98px) {
  .top-nav .navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
  }

  .hero-showcase {
    min-height: 55vh;
    padding: 5rem 1rem 4rem;
  }

  .about-section {
    border-top-right-radius: 0;
  }

  .about-container {
    border-radius: 0 56px 28px 28px;
    padding: 2.5rem;
  }

  .about-graphic {
    width: min(170px, 55%);
  }

  .contact-card {
    padding: 2.25rem;
  }

  .contact-info {
    text-align: center;
    justify-items: center;
  }

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

  .contact-meta {
    justify-items: center;
    text-align: center;
  }

  .contact-map {
    transform: none;
  }

  .contact-section .section-title {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 0.85rem 0;
  }

  .hero-pill {
    padding: 0.65rem 1.75rem;
  }

  .category-thumb img {
    height: 200px;
  }

  .about-image-wrapper {
    padding: 1rem;
  }

  .contact-map {
    margin-bottom: 2.5rem;
    border-radius: 0 36px 0 0;
  }

  .contact-phones {
    align-items: center;
  }

  .contact-phones .contact-hours {
    align-items: center;
  }

  .contact-info-block ul {
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .hero-showcase {
    padding-top: 7rem;
  }

  .btn-primary-custom,
  .btn-pill {
    width: 100%;
  }

  .about-container {
    padding: 2rem 1.75rem;
  }

  .about-graphic {
    width: 70%;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-section .section-title {
    text-align: center;
  }
}

.hero-showcase--contact {
  min-height: clamp(360px, 55vh, 520px);
  padding-top: clamp(5rem, 8vw, 6.25rem);
  padding-bottom: clamp(4rem, 7vw, 5.5rem);
}

.hero-showcase--contact .hero-pill-group {
  justify-content: center;
}

.hero-pill--highlight {
  font-weight: 700;
  background-color: rgba(244, 122, 24, 0.82);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.page-template-page-oferta .hero-pill--highlight {
  background-color: #f47a18;
  color: #ffffff;
  box-shadow: none;
  border: none;
  text-shadow: none;
}

.page-template-page-kontakt .hero-pill--highlight {
  background-color: #f47a18;
  color: #ffffff;
  box-shadow: none;
}

.contact-form-section {
  background-color: #ffffff;
}

.contact-form-layout {
  align-items: stretch;
}

.contact-form-intro {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.page-template-page-kontakt .contact-form-intro {
  height: 100%;
}

.contact-form-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  font-weight: 400;
  color: #0d0d0d;
  margin-bottom: 0;
  text-align: left;
}

.contact-form-visual {
  border-radius: 32px 60px 32px 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(34, 29, 24, 0.18);
  display: flex;
  height: 100%;
  flex: 1 1 auto;
  align-items: stretch;
}

.page-template-page-kontakt .contact-form-visual {
  flex: 1;
  align-items: stretch;
}

.contact-form-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 360px;
  flex: 1 1 auto;
  border-radius: inherit;
}

.page-template-page-kontakt .contact-form-visual img {
  min-height: 100%;
}

.page-template-page-logowanie .single-product-hero {
  background-color: var(--primary-color);
  background-image: none;
}

.contact-form-visual--emphasized {
  border-radius: 0;
  border-top-right-radius: clamp(72px, 14vw, 160px);
  aspect-ratio: 1 / 1;
  width: min(100%, 520px);
  height: auto;
  flex: none;
  display: block;
}

.contact-form-visual--emphasized img {
  min-height: 0;
  height: 100%;
}

@media (min-width: 1200px) {
  .contact-form-visual--emphasized {
    width: min(100%, 640px);
  }
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 32px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
}

.contact-form-card .form-label {
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 0.65rem;
}

.contact-form-card .form-control {
  border-radius: 18px;
  border: 2px solid rgba(244, 122, 24, 0.35);
  padding: 0.85rem 1.1rem;
  color: var(--text-color);
  background-color: #ffffff;
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.contact-form-card .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(244, 122, 24, 0.18);
}

.contact-form-card textarea.form-control {
  min-height: 170px;
  resize: vertical;
}

.contact-form-card .form-submit {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .contact-form-intro {
    align-items: center;
  }

  .contact-form-heading {
    text-align: center;
  }

  .contact-form-visual {
    border-radius: 36px;
    margin-left: 0;
  }

  .contact-form-card {
    border-radius: 28px;
  }

  .contact-form-card .form-submit {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .delivery-section .section-heading,
  .payment-section .section-heading,
  .about-section .about-heading {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .page-template-page-kontakt .contact-form-visual {
    margin-left: clamp(-5rem, -7vw, -3rem);
  }

  .page-template-page-kontakt .contact-form-heading {
    padding-left: clamp(0.25rem, 1vw, 0.75rem);
  }
}

@media (max-width: 575.98px) {
  .hero-showcase--contact {
    min-height: 60vh;
  }

  .contact-form-card .form-control {
    padding: 0.75rem 1rem;
  }
}

.account-auth {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .account-auth {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: flex-start;
  }
}

.account-auth__panel {
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.account-auth__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.account-auth form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.account-auth form input[type='text'],
.account-auth form input[type='email'],
.account-auth form input[type='password'] {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.account-auth__submit {
  border-radius: 999px;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 0.85rem 2.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.account-auth__submit:hover,
.account-auth__submit:focus {
  background: #dd6b12;
  transform: translateY(-1px);
}

.account-auth__message {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(244, 122, 24, 0.12);
  color: var(--dark-color);
}

.account-auth__error {
  background: rgba(191, 30, 46, 0.12);
  color: #b61c29;
}

/* Primary menu dropdown */
.navbar-nav .menu-item-has-children {
  position: relative;
}

.navbar-nav .menu-item-has-children > .nav-link::before {
  content: "";
  display: inline-block;
  margin-left: 0.35rem;
  border: 0.35rem solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-10%);
}

.navbar-nav .menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-speed), visibility var(--transition-speed), transform var(--transition-speed);
  z-index: 1050;
  display: block;
  pointer-events: none;
}

.navbar-nav .menu-item-has-children:hover > .sub-menu,
.navbar-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar-nav .menu-item-has-children > .sub-menu > .menu-item {
  padding: 0;
}

.navbar-nav .menu-item-has-children > .sub-menu > .menu-item > a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--text-color);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition-speed), background-color var(--transition-speed);
}

.navbar-nav .menu-item-has-children > .sub-menu > .menu-item > a:hover,
.navbar-nav .menu-item-has-children > .sub-menu > .menu-item > a:focus {
  color: #ffffff;
  background-color: var(--primary-color);
}

@media (max-width: 991.98px) {
  .navbar-nav .menu-item-has-children {
    width: 100%;
  }

  .navbar-nav .menu-item-has-children > .nav-link::before {
    display: none;
  }

  .navbar-nav .menu-item-has-children > .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0.35rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0;
    pointer-events: auto;
  }

  .navbar-nav .menu-item-has-children > .sub-menu > .menu-item > a {
    padding: 0.5rem 1rem 0.5rem 1.75rem;
    color: rgba(255, 255, 255, 0.88);
  }

  .navbar-nav .menu-item-has-children > .sub-menu > .menu-item > a:hover,
  .navbar-nav .menu-item-has-children > .sub-menu > .menu-item > a:focus {
    background-color: transparent;
    color: #ffffff;
  }
}

/* Cart button adjustments */
.woocommerce .wp-block-button__link.add_to_cart_button,
.woocommerce .wp-block-button__link.add_to_cart_button:visited {
  color: #ffffff !important;
}

.woocommerce .wp-block-button__link.add_to_cart_button:hover,
.woocommerce .wp-block-button__link.add_to_cart_button:focus {
  color: var(--primary-color) !important;
}
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  color: #ffffff !important;
}
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover {
  color: #f47a18 !important;
}
.product-page .product-hero {
  min-height: clamp(380px, 58vh, 520px);
  display: flex;
  align-items: center;
  text-align: center;
}

.product-hero .product-hero-content {
  max-width: clamp(540px, 70vw, 760px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.85rem);
  color: #ffffff;
}

.product-hero-heading {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.product-hero-description {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.btn-product-hero {
  align-self: center;
  padding-inline: clamp(2.25rem, 4.5vw, 3.2rem);
  padding-block: 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-section {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  position: relative;
}

.product-section:nth-of-type(odd) {
  background-color: #f8f9fc;
}

.product-section:nth-of-type(even) {
  background-color: #ffffff;
}

.product-section .section-title,
.product-section-title {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: left;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.product-section .section-title {
  text-align: center;
}

.product-section-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-intro-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.2);
}

.product-intro-media img {
  width: 100%;
  height: auto;
  display: block;
}

.product-highlight-list {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.85rem);
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.product-highlight-card {
  background: linear-gradient(135deg, rgba(244, 122, 24, 0.08), rgba(244, 122, 24, 0.02));
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(2px);
}

.product-highlight-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f47a18;
  margin-bottom: 0.5rem;
}

.product-highlight-card p {
  margin: 0;
  color: #334155;
  font-size: 1rem;
}

.product-feature-card,
.product-application-card,
.product-related-card {
  height: 100%;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: clamp(2rem, 4vw, 2.65rem) clamp(1.75rem, 3.2vw, 2.4rem);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.product-feature-card h3,
.product-application-card h3,
.product-related-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.product-feature-card p,
.product-application-card p,
.product-related-card p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

.product-feature-card:hover,
.product-application-card:hover,
.product-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(15, 23, 42, 0.14);
}

.product-cta {
  background: linear-gradient(135deg, rgba(244, 122, 24, 0.12), rgba(244, 122, 24, 0.05));
}

.product-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-cta-inner h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.4rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.product-cta-inner p {
  margin: 0;
  color: #334155;
  font-size: 1.05rem;
}

.product-related-card .btn-offer-card {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 991.98px) {
  .product-section .section-title,
  .product-section-title {
    text-align: center;
  }

  .product-highlight-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .product-highlight-card {
    padding: 1.35rem 1.5rem;
  }

  .product-feature-card,
  .product-application-card,
  .product-related-card {
    padding: 1.85rem 1.65rem;
  }
}

.site-footer {
  margin-top: clamp(4rem, 8vw, 6rem);
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(244, 122, 24, 0.35), transparent 55%),
    radial-gradient(circle at top right, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.95) 55%);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.92));
  z-index: 0;
}

.site-footer__inner,
.site-footer__bar {
  position: relative;
  z-index: 1;
}

.site-footer__inner {
  padding: clamp(4rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column--brand {
  gap: 1.25rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.65rem;
  min-height: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-logo__mark {
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-logo__image {
  display: block;
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
}

.footer-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.footer-heading {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
}

.footer-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color var(--transition-speed), transform var(--transition-speed);
}

.footer-links__list a:hover,
.footer-links__list a:focus {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links__icon {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--transition-speed);
}

.footer-links__list a:hover .footer-links__icon,
.footer-links__list a:focus .footer-links__icon {
  transform: translateX(3px);
}

.footer-contact {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact__label {
  display: inline-block;
  width: 92px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact__list a,
.footer-contact__list span {
  color: #ffffff;
  word-break: break-word;
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.35rem 0;
  background: rgba(15, 23, 42, 0.88);
}

.site-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.site-footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus {
  color: #ffffff;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal-page {
  padding: clamp(3.5rem, 6vw, 4.5rem) 0 clamp(4rem, 7vw, 5.5rem);
  background: #ffffff;
}

.legal-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  padding: clamp(2.5rem, 5vw, 3.25rem) clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.2rem);
  color: #0f172a;
}

.legal-meta {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f47a18;
}

.legal-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-section__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-section h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: #0f172a;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #475569;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.25rem;
  display: grid;
  gap: 0.35rem;
}

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

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

  .footer-column--brand {
    order: 1;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
