/* =========================================================
   ROOT / DESIGN SYSTEM
========================================================= */

:root {
  /* -------------------------------------------------------
     COLORS
  ------------------------------------------------------- */

  --color-primary: #111827;
  --color-primary-hover: #000000;

  --color-secondary: #4b5563;
  --color-muted: #6b7280;

  --color-white: #ffffff;
  --color-black: #000000;

  --color-body: #ffffff;
  --color-surface: #f8f9fa;
  --color-surface-dark: #111827;

  --color-border: #d1d5db;
  --color-border-light: #e5e7eb;
  --color-border-dark: #9ca3af;

  --color-success: #15803d;
  --color-danger: #dc2626;
  --color-warning: #b45309;
  --color-info: #0369a1;

  /* -------------------------------------------------------
     TYPOGRAPHY
  ------------------------------------------------------- */

  --font-primary: "Plus Jakarta Sans", sans-serif;

  --font-size-base: 16px;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --line-height-body: 1.6;
  --line-height-heading: 1.15;

  /* -------------------------------------------------------
     SPACING
  ------------------------------------------------------- */

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 96px;

  /* -------------------------------------------------------
     BORDERS
  ------------------------------------------------------- */

  --border-width: 1px;

  /* Intentionally sharp */
  --radius-none: 0;

  /* Only for very small UI elements when required */
  --radius-sm: 2px;

  /* -------------------------------------------------------
     SHADOWS
  ------------------------------------------------------- */

  --shadow-none: none;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);

  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);

  --shadow-lg: 0 16px 35px rgba(0, 0, 0, 0.1);

  /* -------------------------------------------------------
     TRANSITIONS
  ------------------------------------------------------- */

  --transition-fast: 0.2s ease;

  --transition: 0.3s ease;

  --transition-slow: 0.5s ease;

  /* -------------------------------------------------------
     LAYOUT
  ------------------------------------------------------- */

  --section-padding-y: 96px;

  --section-padding-y-tablet: 72px;

  --section-padding-y-mobile: 56px;

  --content-max-width: 1320px;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================================================
   HTML
========================================================= */

html {
  margin: 0;
  padding: 0;

  scroll-behavior: smooth;

  font-size: 16px;

  -webkit-text-size-adjust: 100%;
}

/* =========================================================
   BODY
========================================================= */

body {
  margin: 0;
  padding: 0;

  background: var(--color-body);
  color: var(--color-primary);

  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;

  overflow-x: hidden;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: var(--space-4);

  color: var(--color-primary);

  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);

  line-height: var(--line-height-heading);
}

h1 {
  font-size: clamp(42px, 5vw, 72px);
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
}

h3 {
  font-size: clamp(26px, 3vw, 40px);
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

p {
  margin-top: 0;
  margin-bottom: var(--space-4);

  color: var(--color-secondary);
}

strong,
b {
  font-weight: var(--font-weight-bold);
}

/* =========================================================
   LINKS
========================================================= */

a {
  color: inherit;
  text-decoration: none;

  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-hover);
}

/* =========================================================
   IMAGES
========================================================= */

img {
  display: block;

  max-width: 100%;
  height: auto;
}

/* =========================================================
   BUTTONS
========================================================= */

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

/* =========================================================
   FORM ELEMENTS
========================================================= */

input,
textarea,
select {
  border-radius: var(--radius-none);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* =========================================================
   LISTS
========================================================= */

ul,
ol {
  margin-top: 0;
}

/* =========================================================
   SELECTION
========================================================= */

::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

/* =========================================================
   HORIZONTAL RULE
========================================================= */

hr {
  margin: 0;

  border: 0;
  border-top: var(--border-width) solid var(--color-border-light);
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* =========================================================
   COMMON SECTION BASE
========================================================= */

section {
  position: relative;
}

/* =========================================================
   SECTION SPACING
========================================================= */

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

/* =========================================================
   RESPONSIVE GLOBAL
========================================================= */

@media (max-width: 991.98px) {
  :root {
    --section-padding-y: var(--section-padding-y-tablet);
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-padding-y: var(--section-padding-y-mobile);
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  h3 {
    font-size: clamp(24px, 7vw, 34px);
  }
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: var(--color-white);
}

/* =========================================================
   TOP BAR
========================================================= */

.header-topbar {
  min-height: 38px;

  background: var(--color-primary);
  color: var(--color-white);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-topbar-inner {
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

/* OFFER */

.header-offer {
  display: flex;
  align-items: center;

  gap: 10px;

  min-width: 0;
}

.header-offer-label {
  display: inline-flex;
  align-items: center;

  min-height: 22px;
  padding: 0 8px;

  background: var(--color-white);
  color: var(--color-primary);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 0.08em;

  white-space: nowrap;
}

.header-offer-text {
  color: #d1d5db;

  font-size: 11px;
  font-weight: 400;

  line-height: 1.3;
}

.header-offer-text strong {
  color: var(--color-white);
  font-weight: 700;
}

/* TOP CONTACT */

.header-top-contact {
  color: #9ca3af;

  font-size: 11px;
  white-space: nowrap;
}

.header-top-contact a {
  margin-left: 5px;

  color: var(--color-white);

  font-weight: 600;
}

.header-top-contact a:hover {
  color: #d1d5db;
}

/* =========================================================
   MAIN HEADER
========================================================= */

.header-main {
  position: relative;

  background: var(--color-white);

  border-bottom: 1px solid var(--color-border-light);
}

.header-main-inner {
  min-height: 82px;

  display: flex;
  align-items: center;

  gap: 40px;
}

/* =========================================================
   LOGO
========================================================= */

.header-logo {
  display: inline-flex;
  align-items: center;

  flex: 0 0 auto;

  text-decoration: none;
}

.header-logo img {
  display: block;

  width: auto;
  max-width: 175px;
  max-height: 58px;

  object-fit: contain;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.header-navigation {
  display: flex;
  align-items: center;

  gap: 28px;

  margin-left: auto;
}

.header-navigation a {
  position: relative;

  display: inline-flex;
  align-items: center;

  min-height: 82px;

  color: var(--color-secondary);

  font-size: 12px;
  font-weight: 600;

  white-space: nowrap;

  text-decoration: none;
}

.header-navigation a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--color-primary);

  transition: width var(--transition);
}

.header-navigation a:hover {
  color: var(--color-primary);
}

.header-navigation a:hover::after {
  width: 100%;
}

/* =========================================================
   HEADER RIGHT
========================================================= */

.header-right {
  display: flex;
  align-items: center;

  gap: 8px;

  flex: 0 0 auto;
}

/* =========================================================
   SEARCH
========================================================= */

.header-search {
  width: 205px;
  height: 40px;

  display: flex;
  align-items: center;

  gap: 9px;

  padding: 0 12px;

  background: var(--color-surface);

  border: 1px solid var(--color-border-light);

  border-radius: var(--radius-none);

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.header-search:focus-within {
  background: var(--color-white);

  border-color: var(--color-border-dark);
}

.header-search i {
  flex: 0 0 auto;

  color: var(--color-muted);

  font-size: 12px;
}

.header-search input {
  width: 100%;
  min-width: 0;

  padding: 0;

  border: 0;
  outline: 0;

  background: transparent;

  color: var(--color-primary);

  font-family: var(--font-primary);
  font-size: 11px;
}

.header-search input::placeholder {
  color: #9ca3af;
}

/* =========================================================
   HEADER ACTION
========================================================= */

.header-action {
  position: relative;

  width: 40px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-primary);

  background: var(--color-white);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-none);

  text-decoration: none;

  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.header-action:hover {
  color: var(--color-white);

  background: var(--color-primary);

  border-color: var(--color-primary);
}

.header-action i {
  font-size: 14px;
}

/* =========================================================
   CART COUNT
========================================================= */

.header-cart-count {
  position: absolute;

  top: -7px;
  right: -7px;

  min-width: 17px;
  height: 17px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 4px;

  background: var(--color-primary);
  color: var(--color-white);

  border: 2px solid var(--color-white);

  border-radius: var(--radius-none);

  font-size: 8px;
  font-weight: 700;

  line-height: 1;
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.header-menu-toggle {
  width: 40px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: var(--color-white);
  color: var(--color-primary);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-none);

  font-size: 15px;

  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.header-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-white);

  border-color: var(--color-primary);
}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
  position: fixed;

  top: 0;
  left: 0;

  z-index: 3000;

  width: min(380px, 88vw);
  height: 100vh;

  display: flex;
  flex-direction: column;

  background: var(--color-white);

  border-right: 1px solid var(--color-border);

  transform: translateX(-100%);

  visibility: hidden;

  transition:
    transform var(--transition),
    visibility var(--transition);
}

.mobile-navigation.active {
  transform: translateX(0);

  visibility: visible;
}

/* =========================================================
   MOBILE HEADER
========================================================= */

.mobile-navigation-header {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;

  border-bottom: 1px solid var(--color-border-light);
}

.mobile-navigation-logo {
  display: inline-flex;
  align-items: center;
}

.mobile-navigation-logo img {
  display: block;

  max-width: 145px;
  max-height: 45px;

  object-fit: contain;
}

/* CLOSE */

.mobile-navigation-close {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: var(--color-white);
  color: var(--color-primary);

  border: 1px solid var(--color-border);

  border-radius: var(--radius-none);

  font-size: 15px;

  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.mobile-navigation-close:hover {
  background: var(--color-primary);
  color: var(--color-white);

  border-color: var(--color-primary);
}

/* =========================================================
   MOBILE LINKS
========================================================= */

.mobile-navigation-links {
  display: flex;
  flex-direction: column;

  padding: 10px 20px;
}

.mobile-navigation-links a {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  color: var(--color-primary);

  border-bottom: 1px solid var(--color-border-light);

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  transition:
    color var(--transition-fast),
    padding-left var(--transition-fast);
}

.mobile-navigation-links a:hover {
  color: var(--color-primary-hover);

  padding-left: 5px;
}

.mobile-navigation-links a i {
  color: var(--color-muted);

  font-size: 11px;

  transition: transform var(--transition-fast);
}

.mobile-navigation-links a:hover i {
  transform: translateX(4px);

  color: var(--color-primary);
}

/* =========================================================
   MOBILE OVERLAY
========================================================= */

.mobile-navigation-overlay {
  position: fixed;

  inset: 0;

  z-index: 2999;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.mobile-navigation-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1399.98px) {
  .header-main-inner {
    gap: 25px;
  }

  .header-navigation {
    gap: 20px;
  }

  .header-search {
    width: 180px;
  }
}

@media (max-width: 1199.98px) {
  .header-main-inner {
    min-height: 74px;
  }

  .header-logo img {
    max-width: 160px;
    max-height: 50px;
  }
}

@media (max-width: 767.98px) {
  .header-topbar {
    min-height: 34px;
  }

  .header-topbar-inner {
    min-height: 34px;

    justify-content: center;
  }

  .header-offer-label {
    min-height: 20px;

    font-size: 8px;
  }

  .header-offer-text {
    font-size: 10px;
  }

  .header-main-inner {
    min-height: 68px;

    gap: 10px;
  }

  .header-logo img {
    max-width: 140px;
    max-height: 42px;
  }

  .header-right {
    margin-left: auto;

    gap: 6px;
  }

  .header-action,
  .header-menu-toggle {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 479.98px) {
  .header-offer-text {
    display: none;
  }

  .header-logo img {
    max-width: 125px;
  }

  .header-action,
  .header-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .header-action i {
    font-size: 13px;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;

  background: #111827;
  color: #9ca3af;

  border-top: 1px solid #1f2937;
}

/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
  padding-top: 80px;
  padding-bottom: 70px;

  row-gap: 55px;
}

/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;

  margin-bottom: 24px;
}

.footer-logo img {
  display: block;

  width: auto;
  max-width: 180px;
  max-height: 65px;

  object-fit: contain;
}

.footer-description {
  max-width: 390px;

  margin: 0 0 28px;

  color: #9ca3af;

  font-size: 12px;
  line-height: 1.8;
}

/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact-list {
  display: flex;
  flex-direction: column;

  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;

  gap: 13px;

  color: #d1d5db;

  font-size: 12px;
  font-weight: 500;

  text-decoration: none;
}

.footer-contact-item > i {
  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  color: #ffffff;

  border: 1px solid #374151;

  font-size: 12px;

  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.footer-contact-item:hover {
  color: #ffffff;
}

.footer-contact-item:hover > i {
  background: #ffffff;
  color: #111827;
  border-color: #ffffff;
}

.footer-contact-item span {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.footer-contact-item small {
  color: #6b7280;

  font-size: 9px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h5,
.footer-newsletter h5 {
  margin: 0 0 22px;

  color: #ffffff;

  font-size: 13px;
  font-weight: 700;

  line-height: 1.3;
}

.footer-column a {
  position: relative;

  display: inline-block;

  margin-bottom: 12px;

  color: #9ca3af;

  font-size: 11px;
  font-weight: 500;

  text-decoration: none;

  transition:
    color var(--transition-fast),
    padding-left var(--transition-fast);
}

.footer-column a:hover {
  color: #ffffff;

  padding-left: 4px;
}

/* =========================================================
   NEWSLETTER
========================================================= */

.footer-eyebrow {
  display: block;

  margin-bottom: 11px;

  color: #d1d5db;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 0.14em;
}

.footer-newsletter h5 {
  max-width: 280px;

  margin-bottom: 12px;

  font-size: 23px;
  line-height: 1.25;

  letter-spacing: -0.025em;
}

.footer-newsletter h5 span {
  color: #ffffff;
}

.footer-newsletter p {
  max-width: 330px;

  margin: 0 0 20px;

  color: #9ca3af;

  font-size: 11px;
  line-height: 1.7;
}

/* =========================================================
   NEWSLETTER FORM
========================================================= */

.newsletter-form {
  display: flex;
  flex-direction: column;

  gap: 8px;

  max-width: 350px;
}

.newsletter-input {
  height: 44px;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 0 13px;

  background: #1f2937;

  border: 1px solid #374151;

  border-radius: var(--radius-none);

  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.newsletter-input:focus-within {
  background: #172033;

  border-color: #6b7280;
}

.newsletter-input i {
  flex: 0 0 auto;

  color: #9ca3af;

  font-size: 12px;
}

.newsletter-input input {
  width: 100%;
  min-width: 0;

  padding: 0;

  border: 0;
  outline: 0;

  background: transparent;

  color: #ffffff;

  font-family: var(--font-primary);
  font-size: 11px;
}

.newsletter-input input::placeholder {
  color: #6b7280;
}

/* SUBSCRIBE BUTTON */

.newsletter-form button {
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 15px;

  background: #ffffff;
  color: #111827;

  border: 1px solid #ffffff;

  border-radius: var(--radius-none);

  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.newsletter-form button:hover {
  background: transparent;
  color: #ffffff;

  border-color: #ffffff;
}

.newsletter-form button i {
  font-size: 10px;

  transition: transform var(--transition-fast);
}

.newsletter-form button:hover i {
  transform: translateX(4px);
}

/* NOTE */

.newsletter-note {
  display: block;

  margin-top: 10px;

  color: #6b7280;

  font-size: 9px;
  line-height: 1.5;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  border-top: 1px solid #293241;
}

/* COMPANY */

.footer-bottom-company {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 7px 18px;
}

.footer-bottom-company strong {
  color: #ffffff;

  font-size: 10px;
  font-weight: 700;
}

.footer-bottom-company span {
  color: #6b7280;

  font-size: 9px;
}

/* COPYRIGHT */

.footer-bottom-copy {
  color: #6b7280;

  font-size: 9px;

  text-align: right;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
  .footer-main {
    padding-top: 65px;
    padding-bottom: 55px;
  }

  .footer-bottom {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .footer-bottom-copy {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .footer-main {
    padding-top: 55px;
    padding-bottom: 45px;

    row-gap: 42px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-newsletter p {
    max-width: 100%;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    gap: 10px;
  }

  .footer-bottom-company {
    gap: 6px 14px;
  }
}

@media (max-width: 575.98px) {
  .footer-logo img {
    max-width: 155px;
    max-height: 55px;
  }

  .footer-description {
    font-size: 11px;
  }

  .footer-newsletter h5 {
    font-size: 21px;
  }
}

/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {
  position: relative;

  width: 100%;
  height: 650px;

  overflow: hidden;

  background: #f5f5f3;
}

/* =========================================================
   SLIDER TRACK
========================================================= */

.hero-slider-track {
  display: flex;

  width: 100%;
  height: 100%;

  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

/* =========================================================
   SLIDE
========================================================= */

.hero-slide {
  position: relative;

  width: 100%;
  min-width: 100%;
  height: 100%;

  overflow: hidden;

  background: #f5f5f3;
}

.hero-slide:nth-child(2) {
  background: #f2f5f6;
}

.hero-slide:nth-child(3) {
  background: #f7f4f1;
}

.hero-slide:nth-child(4) {
  background: #f2f4f2;
}

/* =========================================================
   SLIDE INNER
========================================================= */

.hero-slide-inner {
  position: relative;

  height: 100%;

  display: flex;
  align-items: center;
}

/* =========================================================
   CONTENT
========================================================= */

.hero-content {
  position: relative;
  z-index: 5;

  width: 50%;

  padding-left: 5%;
  padding-bottom: 20px;
}

/* =========================================================
   KICKER
========================================================= */

.hero-kicker {
  position: relative;

  display: inline-flex;
  align-items: center;

  margin-bottom: 22px;
  padding-left: 42px;

  color: #4b5563;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 30px;
  height: 1px;

  background: #111827;

  transform: translateY(-50%);
}

/* =========================================================
   HEADING
========================================================= */

.hero-content h1 {
  max-width: 650px;

  margin: 0;

  color: #111827;

  font-size: clamp(44px, 5vw, 70px);
  font-weight: 800;

  line-height: 1.03;

  letter-spacing: -0.055em;
}

.hero-content h1 span {
  display: block;

  color: #4b5563;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.hero-content > p {
  max-width: 510px;

  margin: 25px 0 30px;

  color: #5f6670;

  font-size: 13px;
  line-height: 1.8;
}

/* =========================================================
   ACTIONS
========================================================= */

.hero-actions {
  display: flex;
  align-items: center;

  gap: 25px;

  margin-bottom: 48px;
}

/* PRIMARY BUTTON */

.hero-btn {
  min-height: 50px;

  display: inline-flex;
  align-items: center;

  gap: 25px;

  padding: 0 8px 0 19px;

  border-radius: var(--radius-none);

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.hero-btn-primary {
  background: #111827;
  color: #ffffff;

  border: 1px solid #111827;
}

.hero-btn-primary i {
  width: 32px;
  height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #111827;

  font-size: 12px;

  transition: transform var(--transition);
}

.hero-btn-primary:hover {
  background: #ffffff;
  color: #111827;

  border-color: #111827;

  transform: translateY(-2px);
}

.hero-btn-primary:hover i {
  transform: translateX(3px);
}

/* SECONDARY LINK */

.hero-link {
  position: relative;

  display: inline-flex;
  align-items: center;

  min-height: 40px;

  color: #111827;

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;
}

.hero-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 5px;

  width: 100%;
  height: 1px;

  background: #111827;

  transition: width var(--transition);
}

.hero-link:hover {
  color: #4b5563;
}

.hero-link:hover::after {
  width: 35%;
}

/* =========================================================
   META INFORMATION
========================================================= */

.hero-meta {
  display: flex;
  align-items: stretch;

  gap: 0;
}

.hero-meta > div {
  min-width: 125px;

  display: flex;
  flex-direction: column;

  padding: 0 22px;

  border-left: 1px solid #d1d5db;
}

.hero-meta > div:first-child {
  padding-left: 0;

  border-left: 0;
}

.hero-meta strong {
  margin-bottom: 4px;

  color: #111827;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 0.08em;
}

.hero-meta span {
  color: #7b8189;

  font-size: 9px;
}

/* =========================================================
   PRODUCT AREA
========================================================= */

.hero-product {
  position: absolute;

  top: 0;
  right: 0;

  width: 55%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* PRODUCT BACKGROUND LINE */

.hero-product::before {
  content: "";

  position: absolute;

  top: 12%;
  right: 5%;

  width: 75%;
  height: 76%;

  border-left: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.hero-product img {
  position: relative;
  z-index: 3;

  width: min(620px, 90%);
  max-height: 510px;

  object-fit: contain;

  filter: drop-shadow(0 28px 25px rgba(17, 24, 39, 0.16));

  opacity: 0;

  transform: translateX(45px) scale(0.97);
}

/* ACTIVE IMAGE */

.hero-slide.is-active .hero-product img {
  animation: heroProductIn 0.8s ease forwards;
}

@keyframes heroProductIn {
  from {
    opacity: 0;

    transform: translateX(45px) scale(0.97);
  }

  to {
    opacity: 1;

    transform: translateX(0) scale(1);
  }
}

/* =========================================================
   PRODUCT LABEL
========================================================= */

.hero-product-label {
  position: absolute;

  top: 17%;
  left: 3%;

  z-index: 5;

  display: flex;
  align-items: baseline;

  gap: 4px;
}

.hero-product-label span:first-child {
  color: #111827;

  font-size: 20px;
  font-weight: 800;
}

.hero-product-label span:last-child {
  color: #9ca3af;

  font-size: 9px;
}

/* =========================================================
   PRODUCT LINE
========================================================= */

.hero-product-line {
  position: absolute;

  top: 17%;
  left: 12%;

  width: 90px;
  height: 1px;

  background: #111827;
}

/* =========================================================
   PRODUCT CAPTION
========================================================= */

.hero-product-caption {
  position: absolute;

  right: 7%;
  bottom: 18%;

  z-index: 5;

  color: #9ca3af;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 0.18em;

  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* =========================================================
   SLIDER ARROWS
========================================================= */

.hero-slider-arrow {
  position: absolute;

  top: 50%;

  z-index: 20;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: rgba(255, 255, 255, 0.85);
  color: #111827;

  border: 1px solid #d1d5db;

  border-radius: var(--radius-none);

  transform: translateY(-50%);

  cursor: pointer;

  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.hero-slider-arrow:hover {
  background: #111827;
  color: #ffffff;

  border-color: #111827;
}

.hero-slider-prev {
  left: 20px;
}

.hero-slider-next {
  right: 20px;
}

/* =========================================================
   BOTTOM NAVIGATION
========================================================= */

.hero-slider-navigation {
  position: absolute;

  left: 5%;
  bottom: 28px;

  z-index: 20;

  display: flex;
  align-items: center;

  gap: 22px;
}

.hero-slider-counter {
  display: flex;
  align-items: baseline;

  gap: 3px;

  min-width: 42px;
}

.hero-slider-counter strong {
  color: #111827;

  font-size: 11px;
  font-weight: 800;
}

.hero-slider-counter span {
  color: #9ca3af;

  font-size: 9px;
}

/* =========================================================
   DOTS
========================================================= */

.hero-slider-dots {
  display: flex;
  align-items: center;

  gap: 6px;
}

.hero-slider-dots button {
  width: 28px;
  height: 2px;

  padding: 0;

  background: #c7cbd0;

  border: 0;
  border-radius: 0;

  cursor: pointer;

  transition:
    width var(--transition),
    background-color var(--transition);
}

.hero-slider-dots button.active {
  width: 55px;

  background: #111827;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .hero-slider {
    height: 600px;
  }

  .hero-content {
    width: 52%;

    padding-left: 2%;
  }

  .hero-content h1 {
    font-size: clamp(40px, 5vw, 58px);
  }

  .hero-content > p {
    max-width: 450px;
  }

  .hero-product {
    width: 54%;
  }

  .hero-product img {
    width: 88%;
    max-height: 440px;
  }

  .hero-meta > div {
    min-width: 105px;

    padding: 0 14px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .hero-slider {
    height: 720px;
  }

  .hero-slide-inner {
    display: block;
  }

  .hero-content {
    width: 100%;

    padding: 50px 7% 0;

    text-align: center;
  }

  .hero-kicker {
    padding-left: 0;

    margin-bottom: 17px;
  }

  .hero-kicker::before {
    display: none;
  }

  .hero-content h1 {
    font-size: clamp(34px, 9vw, 48px);

    letter-spacing: -0.045em;
  }

  .hero-content h1 span {
    color: #4b5563;
  }

  .hero-content > p {
    max-width: 480px;

    margin: 18px auto 22px;

    font-size: 11px;
  }

  .hero-actions {
    justify-content: center;

    gap: 18px;

    margin-bottom: 25px;
  }

  .hero-btn {
    min-height: 45px;

    padding-left: 15px;

    gap: 15px;

    font-size: 9px;
  }

  .hero-btn-primary i {
    width: 28px;
    height: 28px;
  }

  .hero-link {
    font-size: 9px;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-meta > div {
    min-width: auto;

    padding: 0 10px;
  }

  .hero-meta strong {
    font-size: 7px;
  }

  .hero-meta span {
    font-size: 7px;
  }

  .hero-product {
    top: auto;
    right: 0;
    bottom: 35px;

    width: 100%;
    height: 300px;
  }

  .hero-product::before {
    top: 5%;
    right: 10%;

    width: 80%;
    height: 85%;
  }

  .hero-product img {
    width: 72%;
    max-height: 270px;
  }

  .hero-product-label {
    top: 5%;
    left: 8%;
  }

  .hero-product-line {
    top: 5%;
    left: 20%;

    width: 45px;
  }

  .hero-product-caption {
    right: 7%;
    bottom: 15%;
  }

  .hero-slider-arrow {
    width: 34px;
    height: 34px;

    font-size: 11px;
  }

  .hero-slider-prev {
    left: 8px;
  }

  .hero-slider-next {
    right: 8px;
  }

  .hero-slider-navigation {
    left: 50%;
    bottom: 12px;

    transform: translateX(-50%);
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .hero-slider {
    height: 680px;
  }

  .hero-content {
    padding-top: 38px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content > p {
    font-size: 10px;

    margin-top: 14px;
  }

  .hero-meta {
    display: none;
  }

  .hero-product {
    height: 285px;
    bottom: 35px;
  }

  .hero-product img {
    width: 76%;
    max-height: 245px;
  }

  .hero-product-caption {
    display: none;
  }

  .hero-slider-dots button {
    width: 22px;
  }

  .hero-slider-dots button.active {
    width: 40px;
  }
}

/* =====================================================
   PRINTER CATEGORIES
===================================================== */

.printer-categories {
  position: relative;
  padding: var(--section-padding-y) 0;
  background: #ffffff;
}

/* =====================================================
   SECTION HEADER
===================================================== */

.printer-categories-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 60px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border-light);
}

.printer-categories-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-secondary);
}

.printer-categories-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--color-primary);
}

.printer-categories-heading h2 span {
  display: block;
  color: var(--color-muted);
  font-weight: 400;
}

.printer-categories-intro {
  padding-bottom: 4px;
}

.printer-categories-intro p {
  max-width: 470px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-secondary);
}

.printer-categories-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.printer-categories-view-all:hover {
  gap: 18px;
  color: var(--color-black);
}

/* =====================================================
   CATEGORY GRID
===================================================== */

.printer-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

/* =====================================================
   CATEGORY CARD
===================================================== */

.printer-category-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  color: var(--color-white);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.printer-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.08) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 0;
}

.printer-category-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: 110px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(45deg);
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
  z-index: 0;
}

.printer-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  color: var(--color-white);
}

.printer-category-card:hover::after {
  transform: rotate(90deg) scale(1.15);
  opacity: 0.5;
}

/* =====================================================
   CATEGORY BACKGROUNDS
===================================================== */

.category-home {
  background: linear-gradient(145deg, #172033 0%, #26344a 55%, #0f1724 100%);
}

.category-laser {
  background: linear-gradient(145deg, #20252c 0%, #3a414a 55%, #171b20 100%);
}

.category-inkjet {
  background: linear-gradient(145deg, #20252c 0%, #353c46 55%, #15191e 100%);
}

.category-office {
  background: linear-gradient(145deg, #15191e 0%, #30363d 55%, #101317 100%);
}

/* =====================================================
   CARD TOP
===================================================== */

.printer-category-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.printer-category-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}

.printer-category-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 17px;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.printer-category-card:hover .printer-category-arrow {
  background: #ffffff;
  border-color: #ffffff;
  color: #111827;
  transform: translate(3px, -3px);
}

/* =====================================================
   CARD CONTENT
===================================================== */

.printer-category-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 100px;
}

.printer-category-type {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.62);
}

.printer-category-content h3 {
  margin: 0;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: white;
}

.printer-category-content h3 span {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

.printer-category-content p {
  max-width: 290px;
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

/* =====================================================
   CARD FOOTER
===================================================== */

.printer-category-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.printer-category-footer span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.printer-category-footer i {
  font-size: 16px;
  transition: transform var(--transition-fast);
}

.printer-category-card:hover .printer-category-footer i {
  transform: translateX(5px);
}

/* =====================================================
   TRUST / BENEFIT STRIP
===================================================== */

.printer-category-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.printer-category-trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 90px;
  padding: 20px 24px;
  border-right: 1px solid var(--color-border-light);
}

.printer-category-trust-item > i {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 16px;
}

.printer-category-trust-item strong,
.printer-category-trust-item span {
  display: block;
}

.printer-category-trust-item strong {
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
}

.printer-category-trust-item span {
  font-size: 11px;
  color: var(--color-muted);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) {
  .printer-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .printer-category-card {
    min-height: 460px;
  }

  .printer-category-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .printer-categories {
    padding: var(--section-padding-y-mobile) 0;
  }

  .printer-categories-header {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 35px;
  }

  .printer-categories-heading h2 {
    font-size: 40px;
  }

  .printer-category-grid {
    grid-template-columns: 1fr;
  }

  .printer-category-card {
    min-height: 430px;
    padding: 24px;
  }

  .printer-category-content {
    padding-top: 80px;
  }

  .printer-category-trust {
    grid-template-columns: 1fr;
  }

  .printer-category-trust-item {
    min-height: 78px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {
  .printer-categories-heading h2 {
    font-size: 34px;
  }

  .printer-category-content h3 {
    font-size: 34px;
  }

  .printer-category-card {
    min-height: 400px;
  }
}

/* =====================================================
   PRODUCTS MODERN
===================================================== */

.products-modern {
  padding: var(--section-padding-y) 0;
  background: #f8f9fa;
}

/* =====================================================
   SECTION HEADER
===================================================== */

.products-modern-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 60px;
  align-items: end;
  padding-bottom: 48px;
}

.products-modern-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-secondary);
}

.products-modern-title h2 {
  max-width: 700px;
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.products-modern-title h2 span {
  display: block;
  color: var(--color-muted);
  font-weight: 400;
}

.products-modern-intro {
  padding-bottom: 4px;
}

.products-modern-intro p {
  max-width: 460px;
  margin: 0 0 22px;
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.products-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 7px;
  transition: gap var(--transition-fast);
}

.products-view-all:hover {
  gap: 16px;
  color: var(--color-black);
}

/* =====================================================
   FILTER BAR
===================================================== */

.products-modern-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 20px;
  background: #ffffff;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.products-filter-left {
  display: flex;
  align-items: stretch;
  height: 64px;
}

.products-filter-btn {
  position: relative;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}

.products-filter-btn:hover {
  color: var(--color-primary);
}

.products-filter-btn.active {
  color: var(--color-primary);
}

.products-filter-btn.active::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 2px;
  background: var(--color-primary);
}

.products-filter-count {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-muted);
  font-size: 11px;
}

.products-filter-count strong {
  color: var(--color-primary);
}

/* =====================================================
   PRODUCT GRID
===================================================== */

.products-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--color-border-light);
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.product-modern-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.product-modern-card:hover {
  position: relative;
  z-index: 2;
  color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-modern-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border-light);
}

.product-modern-index {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.product-modern-status {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-secondary);
}

.product-status-dot {
  width: 6px;
  height: 6px;
  background: #15803d;
}

.product-status-dot.out {
  background: #dc2626;
}

.product-image-wrap {
  position: absolute;
  inset: 45px 25px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-modern-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-image-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.product-modern-card:hover .product-image-link {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   PRODUCT BODY
===================================================== */

.product-modern-body {
  padding: 24px 22px 20px;
}

.product-category-label {
  display: block;
  margin-bottom: 10px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-modern-body h3 {
  min-height: 48px;
  margin: 0;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.product-modern-body p {
  min-height: 42px;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.7;
}

/* =====================================================
   PRODUCT FOOTER
===================================================== */

.product-modern-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--color-border-light);
}

.product-price span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 10px;
}

.product-price strong {
  display: block;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
}

.product-view {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.product-view i {
  transition: transform var(--transition-fast);
}

.product-modern-card:hover .product-view i {
  transform: translateX(4px);
}

/* =====================================================
   BOTTOM CTA
===================================================== */

.products-modern-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 28px;
  background: var(--color-primary);
  color: #ffffff;
}

.products-modern-bottom span,
.products-modern-bottom strong {
  display: block;
}

.products-modern-bottom span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.products-modern-bottom strong {
  font-size: 14px;
  font-weight: 600;
}

.products-modern-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast);
}

.products-modern-bottom a:hover {
  background: #ffffff;
  color: var(--color-primary);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) {
  .products-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .products-modern {
    padding: var(--section-padding-y-mobile) 0;
  }

  .products-modern-head {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 35px;
  }

  .products-modern-title h2 {
    font-size: 40px;
  }

  .products-modern-filter {
    padding: 0;
    overflow-x: auto;
  }

  .products-filter-left {
    flex-shrink: 0;
  }

  .products-filter-btn {
    padding: 0 16px;
    white-space: nowrap;
  }

  .products-filter-btn.active::after {
    right: 16px;
    left: 16px;
  }

  .products-filter-count {
    display: none;
  }

  .products-modern-grid {
    grid-template-columns: 1fr;
  }

  .product-modern-image {
    height: 320px;
  }

  .products-modern-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .products-modern-bottom a {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {
  .products-modern-title h2 {
    font-size: 34px;
  }

  .product-modern-image {
    height: 280px;
  }
}

/* =====================================================
   ABOUT MODERN
===================================================== */

.about-modern {
  padding: var(--section-padding-y) 0;
  background: #ffffff;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.about-modern-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 90px;
  align-items: center;
}

/* =====================================================
   VISUAL
===================================================== */

.about-modern-visual {
  min-width: 0;
}

.about-modern-image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #111827;
}

.about-modern-image img {
  width: 100%;
  height: 610px;
  display: block;
  object-fit: cover;
}

.about-modern-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.05) 20%,
    rgba(17, 24, 39, 0.15) 45%,
    rgba(17, 24, 39, 0.82) 100%
  );
}

.about-modern-image-top {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.about-modern-image-bottom {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;

  color: #ffffff;
}

.about-modern-image-bottom span {
  display: block;
  margin-bottom: 12px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;

  color: rgba(255, 255, 255, 0.65);
}

.about-modern-image-bottom strong {
  display: block;

  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.045em;
}

/* =====================================================
   STATS
===================================================== */

.about-modern-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.about-stat {
  min-height: 125px;
  padding: 20px;
  border-right: 1px solid var(--color-border-light);
}

.about-stat strong {
  display: block;
  margin-bottom: 15px;

  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
}

.about-stat span {
  display: block;

  max-width: 130px;

  font-size: 11px;
  line-height: 1.6;
  color: var(--color-muted);
}

/* =====================================================
   CONTENT
===================================================== */

.about-modern-content {
  min-width: 0;
}

.about-modern-eyebrow {
  display: inline-block;
  margin-bottom: 22px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  color: var(--color-secondary);
}

.about-modern-content h2 {
  max-width: 650px;
  margin: 0 0 32px;

  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: var(--color-primary);
}

.about-modern-content h2 span {
  display: block;
  color: var(--color-muted);
  font-weight: 400;
}

.about-modern-intro {
  max-width: 650px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--color-border-light);
}

.about-modern-intro p {
  margin: 0;
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.about-modern-intro p + p {
  margin-top: 16px;
}

/* =====================================================
   PRINCIPLES
===================================================== */

.about-modern-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 35px;
}

.about-principle {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.about-principle-number {
  padding-top: 3px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.about-principle h3 {
  margin: 0 0 7px;

  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-primary);
}

.about-principle p {
  margin: 0;

  font-size: 11px;
  line-height: 1.7;
  color: var(--color-muted);
}

/* =====================================================
   ACTIONS
===================================================== */

.about-modern-action {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
}

.about-modern-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 22px;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 11px;
  font-weight: 700;
  text-decoration: none;

  transition:
    background var(--transition-fast),
    gap var(--transition-fast);
}

.about-modern-primary:hover {
  background: #000000;
  color: #ffffff;
  gap: 17px;
}

.about-modern-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--color-primary);

  font-size: 11px;
  font-weight: 700;
  text-decoration: none;

  transition: gap var(--transition-fast);
}

.about-modern-secondary:hover {
  color: var(--color-black);
  gap: 14px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) {
  .about-modern-layout {
    gap: 55px;
  }

  .about-modern-image,
  .about-modern-image img {
    height: 540px;
    min-height: 540px;
  }

  .about-modern-content h2 {
    font-size: 52px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991.98px) {
  .about-modern-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-modern-image,
  .about-modern-image img {
    height: 520px;
    min-height: 520px;
  }

  .about-modern-content h2 {
    font-size: 48px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {
  .about-modern {
    padding: var(--section-padding-y-mobile) 0;
  }

  .about-modern-image,
  .about-modern-image img {
    height: 430px;
    min-height: 430px;
  }

  .about-modern-image-bottom {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .about-modern-image-bottom strong {
    font-size: 38px;
  }

  .about-modern-stats {
    grid-template-columns: 1fr;
  }

  .about-stat {
    min-height: auto;
    padding: 18px 20px;
  }

  .about-stat strong {
    display: inline-block;
    margin: 0 12px 0 0;
  }

  .about-stat span {
    display: inline;
  }

  .about-modern-content h2 {
    font-size: 40px;
  }

  .about-modern-principles {
    grid-template-columns: 1fr;
  }

  .about-modern-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

/* =====================================================
   WHY MODERN
===================================================== */

.why-modern {
  padding: var(--section-padding-y) 0;
  background: #f8f9fa;
}

/* =====================================================
   HEADER
===================================================== */

.why-modern-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 70px;
  align-items: end;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--color-border-light);
}

.why-modern-eyebrow {
  display: inline-block;
  margin-bottom: 18px;

  color: var(--color-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.why-modern-heading h2 {
  max-width: 760px;
  margin: 0;

  color: var(--color-primary);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.why-modern-heading h2 span {
  display: block;
  color: var(--color-muted);
  font-weight: 400;
}

.why-modern-intro {
  padding-bottom: 5px;
}

.why-modern-intro p {
  max-width: 460px;
  margin: 0;

  color: var(--color-secondary);
  font-size: 14px;
  line-height: 1.8;
}

/* =====================================================
   MAIN GRID
===================================================== */

.why-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--color-border-light);
}

/* =====================================================
   MAIN FEATURE
===================================================== */

.why-modern-main {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 32px;

  background: linear-gradient(145deg, #111827 0%, #202b3c 55%, #111827 100%);

  color: #ffffff;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.why-modern-main::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  bottom: -170px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  transform: rotate(45deg);
}

.why-modern-main::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -100px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  transform: rotate(45deg);
}

.why-main-top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-main-top span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}

.why-main-top strong {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.why-main-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
  padding: 80px 0 60px;
}

.why-main-label {
  display: block;
  margin-bottom: 18px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
}

.why-main-content h3 {
  max-width: 520px;
  margin: 0;

  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: white;
}

.why-main-content h3 span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.why-main-content p {
  max-width: 480px;
  margin: 25px 0 30px;

  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.75;
}

.why-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 20px;

  background: #ffffff;
  color: var(--color-primary);

  font-size: 11px;
  font-weight: 700;
  text-decoration: none;

  transition:
    gap var(--transition-fast),
    background var(--transition-fast);
}

.why-main-btn:hover {
  gap: 17px;
  background: #f3f4f6;
  color: var(--color-primary);
}

.why-main-footer {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 22px;

  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.why-main-footer span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.45);
}

/* =====================================================
   VALUE ITEMS
===================================================== */

.why-modern-item {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 30px;

  background: #ffffff;

  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);

  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.why-modern-item:hover {
  z-index: 2;
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-item-number {
  position: absolute;
  top: 28px;
  right: 28px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #b0b4ba;
}

.why-item-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 65px;

  border: 1px solid var(--color-border);

  color: var(--color-primary);
  font-size: 16px;
}

.why-item-content h3 {
  margin: 0 0 10px;

  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.why-item-content p {
  max-width: 390px;
  margin: 0;

  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.75;
}

.why-item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: auto;
  padding-top: 22px;

  color: var(--color-primary);

  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.why-item-link i {
  transition: transform var(--transition-fast);
}

.why-modern-item:hover .why-item-link i {
  transform: translate(3px, -3px);
}

/* =====================================================
   BOTTOM STATEMENT
===================================================== */

.why-modern-bottom {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 20px;

  padding: 25px 28px;

  background: #ffffff;

  border-left: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.why-bottom-mark {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 15px;
}

.why-bottom-copy span,
.why-bottom-copy strong {
  display: block;
}

.why-bottom-copy span {
  margin-bottom: 4px;

  color: var(--color-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.why-bottom-copy strong {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
}

.why-modern-bottom > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--color-primary);

  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.why-modern-bottom > a i {
  transition: transform var(--transition-fast);
}

.why-modern-bottom > a:hover i {
  transform: translateX(5px);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
  .why-modern-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-modern-main {
    min-height: 520px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .why-modern {
    padding: var(--section-padding-y-mobile) 0;
  }

  .why-modern-heading h2 {
    font-size: 40px;
  }

  .why-modern-grid {
    grid-template-columns: 1fr;
  }

  .why-modern-main {
    min-height: 480px;
    padding: 25px;
  }

  .why-main-content {
    padding: 60px 0;
  }

  .why-main-content h3 {
    font-size: 42px;
  }

  .why-modern-item {
    min-height: 300px;
    padding: 25px;
  }

  .why-item-icon {
    margin-bottom: 55px;
  }

  .why-modern-bottom {
    grid-template-columns: 42px 1fr;
    padding: 22px;
  }

  .why-modern-bottom > a {
    grid-column: 2;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {
  .why-modern-heading h2 {
    font-size: 34px;
  }

  .why-main-content h3 {
    font-size: 38px;
  }

  .why-main-footer {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .why-modern-bottom {
    gap: 15px;
  }
}

/* =====================================================
   CATEGORY MODERN
===================================================== */

.category-modern {
  padding: 80px 0 110px;
  background: #f8f9fa;
}

/* =====================================================
   CATEGORY HEADER
===================================================== */

.category-products-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 70px;
  align-items: end;

  padding-bottom: 48px;

  border-bottom: 1px solid var(--color-border-light);
}

.category-products-eyebrow {
  display: inline-block;
  margin-bottom: 18px;

  color: var(--color-secondary);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.category-products-heading h1 {
  max-width: 760px;
  margin: 0;

  color: var(--color-primary);

  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.category-products-heading h1 span {
  display: block;

  color: var(--color-muted);
  font-weight: 400;
}

.category-products-description {
  padding-bottom: 4px;
}

.category-products-description p {
  max-width: 450px;
  margin: 0;

  color: var(--color-secondary);

  font-size: 14px;
  line-height: 1.8;
}

/* =====================================================
   TOOLBAR
===================================================== */

.category-products-toolbar {
  min-height: 68px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 22px;

  background: #ffffff;

  border-left: 1px solid var(--color-border-light);
  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.category-toolbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.category-toolbar-label {
  color: var(--color-muted);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.category-toolbar-left strong {
  color: var(--color-primary);

  font-size: 14px;
  font-weight: 700;
}

.category-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--color-muted);

  font-size: 11px;
}

.category-toolbar-right i {
  color: var(--color-primary);
  font-size: 15px;
}

/* =====================================================
   PRODUCT GRID
===================================================== */

.category-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  border-left: 1px solid var(--color-border-light);
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.category-product-card {
  min-width: 0;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.category-product-card:hover {
  position: relative;
  z-index: 3;

  transform: translateY(-5px);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.09);
}

/* =====================================================
   PRODUCT LINK
===================================================== */

.category-product-link {
  display: flex;
  flex-direction: column;
  flex: 1;

  color: var(--color-primary);
  text-decoration: none;
}

.category-product-link:hover {
  color: var(--color-primary);
}

/* =====================================================
   PRODUCT IMAGE
===================================================== */

.category-product-image {
  position: relative;

  height: 330px;

  overflow: hidden;

  background: #ffffff;

  border-bottom: 1px solid var(--color-border-light);
}

.category-product-image-top {
  position: absolute;

  top: 18px;
  left: 20px;
  right: 20px;

  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-product-number {
  color: #a1a1aa;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.category-product-stock {
  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;

  color: #4b5563;
}

.category-product-stock i {
  width: 6px;
  height: 6px;

  display: block;

  background: #15803d;
}

.category-product-stock.out i {
  background: #dc2626;
}

.category-product-image-stage {
  position: absolute;

  inset: 50px 25px 30px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.category-product-image-stage img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transition: transform 0.5s ease;
}

.category-product-card:hover .category-product-image-stage img {
  transform: scale(1.07);
}

/* =====================================================
   VIEW PRODUCT OVERLAY
===================================================== */

.category-product-view {
  position: absolute;

  right: 18px;
  bottom: 18px;

  z-index: 4;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 11px 14px;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 10px;
  font-weight: 700;

  opacity: 0;
  transform: translateY(8px);

  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.category-product-card:hover .category-product-view {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   PRODUCT INFO
===================================================== */

.category-product-info {
  padding: 23px 22px 20px;
}

.category-product-type {
  display: block;
  margin-bottom: 5px;

  color: var(--color-muted);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-product-brand {
  display: block;
  margin-bottom: 10px;

  color: #9ca3af;

  font-size: 10px;
  font-weight: 500;
}

.category-product-info h2 {
  min-height: 47px;

  margin: 0;

  color: var(--color-primary);

  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.category-product-info p {
  min-height: 42px;

  margin: 12px 0 0;

  color: var(--color-muted);

  font-size: 11px;
  line-height: 1.7;
}

/* =====================================================
   PRODUCT FOOTER
===================================================== */

.category-product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  margin-top: auto;

  padding: 18px 22px;

  border-top: 1px solid var(--color-border-light);
}

.category-product-price span {
  display: block;
  margin-bottom: 4px;

  color: var(--color-muted);

  font-size: 9px;
}

.category-product-price strong {
  display: block;

  color: var(--color-primary);

  font-size: 18px;
  font-weight: 700;
}

.category-product-arrow {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--color-border);

  color: var(--color-primary);

  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.category-product-card:hover .category-product-arrow {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateX(3px);
}

/* =====================================================
   CART BUTTON
===================================================== */

.category-cart-form {
  margin: 0;
}

.category-add-cart {
  width: 100%;

  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;

  border: 0;
  border-top: 1px solid var(--color-border-light);

  background: #ffffff;
  color: var(--color-primary);

  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background var(--transition-fast),
    color var(--transition-fast);
}

.category-add-cart:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.category-add-cart i {
  font-size: 14px;
}

.category-add-disabled {
  color: #9ca3af;
  background: #f3f4f6;
  cursor: not-allowed;
}

.category-add-disabled:hover {
  color: #9ca3af;
  background: #f3f4f6;
}

/* =====================================================
   EMPTY STATE
===================================================== */

.category-empty-modern {
  position: relative;

  max-width: 850px;

  margin: 40px auto 0;

  padding: 90px 50px;

  background: #ffffff;

  text-align: center;

  border: 1px solid var(--color-border-light);

  overflow: hidden;
}

.category-empty-number {
  position: absolute;

  top: 25px;
  right: 30px;

  color: #e5e7eb;

  font-size: 70px;
  line-height: 1;
  font-weight: 700;
}

.category-empty-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 25px;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 22px;
}

.category-empty-eyebrow {
  display: block;
  margin-bottom: 15px;

  color: var(--color-muted);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.category-empty-modern h2 {
  margin: 0;

  color: var(--color-primary);

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.category-empty-modern h2 span {
  display: block;

  color: var(--color-muted);
  font-weight: 400;
}

.category-empty-modern p {
  max-width: 500px;

  margin: 22px auto 30px;

  color: var(--color-secondary);

  font-size: 13px;
  line-height: 1.8;
}

.category-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 20px;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 11px;
  font-weight: 700;
  text-decoration: none;

  transition: gap var(--transition-fast);
}

.category-empty-btn:hover {
  gap: 18px;
  background: #000000;
  color: #ffffff;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) {
  .category-grid-modern {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =====================================================
   TABLET / SMALL DESKTOP
===================================================== */

@media (max-width: 991.98px) {
  .category-products-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .category-grid-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .category-modern {
    padding: 60px 0 75px;
  }

  .category-products-heading h1 {
    font-size: 42px;
  }

  .category-products-toolbar {
    padding: 0 16px;
  }

  .category-toolbar-right span {
    display: none;
  }

  .category-grid-modern {
    grid-template-columns: 1fr;
  }

  .category-product-image {
    height: 340px;
  }

  .category-product-view {
    opacity: 1;
    transform: none;
  }

  .category-empty-modern {
    padding: 70px 25px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {
  .category-products-heading h1 {
    font-size: 36px;
  }

  .category-product-image {
    height: 300px;
  }

  .category-product-info {
    padding: 20px;
  }

  .category-product-footer {
    padding: 17px 20px;
  }
}

/* =====================================================
   CONTACT MODERN
===================================================== */

.contact-modern {
  padding: var(--section-padding-y) 0 110px;
  background: #f8f9fa;
}

/* =====================================================
   HEADER
===================================================== */

.contact-modern-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 80px;
  align-items: end;

  padding: 55px 55px 50px;

  background: #111827;
  color: #ffffff;
}

.contact-header-left {
  min-width: 0;
}

.contact-eyebrow {
  display: inline-block;
  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-header-left h1 {
  max-width: 760px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.contact-header-left h1 span {
  display: block;

  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.contact-header-right {
  padding-bottom: 4px;
}

.contact-header-right p {
  max-width: 450px;
  margin: 0 0 28px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 13px;
  line-height: 1.8;
}

.contact-header-meta {
  display: flex;
  align-items: center;
  gap: 14px;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-header-meta span {
  color: rgba(255, 255, 255, 0.4);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-header-meta strong {
  color: #ffffff;

  font-size: 10px;
  font-weight: 600;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.contact-modern-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: stretch;

  border-left: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

/* =====================================================
   SIDEBAR
===================================================== */

.contact-modern-sidebar {
  display: flex;
  flex-direction: column;

  padding: 40px 32px;

  background: #ffffff;

  border-right: 1px solid var(--color-border-light);
}

.contact-sidebar-heading {
  padding-bottom: 32px;
}

.contact-sidebar-heading > span {
  display: block;
  margin-bottom: 15px;

  color: var(--color-muted);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-sidebar-heading h2 {
  margin: 0;

  color: var(--color-primary);

  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.contact-sidebar-heading h2 strong {
  display: block;

  color: var(--color-muted);
  font-weight: 400;
}

/* =====================================================
   CONTACT DETAILS
===================================================== */

.contact-detail {
  position: relative;

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 20px 0;

  color: var(--color-primary);
  text-decoration: none;

  border-top: 1px solid var(--color-border-light);

  transition:
    padding var(--transition-fast),
    background var(--transition-fast);
}

.contact-detail:hover {
  padding-left: 8px;
  color: var(--color-primary);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--color-border);

  color: var(--color-primary);

  font-size: 15px;
}

.contact-detail-content {
  min-width: 0;
}

.contact-detail-content span {
  display: block;
  margin-bottom: 5px;

  color: var(--color-muted);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail-content strong {
  display: block;

  color: var(--color-primary);

  font-size: 12px;
  font-weight: 700;
  word-break: break-word;
}

.contact-detail-content small {
  display: block;
  margin-top: 4px;

  color: var(--color-muted);

  font-size: 10px;
}

.contact-detail-arrow {
  margin-left: auto;

  color: #9ca3af;

  font-size: 13px;

  transition:
    transform var(--transition-fast),
    color var(--transition-fast);
}

.contact-detail:hover .contact-detail-arrow {
  color: var(--color-primary);
  transform: translate(3px, -3px);
}

/* =====================================================
   RESPONSE
===================================================== */

.contact-response {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 15px;
  padding: 17px;

  background: #f8f9fa;

  border: 1px solid var(--color-border-light);
}

.contact-response-mark {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 13px;
}

.contact-response span,
.contact-response strong {
  display: block;
}

.contact-response span {
  margin-bottom: 4px;

  color: var(--color-muted);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.contact-response strong {
  color: var(--color-primary);

  font-size: 11px;
}

/* =====================================================
   SIDEBAR FOOTER
===================================================== */

.contact-sidebar-footer {
  margin-top: auto;
  padding-top: 35px;
}

.contact-sidebar-footer span {
  display: block;
  margin-bottom: 7px;

  color: var(--color-primary);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-sidebar-footer p {
  max-width: 280px;
  margin: 0;

  color: var(--color-muted);

  font-size: 10px;
  line-height: 1.7;
}

/* =====================================================
   MAIN FORM AREA
===================================================== */

.contact-modern-main {
  min-width: 0;

  background: #ffffff;
}

/* =====================================================
   FORM HEADER
===================================================== */

.contact-form-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding: 40px 42px 32px;

  border-bottom: 1px solid var(--color-border-light);
}

.contact-form-header > div:first-child > span {
  display: block;
  margin-bottom: 13px;

  color: var(--color-muted);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-form-header h2 {
  margin: 0;

  color: var(--color-primary);

  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.contact-form-header h2 strong {
  color: var(--color-muted);
  font-weight: 400;
}

.contact-form-number {
  color: #d1d5db;

  font-size: 32px;
  font-weight: 700;
}

/* =====================================================
   FORM
===================================================== */

.contact-modern-form {
  padding: 35px 42px 40px;
}

.contact-field {
  margin-bottom: 27px;
}

.contact-field label {
  display: block;
  margin-bottom: 9px;

  color: var(--color-primary);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-field label span {
  color: #dc2626;
}

.contact-field input,
.contact-field textarea {
  width: 100%;

  border: 0;
  border-bottom: 1px solid #d1d5db;

  border-radius: 0;

  padding: 12px 0;

  background: transparent;

  color: var(--color-primary);

  font-family: var(--font-primary);
  font-size: 13px;

  outline: none;

  transition: border-color var(--transition-fast);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #a1a1aa;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--color-primary);
}

.contact-field textarea {
  min-height: 125px;

  resize: vertical;

  line-height: 1.7;
}

/* =====================================================
   FORM FOOTER
===================================================== */

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  padding-top: 8px;
}

.contact-security {
  display: flex;
  align-items: center;
  gap: 9px;

  max-width: 280px;

  color: var(--color-muted);

  font-size: 9px;
  line-height: 1.6;
}

.contact-security i {
  color: var(--color-primary);
  font-size: 12px;
}

.contact-submit {
  min-width: 165px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 15px 18px;

  border: 0;

  background: var(--color-primary);
  color: #ffffff;

  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background var(--transition-fast),
    padding var(--transition-fast);
}

.contact-submit:hover {
  padding-right: 22px;

  background: #000000;
}

/* =====================================================
   PRODUCT NOTE
===================================================== */

.contact-product-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin: 0 42px 35px;
  padding: 18px;

  background: #f8f9fa;

  border: 1px solid var(--color-border-light);
}

.contact-product-note-icon {
  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 13px;
}

.contact-product-note strong {
  display: block;
  margin-bottom: 5px;

  color: var(--color-primary);

  font-size: 11px;
}

.contact-product-note p {
  margin: 0;

  color: var(--color-muted);

  font-size: 10px;
  line-height: 1.65;
}

/* =====================================================
   SUCCESS STATE
===================================================== */

.contact-success-modern {
  min-height: 650px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 55px 60px;

  background: #ffffff;
}

.contact-success-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 75px;
  padding-bottom: 15px;

  border-bottom: 1px solid var(--color-border-light);
}

.contact-success-top span {
  color: var(--color-muted);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-success-top strong {
  color: #d1d5db;

  font-size: 24px;
}

.contact-success-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 21px;
}

.contact-success-modern h2 {
  max-width: 600px;
  margin: 0 0 18px;

  color: var(--color-primary);

  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.contact-success-modern h2 span {
  display: block;

  color: var(--color-muted);
  font-weight: 400;
}

.contact-success-modern p {
  max-width: 500px;
  margin: 0 0 30px;

  color: var(--color-secondary);

  font-size: 13px;
  line-height: 1.8;
}

.contact-success-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  width: fit-content;

  padding: 14px 20px;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.contact-success-btn:hover {
  background: #000000;
  color: #ffffff;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {
  .contact-modern-header {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 45px 35px;
  }

  .contact-modern-layout {
    grid-template-columns: 1fr;
  }

  .contact-modern-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--color-border-light);
  }

  .contact-sidebar-footer {
    margin-top: 30px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .contact-modern {
    padding: 50px 0 70px;
  }

  .contact-modern-header {
    padding: 35px 25px;
  }

  .contact-header-left h1 {
    font-size: 46px;
  }

  .contact-modern-sidebar {
    padding: 30px 22px;
  }

  .contact-form-header {
    padding: 30px 22px 25px;
  }

  .contact-form-header h2 {
    font-size: 31px;
  }

  .contact-modern-form {
    padding: 30px 22px 35px;
  }

  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-security {
    max-width: none;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-product-note {
    margin-right: 22px;
    margin-left: 22px;
  }

  .contact-success-modern {
    min-height: 500px;
    padding: 40px 25px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {
  .contact-header-left h1 {
    font-size: 40px;
  }

  .contact-header-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .contact-detail {
    align-items: flex-start;
  }

  .contact-detail-arrow {
    display: none;
  }

  .contact-success-modern h2 {
    font-size: 40px;
  }
}

/* =========================================================
   CATEGORY MODERN
========================================================= */

.category-modern {
  padding: var(--section-padding-y) 0;
  background: #ffffff;
}

/* =========================================================
   CATEGORY HEADER
========================================================= */

.category-modern-header {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 80px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-border);
}

.category-header-kicker {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.category-header-kicker span {
  width: 34px;
  height: 1px;
  background: var(--color-primary);
}

.category-header-main h1 {
  max-width: 780px;
  margin: 0;

  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--color-primary);
}

.category-header-main h1 em {
  display: block;
  font-style: normal;
  font-weight: 400;
  color: var(--color-muted);
}

.category-header-side {
  padding-bottom: 5px;
}

.category-header-side p {
  max-width: 400px;
  margin: 0 0 32px;

  font-size: 15px;
  line-height: 1.75;
  color: var(--color-muted);
}

.category-header-count {
  display: flex;
  align-items: baseline;
  gap: 12px;

  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.category-header-count strong {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}

.category-header-count span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* =========================================================
   CATALOGUE BAR
========================================================= */

.category-catalogue-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  min-height: 72px;

  border-bottom: 1px solid var(--color-border);
}

.category-catalogue-left,
.category-catalogue-right {
  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.catalogue-line {
  width: 24px;
  height: 1px;
  background: var(--color-primary);
}

.category-catalogue-right {
  gap: 18px;
  color: var(--color-muted);
}

.catalogue-divider {
  width: 1px;
  height: 16px;
  background: var(--color-border);
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.category-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.category-product-card {
  min-width: 0;
  background: #ffffff;
  border-right: 1px solid var(--color-border);
  transition: background-color var(--transition);
}

.category-product-card:hover {
  background: #f8f9fa;
}

/* =========================================================
   PRODUCT LINK
========================================================= */

.category-product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   PRODUCT VISUAL
========================================================= */

.category-product-visual {
  position: relative;
  height: 390px;

  padding: 20px;

  background: #f5f6f7;
  border-bottom: 1px solid var(--color-border);

  overflow: hidden;
}

.category-product-top {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-product-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.product-stock-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-stock-status span {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
}

.product-stock-status.in {
  color: #166534;
}

.product-stock-status.in span {
  background: #16a34a;
}

.product-stock-status.out {
  color: #991b1b;
}

.product-stock-status.out span {
  background: #dc2626;
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.category-product-image-stage {
  position: absolute;

  inset: 60px 20px 45px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.category-product-image-stage img {
  width: 88%;
  height: 88%;

  object-fit: contain;

  transition:
    transform var(--transition),
    opacity var(--transition);
}

.category-product-card:hover .category-product-image-stage img {
  transform: scale(1.045);
}

.category-product-category {
  position: absolute;
  bottom: 18px;
  left: 20px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

/* =========================================================
   PRODUCT INFO
========================================================= */

.category-product-info {
  padding: 24px 22px 22px;
}

.category-product-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 16px;
}

.category-product-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

.category-product-brand-row i {
  font-size: 15px;
  color: #9ca3af;

  transition:
    color var(--transition),
    transform var(--transition);
}

.category-product-card:hover .category-product-brand-row i {
  color: var(--color-primary);
  transform: translate(2px, -2px);
}

.category-product-info h2 {
  min-height: 58px;

  margin: 0 0 12px;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.category-product-info p {
  min-height: 54px;

  margin: 0;

  font-size: 13px;
  line-height: 1.65;
  color: var(--color-muted);
}

/* =========================================================
   PRODUCT FOOTER
========================================================= */

.category-product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 16px;

  margin-top: 28px;
  padding-top: 18px;

  border-top: 1px solid var(--color-border);
}

.category-product-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.category-product-price span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
}

.category-product-price strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
}

.category-view-product {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);

  white-space: nowrap;
}

.category-view-product i {
  transition: transform var(--transition);
}

.category-product-card:hover .category-view-product i {
  transform: translateX(4px);
}

/* =========================================================
   ADD TO CART
========================================================= */

.category-cart-form {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.category-add-cart {
  width: 100%;
  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;

  border: 0;
  background: #111827;

  color: #ffffff;

  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color var(--transition),
    color var(--transition);
}

.category-add-cart:hover {
  background: #000000;
}

.category-add-cart i {
  font-size: 14px;
}

.category-add-disabled {
  background: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
}

.category-add-disabled:hover {
  background: #e5e7eb;
}

/* =========================================================
   EMPTY STATE
========================================================= */

.category-empty-modern {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.category-empty-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 0;

  border-bottom: 1px solid var(--color-border);
}

.category-empty-number {
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
}

.category-empty-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.category-empty-content {
  display: grid;
  grid-template-columns: 100px minmax(0, 620px);
  gap: 42px;

  align-items: start;

  padding: 80px 0;
}

.category-empty-icon {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--color-border);

  font-size: 25px;
  color: var(--color-primary);
}

.category-empty-content h2 {
  margin: 0 0 18px;

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-primary);
}

.category-empty-content h2 span {
  display: block;
  font-weight: 400;
  color: var(--color-muted);
}

.category-empty-content p {
  max-width: 540px;

  margin: 0 0 30px;

  font-size: 15px;
  line-height: 1.75;
  color: var(--color-muted);
}

.category-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  min-height: 50px;
  padding: 0 20px;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  text-decoration: none;

  transition: background-color var(--transition);
}

.category-empty-btn:hover {
  background: #000000;
  color: #ffffff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .category-modern-header {
    gap: 50px;
  }

  .category-grid-modern {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .category-modern {
    padding: var(--section-padding-y-tablet) 0;
  }

  .category-modern-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-header-side {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }

  .category-header-side p {
    margin-bottom: 0;
  }

  .category-header-count {
    min-width: 170px;
    padding-top: 0;
    border-top: 0;
  }

  .category-grid-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-product-visual {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .category-modern {
    padding: var(--section-padding-y-mobile) 0;
  }

  .category-modern-header {
    padding-bottom: 40px;
  }

  .category-header-main h1 {
    font-size: 42px;
  }

  .category-header-side {
    display: block;
  }

  .category-header-side p {
    margin-bottom: 25px;
  }

  .category-header-count {
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
  }

  .category-catalogue-bar {
    min-height: 62px;
  }

  .category-catalogue-right {
    display: none;
  }

  .category-grid-modern {
    grid-template-columns: 1fr;
  }

  .category-product-visual {
    height: 390px;
  }

  .category-product-info {
    padding: 22px 20px;
  }

  .category-empty-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 55px 0;
  }

  .category-empty-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .category-header-main h1 {
    font-size: 36px;
  }

  .category-product-visual {
    height: 340px;
  }

  .category-product-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-view-product {
    margin-top: 4px;
  }
}

/* =========================================================
   TRACK ORDER
========================================================= */

.track-order-modern {
  padding: 96px 0;
  background: #ffffff;
}

/* =========================================================
   PAGE HEADER
========================================================= */

.track-page-header {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;

  padding-bottom: 64px;

  border-bottom: 1px solid var(--color-border);
}

.track-page-kicker {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: var(--color-muted);
}

.track-page-kicker span {
  width: 34px;
  height: 1px;
  background: var(--color-primary);
}

.track-page-header h1 {
  max-width: 760px;

  margin: 0;

  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;

  color: var(--color-primary);
}

.track-page-header h1 em {
  display: block;

  font-style: normal;
  font-weight: 400;

  color: var(--color-muted);
}

.track-page-header-right {
  align-self: end;
}

.track-page-header-right p {
  max-width: 390px;

  margin: 0 0 28px;

  font-size: 15px;
  line-height: 1.75;

  color: var(--color-muted);
}

.track-header-meta {
  display: flex;
  align-items: center;
  gap: 10px;

  padding-top: 18px;

  border-top: 1px solid var(--color-border);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--color-primary);
}

.track-header-meta i {
  font-size: 13px;
}

/* =========================================================
   LOOKUP SECTION
========================================================= */

.track-lookup-section {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);

  border-bottom: 1px solid var(--color-border);
}

.track-lookup-number {
  padding-top: 42px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;

  color: #9ca3af;

  border-right: 1px solid var(--color-border);
}

.track-lookup-content {
  padding: 64px 0 64px 64px;
}

.track-section-label {
  margin-bottom: 12px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--color-muted);
}

.track-section-heading h2 {
  max-width: 650px;

  margin: 0;

  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;

  color: var(--color-primary);
}

.track-section-heading h2 strong {
  font-weight: 400;
  color: var(--color-muted);
}

/* =========================================================
   FORM
========================================================= */

.track-order-form {
  display: grid;
  grid-template-columns: minmax(0, 560px) 230px;

  gap: 16px;

  margin-top: 42px;
}

.track-field label {
  display: block;

  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--color-primary);
}

.track-field label span {
  color: #dc2626;
}

.track-input-wrap {
  display: flex;

  height: 58px;

  border: 1px solid #9ca3af;
  background: #ffffff;

  transition: border-color var(--transition);
}

.track-input-wrap:focus-within {
  border-color: var(--color-primary);
}

.track-input-prefix {
  width: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-right: 1px solid var(--color-border);

  font-size: 15px;
  font-weight: 700;

  color: #9ca3af;
}

.track-input-wrap input {
  width: 100%;

  padding: 0 16px;

  border: 0;
  outline: 0;

  background: transparent;

  font-family: inherit;
  font-size: 15px;
  font-weight: 500;

  color: var(--color-primary);
}

.track-input-wrap input::placeholder {
  color: #9ca3af;
}

.track-submit-btn {
  align-self: end;

  height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;

  border: 0;

  background: var(--color-primary);
  color: #ffffff;

  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  cursor: pointer;

  transition: background-color var(--transition);
}

.track-submit-btn:hover {
  background: #000000;
}

.track-submit-btn i {
  font-size: 13px;

  transition: transform var(--transition);
}

.track-submit-btn:hover i {
  transform: translateX(4px);
}

/* =========================================================
   LOOKUP NOTE
========================================================= */

.track-lookup-note {
  max-width: 790px;

  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-top: 22px;

  font-size: 12px;
  line-height: 1.6;

  color: var(--color-muted);
}

.track-lookup-note i {
  margin-top: 2px;

  font-size: 13px;
  color: var(--color-primary);
}

/* =========================================================
   ERROR
========================================================= */

.track-error {
  max-width: 790px;

  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin-top: 24px;
  padding: 18px;

  border-left: 3px solid #dc2626;

  background: #fef2f2;
}

.track-error-icon {
  width: 30px;
  height: 30px;

  flex: 0 0 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #dc2626;
  color: #ffffff;

  font-size: 12px;
}

.track-error strong {
  display: block;

  margin-bottom: 4px;

  font-size: 13px;
  color: #991b1b;
}

.track-error p {
  margin: 0;

  font-size: 12px;
  line-height: 1.5;

  color: #7f1d1d;
}

/* =========================================================
   RESULT
========================================================= */

.track-result-section {
  margin-top: 64px;

  border-top: 4px solid var(--color-primary);
  border-bottom: 1px solid var(--color-border);

  background: #f8f9fa;
}

.track-result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 40px;

  padding: 48px 48px 0;
}

.track-result-top h2 {
  margin: 0;

  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;

  color: var(--color-primary);
}

.track-current-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 8px;
  padding: 10px 0;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.track-current-status span {
  width: 7px;
  height: 7px;

  display: block;
  border-radius: 50%;
}

.track-current-status.processing {
  color: #92400e;
}

.track-current-status.processing span {
  background: #d97706;
}

.track-current-status.dispatched {
  color: #166534;
}

.track-current-status.dispatched span {
  background: #16a34a;
}

.track-result-description {
  max-width: 650px;

  margin: 20px 48px 0;

  font-size: 14px;
  line-height: 1.7;

  color: var(--color-muted);
}

/* =========================================================
   PROGRESS
========================================================= */

.track-progress {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  margin: 70px 48px 0;

  padding-bottom: 50px;
}

.track-progress-line {
  position: absolute;

  top: 17px;
  left: 12.5%;
  right: 12.5%;

  height: 1px;

  background: #d1d5db;
}

.track-progress-line span {
  position: absolute;
  top: 0;
  left: 0;

  width: 0;
  height: 1px;

  background: var(--color-primary);

  transition: width 0.4s ease;
}

.track-progress-line span.completed:nth-child(1) {
  width: 33.33%;
}

.track-progress-line span.completed:nth-child(2) {
  width: 66.66%;
}

.track-progress-step {
  position: relative;
  z-index: 2;

  text-align: center;
}

.track-progress-icon {
  width: 35px;
  height: 35px;

  margin: 0 auto 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d1d5db;

  background: #f8f9fa;

  color: #9ca3af;

  font-size: 11px;
}

.track-progress-step.completed .track-progress-icon,
.track-progress-step.active .track-progress-icon {
  border-color: var(--color-primary);

  background: var(--color-primary);
  color: #ffffff;
}

.track-progress-step.active .track-progress-icon {
  width: 39px;
  height: 39px;

  margin-top: -2px;
}

.track-progress-icon span {
  width: 5px;
  height: 5px;

  background: #9ca3af;
}

.track-progress-content strong {
  display: block;

  margin-bottom: 5px;

  font-size: 12px;
  font-weight: 700;

  color: var(--color-primary);
}

.track-progress-content span {
  font-size: 10px;
  color: var(--color-muted);
}

/* =========================================================
   ORDER DETAILS
========================================================= */

.track-order-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin: 0 48px;

  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.track-detail {
  padding: 24px 20px;
}

.track-detail + .track-detail {
  border-left: 1px solid var(--color-border);
}

.track-detail-label {
  display: block;

  margin-bottom: 8px;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #9ca3af;
}

.track-detail strong {
  font-size: 14px;
  font-weight: 700;

  color: var(--color-primary);
}

/* =========================================================
   FINAL MESSAGE
========================================================= */

.track-final-message {
  display: flex;
  align-items: center;
  gap: 18px;

  margin: 32px 48px 48px;

  padding: 22px;

  border-left: 3px solid;
}

.track-final-message.processing {
  border-color: #d97706;
  background: #fffbeb;
}

.track-final-message.dispatched {
  border-color: #16a34a;
  background: #f0fdf4;
}

.track-final-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-primary);
  color: #ffffff;

  font-size: 14px;
}

.track-final-message strong {
  display: block;

  margin-bottom: 5px;

  font-size: 13px;
  color: var(--color-primary);
}

.track-final-message p {
  margin: 0;

  font-size: 12px;
  line-height: 1.5;

  color: var(--color-muted);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .track-order-modern {
    padding: 72px 0;
  }

  .track-page-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .track-page-header-right {
    max-width: 500px;
  }

  .track-lookup-content {
    padding-left: 40px;
  }

  .track-order-form {
    grid-template-columns: 1fr 220px;
  }

  .track-result-top {
    padding-left: 32px;
    padding-right: 32px;
  }

  .track-result-description {
    margin-left: 32px;
    margin-right: 32px;
  }

  .track-progress {
    margin-left: 32px;
    margin-right: 32px;
  }

  .track-order-details {
    margin-left: 32px;
    margin-right: 32px;
  }

  .track-final-message {
    margin-left: 32px;
    margin-right: 32px;
  }
}

@media (max-width: 767px) {
  .track-order-modern {
    padding: 56px 0;
  }

  .track-page-header {
    padding-bottom: 44px;
  }

  .track-page-header h1 {
    font-size: 43px;
  }

  .track-lookup-section {
    display: block;
  }

  .track-lookup-number {
    padding: 18px 0;

    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .track-lookup-content {
    padding: 42px 0;
  }

  .track-order-form {
    grid-template-columns: 1fr;
  }

  .track-submit-btn {
    width: 100%;
  }

  .track-result-section {
    margin-top: 45px;
  }

  .track-result-top {
    display: block;
    padding: 32px 22px 0;
  }

  .track-current-status {
    margin-top: 18px;
  }

  .track-result-description {
    margin: 18px 22px 0;
  }

  .track-progress {
    grid-template-columns: 1fr;

    gap: 26px;

    margin: 45px 22px 0;
    padding-left: 18px;
    padding-bottom: 35px;
  }

  .track-progress-line {
    top: 17px;
    bottom: 17px;
    left: 35px;
    right: auto;

    width: 1px;
    height: auto;
  }

  .track-progress-line span {
    width: 1px !important;
    height: 0;
  }

  .track-progress-line span.completed:nth-child(1) {
    height: 33.33%;
  }

  .track-progress-line span.completed:nth-child(2) {
    height: 66.66%;
  }

  .track-progress-step {
    display: grid;
    grid-template-columns: 35px 1fr;

    gap: 18px;

    text-align: left;
  }

  .track-progress-icon {
    margin: 0;
  }

  .track-progress-step.active .track-progress-icon {
    margin-top: -2px;
  }

  .track-order-details {
    grid-template-columns: 1fr;

    margin: 0 22px;
  }

  .track-detail + .track-detail {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

  .track-final-message {
    margin: 25px 22px 32px;
  }
}

@media (max-width: 480px) {
  .track-page-header h1 {
    font-size: 37px;
  }

  .track-section-heading h2 {
    font-size: 31px;
  }

  .track-final-message {
    align-items: flex-start;
  }
}

/* =========================================================
   FAQ MODERN
========================================================= */

.faq-modern {
  padding: 96px 0;
  background: #ffffff;
}

/* =========================================================
   HERO
========================================================= */

.faq-hero {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;

  padding-bottom: 64px;

  border-bottom: 1px solid var(--color-border);
}

.faq-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: var(--color-muted);
}

.faq-eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--color-primary);
}

.faq-hero h1 {
  max-width: 780px;

  margin: 0;

  font-size: clamp(46px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;

  color: var(--color-primary);
}

.faq-hero h1 em {
  display: block;

  font-style: normal;
  font-weight: 400;

  color: var(--color-muted);
}

.faq-hero-side {
  align-self: end;
}

.faq-hero-side p {
  max-width: 400px;

  margin: 0 0 30px;

  font-size: 15px;
  line-height: 1.75;

  color: var(--color-muted);
}

.faq-hero-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;

  padding-top: 18px;

  border-top: 1px solid var(--color-border);
}

.faq-hero-meta strong {
  font-size: 28px;
  line-height: 1;

  color: var(--color-primary);
}

.faq-hero-meta span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--color-muted);
}

/* =========================================================
   TOPIC NAV
========================================================= */

.faq-topic-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);

  border-bottom: 1px solid var(--color-border);
}

.faq-topic {
  min-height: 82px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 7px;

  padding: 0 18px;

  border-right: 1px solid var(--color-border);

  color: var(--color-muted);
  text-decoration: none;

  transition:
    background-color var(--transition),
    color var(--transition);
}

.faq-topic:first-child {
  border-left: 1px solid var(--color-border);
}

.faq-topic span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;

  color: #9ca3af;
}

.faq-topic {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-topic:hover,
.faq-topic.active {
  background: var(--color-primary);
  color: #ffffff;
}

.faq-topic:hover span,
.faq-topic.active span {
  color: #9ca3af;
}

/* =========================================================
   CONTENT
========================================================= */

.faq-content {
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
  display: grid;
  grid-template-columns: 34% 66%;

  border-bottom: 1px solid var(--color-border);
}

.faq-section-intro {
  padding: 52px 42px;

  border-right: 1px solid var(--color-border);

  background: #f8f9fa;
}

.faq-section-number {
  display: block;

  margin-bottom: 70px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;

  color: #9ca3af;
}

.faq-section-label {
  display: block;

  margin-bottom: 13px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--color-muted);
}

.faq-section-intro h2 {
  margin: 0 0 18px;

  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.035em;

  color: var(--color-primary);
}

.faq-section-intro h2 strong {
  display: block;

  font-weight: 400;
  color: var(--color-muted);
}

.faq-section-intro p {
  max-width: 300px;

  margin: 0;

  font-size: 13px;
  line-height: 1.7;

  color: var(--color-muted);
}

/* =========================================================
   QUESTIONS
========================================================= */

.faq-question-list {
  background: #ffffff;
}

.faq-question {
  border-bottom: 1px solid var(--color-border);
}

.faq-question:last-child {
  border-bottom: 0;
}

.faq-question-button {
  width: 100%;

  display: grid;
  grid-template-columns: 45px 1fr 30px;
  align-items: center;

  gap: 16px;

  min-height: 82px;

  padding: 18px 30px;

  border: 0;

  background: #ffffff;

  font-family: inherit;

  text-align: left;

  cursor: pointer;

  transition: background-color var(--transition);
}

.faq-question-button:hover {
  background: #f8f9fa;
}

.faq-question-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;

  color: #9ca3af;
}

.faq-question-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;

  color: var(--color-primary);
}

.faq-question-icon {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--color-border);

  font-size: 10px;

  color: var(--color-primary);
}

.faq-question.active .faq-question-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);

  color: #ffffff;
}

/* =========================================================
   ANSWER
========================================================= */

.faq-answer {
  display: none;

  padding: 0 76px 30px 91px;
}

.faq-question.active .faq-answer {
  display: block;
}

.faq-answer p {
  max-width: 680px;

  margin: 0;

  font-size: 13px;
  line-height: 1.8;

  color: var(--color-muted);
}

/* =========================================================
   BOTTOM CTA
========================================================= */

.faq-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;

  margin-top: 64px;
  padding: 48px;

  background: var(--color-primary);
  color: #ffffff;
}

.faq-bottom-label {
  display: block;

  margin-bottom: 12px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #9ca3af;
}

.faq-bottom h2 {
  margin: 0;

  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: white;
}

.faq-bottom h2 em {
  font-style: normal;
  font-weight: 400;
  color: #9ca3af;
}

.faq-contact-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  gap: 20px;

  padding: 0 22px;

  border: 1px solid #4b5563;

  color: #ffffff;
  text-decoration: none;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  white-space: nowrap;

  transition:
    background-color var(--transition),
    border-color var(--transition);
}

.faq-contact-btn:hover {
  background: #ffffff;
  border-color: #ffffff;

  color: var(--color-primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .faq-modern {
    padding: 72px 0;
  }

  .faq-hero {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-hero-side {
    max-width: 500px;
  }

  .faq-topic-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-topic:nth-child(4) {
    border-left: 1px solid var(--color-border);
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-section-intro {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .faq-section-number {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .faq-modern {
    padding: 56px 0;
  }

  .faq-hero {
    padding-bottom: 45px;
  }

  .faq-hero h1 {
    font-size: 43px;
  }

  .faq-topic-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-topic:nth-child(3),
  .faq-topic:nth-child(5) {
    border-left: 1px solid var(--color-border);
  }

  .faq-section-intro {
    padding: 38px 24px;
  }

  .faq-question-button {
    grid-template-columns: 30px 1fr 28px;

    gap: 10px;

    padding: 16px 18px;
  }

  .faq-question-title {
    font-size: 13px;
  }

  .faq-answer {
    padding: 0 18px 26px 58px;
  }

  .faq-bottom {
    align-items: flex-start;
    flex-direction: column;

    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .faq-hero h1 {
    font-size: 37px;
  }

  .faq-topic {
    min-height: 70px;

    padding: 0 14px;

    font-size: 9px;
  }

  .faq-section-intro h2 {
    font-size: 30px;
  }

  .faq-question-button {
    grid-template-columns: 24px 1fr 26px;
  }

  .faq-question-number {
    font-size: 9px;
  }
}

/* =========================================================
   PRODUCT PAGE
========================================================= */

.product-modern {
  padding: 88px 0 110px;
  background: #ffffff;
}

/* =========================================================
   PRODUCT HERO
========================================================= */

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;

  padding-bottom: 80px;

  border-bottom: 1px solid var(--color-border);
}

/* =========================================================
   BREADCRUMB
========================================================= */

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 18px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
}

.product-breadcrumb i {
  font-size: 8px;
  color: #9ca3af;
}

.product-breadcrumb span {
  color: #9ca3af;
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image-panel {
  position: relative;

  height: 610px;

  overflow: hidden;

  background: #f4f5f6;

  border: 1px solid var(--color-border);
}

.product-image-top {
  position: absolute;
  z-index: 4;

  top: 22px;
  left: 22px;
  right: 22px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-image-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;

  color: #9ca3af;
}

.product-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-availability span {
  width: 6px;
  height: 6px;

  display: block;

  border-radius: 50%;
}

.product-availability.available {
  color: #166534;
}

.product-availability.available span {
  background: #16a34a;
}

.product-availability.unavailable {
  color: #991b1b;
}

.product-availability.unavailable span {
  background: #dc2626;
}

.product-image-stage {
  position: absolute;

  inset: 75px 40px 65px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-grid {
  position: absolute;
  inset: 0;

  opacity: 0.5;

  background-image:
    linear-gradient(#d1d5db 1px, transparent 1px),
    linear-gradient(90deg, #d1d5db 1px, transparent 1px);

  background-size: 45px 45px;

  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.product-image-stage img {
  position: relative;
  z-index: 2;

  width: 82%;
  height: 82%;

  object-fit: contain;

  transition: transform 0.45s ease;
}

.product-image-panel:hover .product-image-stage img {
  transform: scale(1.035);
}

.product-image-footer {
  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;

  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 22px;

  border-top: 1px solid var(--color-border);

  background: #ffffff;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--color-muted);
}

/* =========================================================
   BENEFITS
========================================================= */

.product-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-bottom: 1px solid var(--color-border);
}

.product-benefits > div {
  min-height: 82px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px;

  border-right: 1px solid var(--color-border);
}

.product-benefits > div:last-child {
  border-right: 0;
}

.product-benefits i {
  font-size: 17px;
  color: var(--color-primary);
}

.product-benefits span {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: var(--color-primary);
}

/* =========================================================
   PRODUCT DETAILS
========================================================= */

.product-hero-details {
  padding-top: 62px;
}

.product-brand-label {
  margin-bottom: 17px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: var(--color-muted);
}

.product-hero-details h1 {
  max-width: 650px;

  margin: 0;

  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;

  color: var(--color-primary);
}

.product-lead {
  max-width: 600px;

  margin: 25px 0 0;

  font-size: 15px;
  line-height: 1.75;

  color: var(--color-muted);
}

.product-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;

  margin-top: 28px;
  padding-top: 20px;

  border-top: 1px solid var(--color-border);
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--color-muted);
}

.product-meta i {
  font-size: 13px;
}

.product-meta .meta-stock {
  color: #166534;
}

/* =========================================================
   PRICE
========================================================= */

.product-price {
  margin-top: 42px;
}

.product-price span {
  display: block;

  margin-bottom: 8px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #9ca3af;
}

.product-price strong {
  font-size: 35px;
  font-weight: 700;
  line-height: 1;

  color: var(--color-primary);
}

/* =========================================================
   PURCHASE
========================================================= */

.product-purchase {
  margin-top: 38px;

  padding: 24px 0;

  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.purchase-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  margin-bottom: 15px;
}

.purchase-heading strong {
  font-size: 13px;
  color: var(--color-primary);
}

.purchase-heading span {
  font-size: 11px;
  color: var(--color-muted);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-cart-form,
.product-buy-form {
  margin: 0;
}

.product-add-cart,
.product-buy-now {
  width: 100%;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border: 1px solid var(--color-primary);

  font-family: inherit;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background-color var(--transition),
    color var(--transition);
}

.product-add-cart {
  background: var(--color-primary);
  color: #ffffff;
}

.product-add-cart:hover {
  background: #000000;
}

.product-buy-now {
  background: #ffffff;
  color: var(--color-primary);
}

.product-buy-now:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* =========================================================
   UNAVAILABLE
========================================================= */

.product-unavailable {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-top: 38px;
  padding: 20px;

  border-left: 3px solid #d97706;

  background: #fffbeb;
}

.product-unavailable-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 42px;

  background: #d97706;
  color: #ffffff;
}

.product-unavailable strong {
  display: block;

  margin-bottom: 5px;

  font-size: 13px;
  color: var(--color-primary);
}

.product-unavailable span {
  display: block;

  font-size: 11px;
  line-height: 1.5;

  color: var(--color-muted);
}

/* =========================================================
   QUICK DETAILS
========================================================= */

.product-quick-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 32px;

  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.product-quick-details > div {
  padding: 18px 14px;

  border-right: 1px solid var(--color-border);
}

.product-quick-details > div:last-child {
  border-right: 0;
}

.product-quick-details span {
  display: block;

  margin-bottom: 7px;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: #9ca3af;
}

.product-quick-details strong {
  display: block;

  font-size: 12px;
  line-height: 1.4;

  color: var(--color-primary);
}

.text-available {
  color: #166534 !important;
}

.text-unavailable {
  color: #991b1b !important;
}

/* =========================================================
   PRODUCT INTRO
========================================================= */

.product-intro {
  display: grid;
  grid-template-columns: 30% 70%;

  padding: 90px 0;

  border-bottom: 1px solid var(--color-border);
}

.product-intro-label {
  padding-top: 10px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--color-muted);
}

.product-intro-content h2 {
  max-width: 720px;

  margin: 0 0 24px;

  font-size: clamp(35px, 4vw, 55px);
  line-height: 1;
  letter-spacing: -0.045em;

  color: var(--color-primary);
}

.product-intro-content h2 em {
  display: block;

  font-style: normal;
  font-weight: 400;

  color: var(--color-muted);
}

.product-intro-content p {
  max-width: 720px;

  margin: 0;

  font-size: 15px;
  line-height: 1.85;

  color: var(--color-muted);
}

/* =========================================================
   HIGHLIGHTS
========================================================= */

.product-highlights {
  padding: 90px 0;

  border-bottom: 1px solid var(--color-border);
}

.product-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 50px;

  margin-bottom: 45px;
}

.product-section-heading > div > span,
.product-information-header > div > span {
  display: block;

  margin-bottom: 13px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--color-muted);
}

.product-section-heading h2,
.product-information-header h2 {
  margin: 0;

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;

  color: var(--color-primary);
}

.product-section-heading h2 em,
.product-information-header h2 em {
  display: block;

  font-style: normal;
  font-weight: 400;

  color: var(--color-muted);
}

.product-section-heading > p {
  max-width: 350px;

  margin: 0;

  font-size: 13px;
  line-height: 1.7;

  color: var(--color-muted);
}

.product-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.product-highlight {
  position: relative;

  min-height: 280px;

  padding: 28px;

  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.highlight-number {
  display: block;

  margin-bottom: 55px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;

  color: #9ca3af;
}

.product-highlight i {
  display: block;

  margin-bottom: 20px;

  font-size: 20px;

  color: var(--color-primary);
}

.product-highlight h3 {
  margin: 0 0 12px;

  font-size: 17px;
  line-height: 1.3;

  color: var(--color-primary);
}

.product-highlight p {
  margin: 0;

  font-size: 12px;
  line-height: 1.7;

  color: var(--color-muted);
}

/* =========================================================
   INFORMATION
========================================================= */

.product-information {
  padding: 90px 0;

  border-bottom: 1px solid var(--color-border);
}

.product-information-header {
  margin-bottom: 45px;
}

.product-specification-block {
  border: 1px solid var(--color-border);
}

.product-info-title {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 24px;

  border-bottom: 1px solid var(--color-border);
}

.product-info-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-primary);
  color: #ffffff;
}

.product-info-title span {
  display: block;

  margin-bottom: 4px;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #9ca3af;
}

.product-info-title h3 {
  margin: 0;

  font-size: 17px;
  color: var(--color-primary);
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.product-spec-grid > div {
  min-height: 110px;

  padding: 22px;

  border-right: 1px solid var(--color-border);
}

.product-spec-grid > div:last-child {
  border-right: 0;
}

.product-spec-grid span {
  display: block;

  margin-bottom: 10px;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: #9ca3af;
}

.product-spec-grid strong {
  display: block;

  font-size: 13px;
  line-height: 1.5;

  color: var(--color-primary);
}

/* =========================================================
   INFORMATION PANELS
========================================================= */

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 16px;

  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.product-info-panel {
  min-height: 340px;

  padding: 28px;

  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.product-info-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 40px;
}

.product-info-panel-top span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;

  color: #9ca3af;
}

.product-info-panel-top i {
  font-size: 19px;
  color: var(--color-primary);
}

.product-info-panel h3 {
  margin: 0 0 15px;

  font-size: 20px;

  color: var(--color-primary);
}

.product-info-panel > p {
  margin: 0;

  font-size: 12px;
  line-height: 1.8;

  color: var(--color-muted);
}

.product-info-note {
  display: flex;
  gap: 10px;

  margin-top: 25px;
  padding-top: 18px;

  border-top: 1px solid var(--color-border);

  font-size: 10px;
  line-height: 1.6;

  color: var(--color-muted);
}

.product-info-note i {
  flex: 0 0 auto;

  color: var(--color-primary);
}

.product-detail-list {
  display: flex;
  flex-direction: column;

  border-top: 1px solid var(--color-border);
}

.product-detail-list > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 15px 0;

  border-bottom: 1px solid var(--color-border);

  font-size: 11px;
  line-height: 1.55;

  color: var(--color-muted);
}

.product-detail-list i {
  margin-top: 2px;

  flex: 0 0 auto;

  color: var(--color-primary);
}

/* =========================================================
   CHECKLIST
========================================================= */

.product-checklist {
  display: grid;
  grid-template-columns: 30% 70%;

  padding: 90px 0;

  border-bottom: 1px solid var(--color-border);
}

.product-checklist-heading > span {
  display: block;

  margin-bottom: 14px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--color-muted);
}

.product-checklist-heading h2 {
  margin: 0;

  font-size: 40px;
  line-height: 1;

  letter-spacing: -0.04em;

  color: var(--color-primary);
}

.product-checklist-heading h2 em {
  display: block;

  font-style: normal;
  font-weight: 400;

  color: var(--color-muted);
}

.product-checklist-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.product-checklist-items > div {
  padding: 24px;

  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.product-checklist-items span {
  display: block;

  margin-bottom: 30px;

  font-size: 10px;
  font-weight: 700;

  color: #9ca3af;
}

.product-checklist-items strong {
  display: block;

  margin-bottom: 10px;

  font-size: 14px;

  color: var(--color-primary);
}

.product-checklist-items p {
  margin: 0;

  font-size: 11px;
  line-height: 1.7;

  color: var(--color-muted);
}

/* =========================================================
   FINAL CTA
========================================================= */

.product-final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;

  margin-top: 70px;
  padding: 48px;

  background: var(--color-primary);
  color: #ffffff;
}

.product-final-cta > div > span {
  display: block;

  margin-bottom: 12px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #9ca3af;
}

.product-final-cta h2 {
  margin: 0;

  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: white;
}

.product-final-cta h2 em {
  font-style: normal;
  font-weight: 400;

  color: #9ca3af;
}

.product-final-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  gap: 18px;

  padding: 0 22px;

  border: 1px solid #4b5563;

  color: #ffffff;
  text-decoration: none;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  white-space: nowrap;

  transition:
    background-color var(--transition),
    color var(--transition);
}

.product-final-btn:hover {
  background: #ffffff;
  color: var(--color-primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .product-hero {
    gap: 45px;
  }

  .product-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .product-modern {
    padding: 70px 0 90px;
  }

  .product-hero {
    grid-template-columns: 1fr;
  }

  .product-image-panel {
    height: 560px;
  }

  .product-hero-details {
    padding-top: 20px;
  }

  .product-intro,
  .product-checklist {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-info-grid {
    grid-template-columns: 1fr;
  }

  .product-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-spec-grid > div:nth-child(2) {
    border-right: 0;
  }

  .product-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .product-modern {
    padding: 55px 0 70px;
  }

  .product-image-panel {
    height: 430px;
  }

  .product-image-stage {
    inset: 65px 20px 60px;
  }

  .product-image-stage img {
    width: 88%;
    height: 88%;
  }

  .product-benefits {
    grid-template-columns: 1fr;
  }

  .product-benefits > div {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .product-benefits > div:last-child {
    border-bottom: 0;
  }

  .product-hero-details h1 {
    font-size: 42px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .product-quick-details {
    grid-template-columns: 1fr;
  }

  .product-quick-details > div {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .product-quick-details > div:last-child {
    border-bottom: 0;
  }

  .product-intro,
  .product-highlights,
  .product-information,
  .product-checklist {
    padding: 60px 0;
  }

  .product-highlight-grid {
    grid-template-columns: 1fr;
  }

  .product-highlight {
    min-height: 230px;
  }

  .product-spec-grid {
    grid-template-columns: 1fr;
  }

  .product-spec-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .product-spec-grid > div:last-child {
    border-bottom: 0;
  }

  .product-checklist-items {
    grid-template-columns: 1fr;
  }

  .product-final-cta {
    align-items: flex-start;
    flex-direction: column;

    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .product-image-panel {
    height: 360px;
  }

  .product-image-footer {
    font-size: 8px;
  }

  .product-hero-details h1 {
    font-size: 36px;
  }

  .product-lead {
    font-size: 14px;
  }

  .product-price strong {
    font-size: 30px;
  }

  .purchase-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

/* =========================================================
   CART PAGE
========================================================= */

.cart-page {
  background: #f6f7f8;
  padding: 72px 0 100px;
  color: #111827;
}

.cart-page .container {
  max-width: 1320px;
}

/* =========================================================
   COMMON
========================================================= */

.cart-page-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.cart-page-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #111827;
}

/* =========================================================
   EMPTY CART
========================================================= */

.cart-empty-state {
  background: #ffffff;
  border: 1px solid #d9dde3;
}

.cart-empty-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid #d9dde3;
}

.cart-empty-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.cart-empty-content {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 460px;
}

.cart-empty-number {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d9dde3;
  font-size: 110px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: #e5e7eb;
}

.cart-empty-copy {
  align-self: center;
  max-width: 650px;
  padding: 60px 70px;
}

.cart-empty-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.cart-empty-copy h1 span {
  color: #6b7280;
}

.cart-empty-copy p {
  max-width: 560px;
  margin: 0 0 32px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

.cart-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 54px;
  padding: 0 20px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}

.cart-primary-action:hover {
  background: #000;
  color: #fff;
  gap: 42px;
}

.cart-empty-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d9dde3;
}

.cart-empty-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid #d9dde3;
}

.cart-empty-footer > div:last-child {
  border-right: 0;
}

.cart-empty-footer i {
  font-size: 18px;
}

.cart-empty-footer span {
  font-size: 12px;
  color: #6b7280;
}

/* =========================================================
   HEADER
========================================================= */

.cart-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #cfd4da;
}

.cart-header-main {
  max-width: 700px;
}

.cart-header-main h1 {
  margin: 18px 0 14px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.cart-header-main h1 span {
  color: #6b7280;
}

.cart-header-main p {
  max-width: 580px;
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

.cart-header-side {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cart-header-count {
  display: flex;
  flex-direction: column;
  padding-right: 30px;
  border-right: 1px solid #d1d5db;
}

.cart-header-count strong {
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.cart-header-count span {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #6b7280;
}

.cart-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.cart-back-link:hover {
  color: #555;
}

/* =========================================================
   MAIN GRID
========================================================= */

.cart-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
  padding-top: 36px;
}

/* =========================================================
   PRODUCTS
========================================================= */

.cart-products-area {
  min-width: 0;
}

.cart-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 18px;
  border-bottom: 2px solid #111827;
}

.cart-section-heading span:first-child {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.cart-section-heading h2 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.cart-section-count {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
}

/* =========================================================
   PRODUCT ROW
========================================================= */

.cart-product-row {
  display: grid;
  grid-template-columns: 36px 145px minmax(180px, 1fr) 120px 130px;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #d9dde3;
}

.cart-product-index {
  align-self: flex-start;
  padding-top: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
}

.cart-product-image {
  width: 145px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d9dde3;
}

.cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.cart-product-info {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-product-category {
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #6b7280;
}

.cart-product-info h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}

.cart-product-price {
  font-size: 14px;
  font-weight: 700;
}

.cart-product-price span {
  margin-left: 5px;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 500;
}

.cart-control-label {
  display: block;
  margin-bottom: 9px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #6b7280;
}

.cart-quantity-box {
  display: flex;
  width: 100%;
  height: 42px;
  border: 1px solid #cfd4da;
  background: #fff;
}

.cart-quantity-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.cart-quantity-box button {
  width: 40px;
  flex: 0 0 40px;
  border: 0;
  border-left: 1px solid #cfd4da;
  background: #f6f7f8;
  color: #111827;
  cursor: pointer;
  transition: 0.2s ease;
}

.cart-quantity-box button:hover {
  background: #111827;
  color: #fff;
}

.cart-product-total {
  text-align: right;
}

.cart-product-total strong {
  display: block;
  margin-bottom: 9px;
  font-size: 16px;
}

.cart-remove-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-remove-link:hover {
  color: #dc2626;
}

/* =========================================================
   PRODUCTS FOOTER
========================================================= */

.cart-products-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid #d9dde3;
}

.cart-footer-note {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-footer-note > i {
  font-size: 18px;
}

.cart-footer-note strong,
.cart-footer-note span {
  display: block;
}

.cart-footer-note strong {
  font-size: 12px;
}

.cart-footer-note span {
  margin-top: 3px;
  font-size: 11px;
  color: #6b7280;
}

.cart-add-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

.cart-add-product:hover {
  color: #555;
}

/* =========================================================
   BENEFITS
========================================================= */

.cart-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid #d9dde3;
  border-bottom: 1px solid #d9dde3;
}

.cart-benefit {
  display: flex;
  gap: 12px;
  padding: 22px 18px;
  border-right: 1px solid #d9dde3;
}

.cart-benefit:first-child {
  padding-left: 0;
}

.cart-benefit:last-child {
  border-right: 0;
}

.cart-benefit-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1d5db;
}

.cart-benefit strong,
.cart-benefit span {
  display: block;
}

.cart-benefit strong {
  font-size: 11px;
}

.cart-benefit span {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.5;
  color: #6b7280;
}

/* =========================================================
   SUMMARY
========================================================= */

.cart-summary-panel {
  align-self: start;
  background: #111827;
  color: #fff;
}

.cart-summary-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cart-summary-top > div:first-child span {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.cart-summary-top h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.cart-summary-number {
  font-size: 28px;
  font-weight: 700;
  color: #6b7280;
}

.cart-summary-content {
  padding: 28px;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 12px;
}

.cart-summary-line strong {
  font-weight: 600;
}

.cart-summary-muted {
  max-width: 145px;
  text-align: right;
  color: #9ca3af;
  font-size: 10px;
  line-height: 1.5;
}

.cart-summary-rule {
  height: 1px;
  margin: 25px 0;
  background: rgba(255, 255, 255, 0.15);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.cart-total-row span,
.cart-total-row small {
  display: block;
}

.cart-total-row span {
  font-size: 12px;
  font-weight: 600;
}

.cart-total-row small {
  margin-top: 5px;
  color: #9ca3af;
  font-size: 9px;
}

.cart-total-row > strong {
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.cart-checkout-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.cart-checkout-action:hover {
  background: #e5e7eb;
  color: #111827;
}

.cart-checkout-action i {
  font-size: 17px;
}

.cart-secure-message {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cart-secure-message > i {
  font-size: 15px;
  color: #d1d5db;
}

.cart-secure-message strong,
.cart-secure-message span {
  display: block;
}

.cart-secure-message strong {
  font-size: 11px;
}

.cart-secure-message span {
  margin-top: 4px;
  color: #9ca3af;
  font-size: 10px;
}

/* =========================================================
   PROGRESS
========================================================= */

.cart-progress {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cart-progress-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-progress-heading span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #9ca3af;
}

.cart-progress-heading strong {
  font-size: 9px;
  color: #9ca3af;
}

.cart-progress-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.45;
}

.cart-progress-item.active {
  opacity: 1;
}

.cart-progress-item > span {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 9px;
  font-weight: 700;
}

.cart-progress-item.active > span {
  background: #fff;
  border-color: #fff;
  color: #111827;
}

.cart-progress-item strong,
.cart-progress-item small {
  display: block;
}

.cart-progress-item strong {
  font-size: 11px;
}

.cart-progress-item small {
  margin-top: 2px;
  color: #9ca3af;
  font-size: 9px;
}

.cart-progress-line {
  width: 1px;
  height: 20px;
  margin-left: 15px;
  background: rgba(255, 255, 255, 0.18);
}

/* =========================================================
   BOTTOM CTA
========================================================= */

.cart-bottom-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 65px;
  padding: 34px 0;
  border-top: 1px solid #111827;
  border-bottom: 1px solid #111827;
}

.cart-bottom-message > div > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.cart-bottom-message h2 {
  margin: 8px 0 0;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.cart-bottom-message h2 span {
  color: #6b7280;
}

.cart-bottom-message > a {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  min-height: 48px;
  padding: 0 18px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.cart-bottom-message > a:hover {
  background: #000;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .cart-content-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .cart-product-row {
    grid-template-columns: 28px 120px minmax(150px, 1fr) 100px 110px;
    gap: 16px;
  }

  .cart-product-image {
    width: 120px;
    height: 120px;
  }

  .cart-benefits {
    grid-template-columns: 1fr;
  }

  .cart-benefit {
    border-right: 0;
    border-bottom: 1px solid #d9dde3;
  }

  .cart-benefit:last-child {
    border-bottom: 0;
  }

  .cart-benefit:first-child {
    padding-left: 18px;
  }
}

@media (max-width: 991px) {
  .cart-page {
    padding: 55px 0 75px;
  }

  .cart-page-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-header-side {
    width: 100%;
    justify-content: space-between;
  }

  .cart-content-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary-panel {
    order: -1;
  }

  .cart-product-row {
    grid-template-columns: 28px 130px 1fr;
  }

  .cart-product-quantity,
  .cart-product-total {
    grid-column: 3;
  }

  .cart-product-quantity {
    grid-row: 2;
  }

  .cart-product-total {
    grid-row: 2;
    justify-self: end;
  }
}

@media (max-width: 767px) {
  .cart-page {
    padding: 40px 0 60px;
  }

  .cart-page-header {
    padding-bottom: 35px;
  }

  .cart-header-main h1 {
    font-size: 46px;
  }

  .cart-header-side {
    align-items: flex-start;
  }

  .cart-content-grid {
    padding-top: 28px;
  }

  .cart-product-row {
    grid-template-columns: 24px 95px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 0;
  }

  .cart-product-image {
    width: 95px;
    height: 95px;
  }

  .cart-product-info h3 {
    font-size: 14px;
  }

  .cart-product-quantity {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .cart-product-total {
    grid-column: 3;
    grid-row: 2;
  }

  .cart-products-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-empty-content {
    grid-template-columns: 1fr;
  }

  .cart-empty-number {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid #d9dde3;
    font-size: 75px;
  }

  .cart-empty-copy {
    padding: 45px 25px;
  }

  .cart-empty-copy h1 {
    font-size: 48px;
  }

  .cart-empty-footer {
    grid-template-columns: 1fr;
  }

  .cart-empty-footer > div {
    border-right: 0;
    border-bottom: 1px solid #d9dde3;
  }

  .cart-empty-footer > div:last-child {
    border-bottom: 0;
  }

  .cart-bottom-message {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 45px;
  }
}

@media (max-width: 480px) {
  .cart-header-main h1 {
    font-size: 40px;
  }

  .cart-header-side {
    flex-direction: column;
    gap: 20px;
  }

  .cart-header-count {
    padding-right: 0;
    padding-bottom: 15px;
    border-right: 0;
    border-bottom: 1px solid #d1d5db;
  }

  .cart-product-row {
    grid-template-columns: 20px 80px 1fr;
  }

  .cart-product-image {
    width: 80px;
    height: 80px;
  }

  .cart-product-category {
    font-size: 8px;
  }

  .cart-product-info h3 {
    font-size: 13px;
  }

  .cart-product-price {
    font-size: 12px;
  }

  .cart-product-quantity,
  .cart-product-total {
    grid-column: 2 / 4;
  }

  .cart-product-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: left;
  }

  .cart-product-total .cart-control-label {
    margin: 0;
  }

  .cart-product-total strong {
    margin: 0;
  }

  .cart-product-total form {
    margin-left: auto;
  }

  .cart-summary-content {
    padding: 22px;
  }
}

/* =========================================================
   CHECKOUT PAGE
========================================================= */

.checkout-page {
  padding: 72px 0 90px;
  background: #f5f6f7;
  color: #111827;
}

.checkout-page .container {
  max-width: 1320px;
}

/* =========================================================
   HEADER
========================================================= */

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid #cfd4da;
}

.checkout-header-content {
  max-width: 650px;
}

.checkout-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  color: #6b7280;
}

.checkout-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #111827;
}

.checkout-header h1 {
  margin: 18px 0 16px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.checkout-header h1 span {
  color: #6b7280;
}

.checkout-header p {
  max-width: 570px;
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   STEPPER
========================================================= */

.checkout-stepper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
}

.checkout-step.active {
  opacity: 1;
}

.checkout-step > span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd4da;
  font-size: 10px;
  font-weight: 700;
}

.checkout-step.active > span {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.checkout-step strong,
.checkout-step small {
  display: block;
}

.checkout-step strong {
  font-size: 11px;
}

.checkout-step small {
  margin-top: 3px;
  font-size: 9px;
  color: #6b7280;
}

.checkout-step-line {
  width: 42px;
  height: 1px;
  margin: 0 12px;
  background: #d1d5db;
}

/* =========================================================
   ERROR
========================================================= */

.checkout-error {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid #e5b8b8;
  background: #fff7f7;
  color: #7f1d1d;
}

.checkout-error-icon {
  font-size: 18px;
}

.checkout-error strong {
  font-size: 12px;
}

.checkout-error p {
  margin: 5px 0 0;
  font-size: 11px;
}

/* =========================================================
   MAIN GRID
========================================================= */

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 42px;
  padding-top: 40px;
}

/* =========================================================
   FORM
========================================================= */

.checkout-main {
  min-width: 0;
}

.checkout-section {
  padding: 32px 0;
  border-bottom: 1px solid #d4d8dd;
}

.checkout-section:first-child {
  padding-top: 0;
}

.checkout-section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.checkout-section-number {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.checkout-section-heading span {
  display: block;
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.checkout-section-heading h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

/* =========================================================
   FIELDS
========================================================= */

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

.checkout-field {
  min-width: 0;
}

.checkout-field-wide {
  grid-column: 1 / -1;
}

.checkout-field label {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 700;
  color: #374151;
}

.checkout-field label em {
  color: #dc2626;
  font-style: normal;
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  border: 1px solid #cfd4da;
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: #111827;
  font-family: inherit;
  font-size: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.checkout-field input {
  height: 52px;
  padding: 0 15px;
}

.checkout-field textarea {
  min-height: 125px;
  padding: 14px 15px;
  resize: vertical;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
  color: #9ca3af;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px #111827;
}

/* =========================================================
   PAYMENT METHODS
========================================================= */

.payment-method-list {
  display: grid;
  gap: 12px;
}

.payment-method {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 18px 42px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #cfd4da;
  border-radius: 0;
  background: #fff;
  color: #111827;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
}

.payment-method:hover {
  border-color: #9ca3af;
}

.payment-method.active {
  border-color: #111827;
  box-shadow: inset 3px 0 0 #111827;
}

.payment-radio {
  width: 15px;
  height: 15px;
  border: 1px solid #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-method.active .payment-radio {
  border-color: #111827;
}

.payment-method.active .payment-radio::after {
  content: "";
  width: 7px;
  height: 7px;
  background: #111827;
}

.payment-method-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f2f4;
  font-size: 18px;
}

.paypal-icon {
  color: #003087;
}

.payment-method-info strong,
.payment-method-info small {
  display: block;
}

.payment-method-info strong {
  font-size: 12px;
}

.payment-method-info small {
  margin-top: 4px;
  color: #6b7280;
  font-size: 10px;
}

.payment-selected {
  display: none;
  font-size: 17px;
}

.payment-method.active .payment-selected {
  display: block;
}

/* =========================================================
   PAYPAL
========================================================= */

.paypal-payment-area {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #cfd4da;
  background: #fff;
}

.paypal-payment-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.paypal-payment-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f2f4;
  color: #003087;
  font-size: 17px;
}

.paypal-payment-header strong,
.paypal-payment-header span {
  display: block;
}

.paypal-payment-header strong {
  font-size: 12px;
}

.paypal-payment-header span {
  margin-top: 4px;
  color: #6b7280;
  font-size: 10px;
}

/* =========================================================
   FORM NOTE
========================================================= */

.checkout-form-note {
  display: flex;
  gap: 13px;
  margin-top: 25px;
  padding: 18px;
  border-left: 2px solid #111827;
  background: #eceef0;
}

.checkout-form-note > i {
  font-size: 16px;
}

.checkout-form-note strong,
.checkout-form-note span {
  display: block;
}

.checkout-form-note strong {
  font-size: 11px;
}

.checkout-form-note span {
  margin-top: 4px;
  color: #6b7280;
  font-size: 10px;
  line-height: 1.5;
}

/* =========================================================
   SUMMARY
========================================================= */

.checkout-summary {
  align-self: start;
  background: #111827;
  color: #fff;
}

.summary-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.summary-heading > div span {
  display: block;
  margin-bottom: 7px;
  color: #9ca3af;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.summary-heading h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.summary-item-count {
  color: #9ca3af;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* =========================================================
   SUMMARY PRODUCTS
========================================================= */

.summary-products {
  padding: 8px 28px;
}

.summary-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-product:last-child {
  border-bottom: 0;
}

.summary-product-image {
  position: relative;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.summary-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.summary-product-image > span {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111827;
  font-size: 9px;
  font-weight: 700;
}

.summary-product-info {
  min-width: 0;
}

.summary-product-info strong,
.summary-product-info small {
  display: block;
}

.summary-product-info strong {
  overflow: hidden;
  font-size: 11px;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.summary-product-info small {
  margin-top: 5px;
  color: #9ca3af;
  font-size: 9px;
}

.summary-product-total {
  font-size: 11px;
  white-space: nowrap;
}

/* =========================================================
   TOTALS
========================================================= */

.summary-totals {
  margin: 0 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
  font-size: 11px;
}

.summary-line strong {
  font-weight: 600;
}

.summary-line small {
  max-width: 140px;
  color: #9ca3af;
  font-size: 9px;
  text-align: right;
}

.summary-divider {
  height: 1px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.15);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.summary-total span,
.summary-total small {
  display: block;
}

.summary-total span {
  font-size: 12px;
  font-weight: 700;
}

.summary-total small {
  margin-top: 5px;
  color: #9ca3af;
  font-size: 9px;
}

.summary-total > strong {
  font-size: 25px;
  line-height: 1;
  white-space: nowrap;
}

/* =========================================================
   PLACE ORDER
========================================================= */

.place-order-button {
  width: calc(100% - 56px);
  min-height: 56px;
  margin: 25px 28px 0;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #111827;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.place-order-button:hover {
  background: #e5e7eb;
}

.place-order-button i {
  font-size: 17px;
}

/* =========================================================
   TRUST
========================================================= */

.checkout-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 25px 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.checkout-trust div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 17px 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.checkout-trust div:last-child {
  border-right: 0;
}

.checkout-trust i {
  font-size: 14px;
  color: #d1d5db;
}

.checkout-trust span {
  color: #9ca3af;
  font-size: 8px;
  line-height: 1.3;
}

/* =========================================================
   SUMMARY NOTE
========================================================= */

.summary-note {
  display: flex;
  gap: 10px;
  margin: 20px 28px 26px;
  color: #9ca3af;
}

.summary-note i {
  font-size: 13px;
}

.summary-note span {
  font-size: 9px;
  line-height: 1.6;
}

/* =========================================================
   CONFIDENCE BAR
========================================================= */

.checkout-confidence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid #111827;
  border-bottom: 1px solid #111827;
}

.checkout-confidence > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 13px;
  padding: 25px 28px;
  border-right: 1px solid #d1d5db;
}

.checkout-confidence > div:first-child {
  padding-left: 0;
}

.checkout-confidence > div:last-child {
  border-right: 0;
}

.checkout-confidence span {
  grid-row: span 2;
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
}

.checkout-confidence strong {
  font-size: 11px;
}

.checkout-confidence small {
  margin-top: 4px;
  color: #6b7280;
  font-size: 9px;
  line-height: 1.5;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .checkout-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
  }

  .checkout-header {
    gap: 35px;
  }

  .checkout-stepper {
    transform: scale(0.92);
    transform-origin: right center;
  }
}

@media (max-width: 991px) {
  .checkout-page {
    padding: 55px 0 70px;
  }

  .checkout-header {
    display: block;
  }

  .checkout-stepper {
    margin-top: 35px;
    justify-content: flex-start;
    transform: none;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    order: -1;
  }
}

@media (max-width: 767px) {
  .checkout-page {
    padding: 40px 0 60px;
  }

  .checkout-header h1 {
    font-size: 48px;
  }

  .checkout-stepper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .checkout-step {
    flex-shrink: 0;
  }

  .checkout-step-line {
    width: 25px;
    margin: 0 8px;
  }

  .checkout-fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .checkout-field-wide {
    grid-column: auto;
  }

  .checkout-section-heading h2 {
    font-size: 19px;
  }

  .checkout-confidence {
    grid-template-columns: 1fr;
  }

  .checkout-confidence > div,
  .checkout-confidence > div:first-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid #d1d5db;
  }

  .checkout-confidence > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .checkout-header h1 {
    font-size: 42px;
  }

  .checkout-stepper {
    align-items: flex-start;
  }

  .checkout-step > div {
    display: none;
  }

  .checkout-step > span {
    width: 38px;
    height: 38px;
  }

  .checkout-section-heading {
    align-items: flex-start;
  }

  .checkout-section-number {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .payment-method {
    grid-template-columns: 16px 38px minmax(0, 1fr) 18px;
    gap: 10px;
    padding: 15px;
  }

  .payment-method-icon {
    width: 38px;
    height: 38px;
  }

  .summary-heading,
  .summary-products {
    padding-left: 20px;
    padding-right: 20px;
  }

  .summary-totals {
    margin-left: 20px;
    margin-right: 20px;
  }

  .place-order-button {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .checkout-trust {
    margin-left: 20px;
    margin-right: 20px;
  }

  .summary-note {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* =========================================================
   ORDER CONFIRMATION MODAL
========================================================= */

body.order-confirmation-open {
  overflow: hidden;
}

.order-confirmation-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: rgba(17, 24, 39, 0.78);
  backdrop-filter: blur(4px);
  animation: confirmationOverlayIn 0.25s ease;
}

.order-confirmation-overlay.closing {
  animation: confirmationOverlayOut 0.25s ease forwards;
}

.order-confirmation-modal {
  position: relative;
  width: min(620px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  color: #111827;
  border: 1px solid #d1d5db;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  animation: confirmationModalIn 0.3s ease;
}

.order-confirmation-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  cursor: pointer;
  z-index: 2;
}

.order-confirmation-close:hover {
  background: #111827;
  color: #fff;
}

/* SUCCESS */

.order-confirmation-success {
  padding: 48px 45px 30px;
  text-align: center;
  border-bottom: 1px solid #d9dde3;
}

.order-confirmation-check {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #fff;
  font-size: 27px;
}

.order-confirmation-success > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  color: #6b7280;
}

.order-confirmation-success h2 {
  margin: 12px 0 10px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.order-confirmation-success p {
  max-width: 470px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
}

/* REFERENCE */

.order-confirmation-reference {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: #f5f6f7;
  border-bottom: 1px solid #d9dde3;
}

.order-confirmation-reference span,
.order-confirmation-reference strong {
  font-size: 11px;
}

.order-confirmation-reference span {
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #6b7280;
}

.order-confirmation-reference strong {
  font-size: 15px;
}

/* DETAILS */

.order-confirmation-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid #d9dde3;
}

.order-confirmation-details > div {
  padding: 20px 25px;
  border-right: 1px solid #d9dde3;
  border-bottom: 1px solid #d9dde3;
}

.order-confirmation-details > div:nth-child(2n) {
  border-right: 0;
}

.order-confirmation-details > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.order-confirmation-details span,
.order-confirmation-details strong {
  display: block;
}

.order-confirmation-details span {
  margin-bottom: 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #6b7280;
}

.order-confirmation-details strong {
  font-size: 12px;
}

/* ADDRESS */

.order-confirmation-address {
  padding: 22px 28px;
  border-bottom: 1px solid #d9dde3;
}

.order-confirmation-address > span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #6b7280;
}

.order-confirmation-address p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

/* ACTIONS */

.order-confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 25px 28px 28px;
}

.order-confirmation-primary,
.order-confirmation-secondary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

.order-confirmation-primary {
  background: #111827;
  color: #fff;
}

.order-confirmation-primary:hover {
  background: #000;
  color: #fff;
}

.order-confirmation-secondary {
  border: 1px solid #cfd4da;
  color: #111827;
}

.order-confirmation-secondary:hover {
  background: #f3f4f6;
  color: #111827;
}

/* ANIMATION */

@keyframes confirmationOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes confirmationOverlayOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes confirmationModalIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MOBILE */

@media (max-width: 575px) {
  .order-confirmation-overlay {
    padding: 15px;
  }

  .order-confirmation-success {
    padding: 40px 25px 25px;
  }

  .order-confirmation-success h2 {
    font-size: 29px;
  }

  .order-confirmation-reference {
    padding: 16px 20px;
  }

  .order-confirmation-details {
    grid-template-columns: 1fr;
  }

  .order-confirmation-details > div,
  .order-confirmation-details > div:nth-child(2n),
  .order-confirmation-details > div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #d9dde3;
  }

  .order-confirmation-details > div:last-child {
    border-bottom: 0;
  }

  .order-confirmation-address {
    padding: 20px;
  }

  .order-confirmation-actions {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* =========================================================
   ACCOUNT LOGIN
========================================================= */

.account-login {
  background: #ffffff;
  padding: 90px 0 100px;
}

/* =========================================================
   HEADER
========================================================= */

.account-login-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--color-border-light);
}

.account-login-heading {
  max-width: 720px;
}

.account-login-kicker,
.account-panel-label,
.account-form-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-login-kicker span {
  width: 28px;
  height: 1px;
  background: var(--color-primary);
}

.account-login-heading h1 {
  margin: 16px 0 18px;
  color: var(--color-primary);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.account-login-heading h1 strong {
  font-weight: 800;
}

.account-login-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.account-login-header-note {
  max-width: 220px;
  padding-left: 25px;
  border-left: 1px solid var(--color-border);
}

.account-login-header-note span,
.account-login-header-note strong {
  display: block;
}

.account-login-header-note span {
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 13px;
}

.account-login-header-note strong {
  color: var(--color-primary);
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.account-login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.8fr);
  margin-top: 45px;
  border: 1px solid var(--color-border);
}

/* =========================================================
   LEFT INTRO
========================================================= */

.account-login-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 55px;
  background: #111827;
  color: #ffffff;
  overflow: hidden;
}

.account-login-intro::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
}

.account-login-intro-top {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.account-panel-label {
  color: rgba(255, 255, 255, 0.55);
}

.account-login-intro h2 {
  margin: 20px 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.account-login-intro h2 strong {
  display: block;
  font-weight: 800;
}

.account-login-intro-top > p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================================================
   FEATURES
========================================================= */

.account-feature-list {
  position: relative;
  z-index: 1;
  margin-top: 48px;
}

.account-feature {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: padding 0.25s ease;
}

.account-feature:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.account-feature:hover {
  padding-left: 8px;
}

.account-feature-number {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.account-feature-content h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.account-feature-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.5;
}

.account-feature > i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  transition: transform 0.25s ease;
}

.account-feature:hover > i {
  transform: translateX(4px);
}

/* =========================================================
   INTRO FOOTER
========================================================= */

.account-login-intro-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 40px;
}

.account-footer-line {
  width: 55px;
  height: 1px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.35);
}

.account-login-intro-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.account-login-intro-footer strong {
  color: #ffffff;
}

/* =========================================================
   FORM PANEL
========================================================= */

.account-login-form-panel {
  padding: 55px;
  background: #ffffff;
}

.account-form-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.account-form-kicker {
  margin-bottom: 13px;
}

.account-form-top h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.account-form-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 16px;
}

.account-form-description {
  margin: 15px 0 35px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   FORM
========================================================= */

.account-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}

.account-field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.account-field-label-row label {
  margin-bottom: 9px;
}

.account-field-label-row a {
  margin-bottom: 9px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.account-field-label-row a:hover {
  color: var(--color-primary);
}

.account-input {
  position: relative;
}

.account-input > i {
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--color-muted);
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

.account-input input {
  width: 100%;
  height: 54px;
  padding: 0 48px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  outline: none;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.account-input input::placeholder {
  color: #9ca3af;
}

.account-input input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.account-password-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
}

.account-password-toggle:hover {
  color: var(--color-primary);
}

/* =========================================================
   OPTIONS
========================================================= */

.account-form-options {
  margin-top: -3px;
}

.account-checkbox {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  color: var(--color-muted) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  cursor: pointer;
}

.account-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.account-checkbox span {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1px solid var(--color-border-dark);
  background: #ffffff;
}

.account-checkbox input:checked + span {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.account-checkbox input:checked + span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* =========================================================
   SUBMIT
========================================================= */

.account-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 20px 0 22px;
  border: 1px solid var(--color-primary);
  border-radius: 0;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.account-submit i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.account-submit:hover {
  border-color: #000000;
  background: #000000;
}

.account-submit:hover i {
  transform: translateX(5px);
}

/* =========================================================
   DIVIDER
========================================================= */

.account-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 36px 0 25px;
}

.account-divider::before,
.account-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border-light);
}

.account-divider span {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* =========================================================
   REGISTER
========================================================= */

.account-register {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px;
  border: 1px solid var(--color-border-light);
  background: #f8f9fa;
}

.account-register strong,
.account-register span {
  display: block;
}

.account-register strong {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 13px;
}

.account-register span {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}

.account-register a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.account-register a i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.account-register a:hover i {
  transform: translateX(4px);
}

/* =========================================================
   SECURITY
========================================================= */

.account-security {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.account-security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
}

.account-security-item + .account-security-item {
  padding-left: 20px;
  border-left: 1px solid var(--color-border-light);
}

.account-security-item > i {
  color: var(--color-primary);
  font-size: 14px;
}

.account-security-item strong,
.account-security-item span {
  display: block;
}

.account-security-item strong {
  margin-bottom: 3px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
}

.account-security-item span {
  color: var(--color-muted);
  font-size: 10px;
}

/* =========================================================
   HELP BAR
========================================================= */

.account-login-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
  padding: 24px 28px;
  border: 1px solid var(--color-border);
  background: #ffffff;
}

.account-help-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.account-help-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
}

.account-help-left strong,
.account-help-left span {
  display: block;
}

.account-help-left strong {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 13px;
}

.account-help-left span {
  color: var(--color-muted);
  font-size: 12px;
}

.account-help-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.account-help-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.account-help-actions a i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.account-help-actions a:hover i {
  transform: translateX(4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .account-login-layout {
    grid-template-columns: 1fr;
  }

  .account-login-intro {
    min-height: auto;
  }

  .account-feature-list {
    max-width: 750px;
  }
}

@media (max-width: 767px) {
  .account-login {
    padding: 60px 0 70px;
  }

  .account-login-header {
    display: block;
    padding-bottom: 30px;
  }

  .account-login-heading h1 {
    font-size: 44px;
  }

  .account-login-header-note {
    display: none;
  }

  .account-login-layout {
    margin-top: 30px;
  }

  .account-login-intro,
  .account-login-form-panel {
    padding: 32px 24px;
  }

  .account-login-intro h2 {
    font-size: 34px;
  }

  .account-feature-list {
    margin-top: 35px;
  }

  .account-feature {
    grid-template-columns: 35px minmax(0, 1fr) 15px;
    gap: 12px;
  }

  .account-feature-content p {
    font-size: 12px;
  }

  .account-login-intro-footer {
    margin-top: 35px;
  }

  .account-form-top h2 {
    font-size: 25px;
  }

  .account-register {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-security {
    grid-template-columns: 1fr;
  }

  .account-security-item + .account-security-item {
    padding-left: 0;
    border-top: 1px solid var(--color-border-light);
    border-left: 0;
  }

  .account-login-help {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .account-help-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .account-login-heading h1 {
    font-size: 38px;
  }

  .account-login-intro,
  .account-login-form-panel {
    padding: 28px 18px;
  }

  .account-login-intro h2 {
    font-size: 30px;
  }

  .account-feature {
    padding: 17px 0;
  }

  .account-feature-content h3 {
    font-size: 14px;
  }

  .account-form-top {
    align-items: center;
  }

  .account-form-icon {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   CREATE ACCOUNT
========================================================= */

.account-register-page {
  padding: 90px 0 100px;
  background: #ffffff;
}

/* =========================================================
   HEADER
========================================================= */

.account-register-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--color-border-light);
}

.account-register-heading {
  max-width: 720px;
}

.account-register-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.account-register-kicker span {
  width: 28px;
  height: 1px;
  background: var(--color-primary);
}

.account-register-heading h1 {
  margin: 16px 0 18px;
  color: var(--color-primary);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.account-register-heading h1 strong {
  font-weight: 800;
}

.account-register-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.account-register-header-note {
  max-width: 230px;
  padding-left: 25px;
  border-left: 1px solid var(--color-border);
}

.account-register-header-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 13px;
}

.account-register-header-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.account-register-header-note i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.account-register-header-note a:hover i {
  transform: translateX(4px);
}

/* =========================================================
   MAIN
========================================================= */

.account-register-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.8fr);
  margin-top: 45px;
  border: 1px solid var(--color-border);
}

/* =========================================================
   LEFT
========================================================= */

.account-register-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 55px;
  overflow: hidden;
  background: #111827;
  color: #ffffff;
}

.account-register-intro::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
}

.account-register-intro-top,
.account-register-benefits,
.account-register-intro-footer {
  position: relative;
  z-index: 1;
}

.account-panel-label {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.account-register-intro h2 {
  margin: 20px 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.account-register-intro h2 strong {
  display: block;
  font-weight: 800;
}

.account-register-intro-top p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

/* =========================================================
   BENEFITS
========================================================= */

.account-register-benefits {
  margin-top: 48px;
  max-width: 720px;
}

.register-benefit {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: padding 0.25s ease;
}

.register-benefit:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.register-benefit:hover {
  padding-left: 8px;
}

.register-benefit-number {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 700;
}

.register-benefit-content h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.register-benefit-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.5;
}

.register-benefit > i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  transition: transform 0.25s ease;
}

.register-benefit:hover > i {
  transform: translateX(4px);
}

/* =========================================================
   INTRO FOOTER
========================================================= */

.account-register-intro-footer {
  margin-top: auto;
  padding-top: 40px;
}

.account-footer-line {
  width: 55px;
  height: 1px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.35);
}

.account-register-intro-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.account-register-intro-footer strong {
  color: #ffffff;
}

/* =========================================================
   FORM PANEL
========================================================= */

.account-register-form-panel {
  padding: 55px;
  background: #ffffff;
}

.register-form-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.account-form-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.register-form-top h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.register-form-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
}

.register-form-description {
  margin: 15px 0 35px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   FORM
========================================================= */

.account-register-form {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.register-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}

.register-input {
  position: relative;
}

.register-input > i {
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--color-muted);
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}

.register-input input {
  width: 100%;
  height: 54px;
  padding: 0 48px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  outline: none;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.register-input input::placeholder {
  color: #9ca3af;
}

.register-input input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.register-password-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
}

.register-password-toggle:hover {
  color: var(--color-primary);
}

/* =========================================================
   PASSWORD NOTE
========================================================= */

.register-password-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  color: var(--color-muted);
  font-size: 11px;
}

.register-password-note i {
  font-size: 10px;
}

/* =========================================================
   TERMS
========================================================= */

.register-terms {
  margin-top: -2px;
}

.register-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 0 !important;
  color: var(--color-muted) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.6;
  cursor: pointer;
}

.register-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.register-checkbox > span {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 1px;
  border: 1px solid var(--color-border-dark);
  background: #ffffff;
}

.register-checkbox input:checked + span {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.register-checkbox input:checked + span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.register-checkbox a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================================
   SUBMIT
========================================================= */

.register-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 20px 0 22px;
  border: 1px solid var(--color-primary);
  border-radius: 0;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
}

.register-submit i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.register-submit:hover {
  background: #000000;
}

.register-submit:hover i {
  transform: translateX(5px);
}

/* =========================================================
   LOGIN LINK
========================================================= */

.register-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--color-border-light);
}

.register-login span {
  color: var(--color-muted);
  font-size: 12px;
}

.register-login a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.register-login a i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.register-login a:hover i {
  transform: translateX(4px);
}

/* =========================================================
   SECURITY
========================================================= */

.register-security {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 25px;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.register-security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
}

.register-security-item + .register-security-item {
  padding-left: 20px;
  border-left: 1px solid var(--color-border-light);
}

.register-security-icon {
  color: var(--color-primary);
  font-size: 14px;
}

.register-security-item strong,
.register-security-item span {
  display: block;
}

.register-security-item strong {
  margin-bottom: 3px;
  color: var(--color-primary);
  font-size: 11px;
}

.register-security-item span {
  color: var(--color-muted);
  font-size: 10px;
}

/* =========================================================
   HELP
========================================================= */

.account-register-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
  padding: 24px 28px;
  border: 1px solid var(--color-border);
  background: #ffffff;
}

.register-help-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.register-help-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
}

.register-help-left strong,
.register-help-left span {
  display: block;
}

.register-help-left strong {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 13px;
}

.register-help-left span {
  color: var(--color-muted);
  font-size: 12px;
}

.register-help-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.register-help-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.register-help-actions a i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.register-help-actions a:hover i {
  transform: translateX(4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .account-register-layout {
    grid-template-columns: 1fr;
  }

  .account-register-intro {
    min-height: auto;
  }

  .account-register-benefits {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .account-register-page {
    padding: 60px 0 70px;
  }

  .account-register-header {
    display: block;
    padding-bottom: 30px;
  }

  .account-register-heading h1 {
    font-size: 44px;
  }

  .account-register-header-note {
    display: none;
  }

  .account-register-layout {
    margin-top: 30px;
  }

  .account-register-intro,
  .account-register-form-panel {
    padding: 32px 24px;
  }

  .account-register-intro h2 {
    font-size: 34px;
  }

  .account-register-benefits {
    margin-top: 35px;
  }

  .register-benefit {
    grid-template-columns: 35px minmax(0, 1fr) 15px;
    gap: 12px;
  }

  .register-benefit-content p {
    font-size: 12px;
  }

  .account-register-intro-footer {
    margin-top: 35px;
  }

  .register-form-top h2 {
    font-size: 25px;
  }

  .register-security {
    grid-template-columns: 1fr;
  }

  .register-security-item + .register-security-item {
    padding-left: 0;
    border-top: 1px solid var(--color-border-light);
    border-left: 0;
  }

  .account-register-help {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .register-help-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .account-register-heading h1 {
    font-size: 38px;
  }

  .account-register-intro,
  .account-register-form-panel {
    padding: 28px 18px;
  }

  .account-register-intro h2 {
    font-size: 30px;
  }

  .register-form-top {
    align-items: center;
  }

  .register-form-icon {
    width: 40px;
    height: 40px;
  }

  .register-login {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================================================
   CUSTOMER DASHBOARD
========================================================= */

.customer-dashboard {
  padding: 85px 0 100px;
  background: #ffffff;
}

/* =========================================================
   HEADER
========================================================= */

.customer-dashboard-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border-light);
}

.dashboard-heading {
  max-width: 760px;
}

.dashboard-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.dashboard-eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--color-primary);
}

.dashboard-heading h1 {
  margin: 16px 0 15px;
  color: var(--color-primary);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.dashboard-heading h1 strong {
  font-weight: 800;
}

.dashboard-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.dashboard-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-track-link,
.dashboard-logout {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dashboard-track-link:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
}

.dashboard-logout:hover {
  border-color: #dc2626;
  color: #dc2626;
}

/* =========================================================
   LAYOUT
========================================================= */

.customer-dashboard-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 45px;
  margin-top: 45px;
}

/* =========================================================
   SIDEBAR
========================================================= */

.customer-sidebar {
  align-self: start;
  border-right: 1px solid var(--color-border-light);
  padding-right: 30px;
}

.customer-profile {
  display: flex;
  align-items: center;
  gap: 13px;
}

.customer-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.customer-profile-details {
  min-width: 0;
}

.customer-profile-details strong,
.customer-profile-details span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-profile-details strong {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 13px;
}

.customer-profile-details span {
  color: var(--color-muted);
  font-size: 10px;
}

.sidebar-divider {
  height: 1px;
  margin: 28px 0;
  background: var(--color-border-light);
}

.customer-navigation-label {
  display: block;
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.customer-navigation a {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 15px;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 12px;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.customer-navigation a i:first-child {
  font-size: 14px;
}

.customer-navigation a i:last-child {
  font-size: 10px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.customer-navigation a:hover,
.customer-navigation a.active {
  background: #f3f4f6;
  color: var(--color-primary);
}

.customer-navigation a.active {
  border-left: 2px solid var(--color-primary);
}

.customer-navigation a:hover i:last-child,
.customer-navigation a.active i:last-child {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-navigation-divider {
  height: 1px;
  margin: 18px 0;
  background: var(--color-border-light);
}

.customer-navigation a.navigation-logout:hover {
  background: #fef2f2;
  color: #dc2626;
}

.customer-navigation a.navigation-logout {
  grid-template-columns: 18px 1fr;
}

.sidebar-help {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border-light);
}

.sidebar-help span,
.sidebar-help strong {
  display: block;
}

.sidebar-help span {
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sidebar-help strong {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 13px;
}

.sidebar-help a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.sidebar-help a i {
  font-size: 10px;
}

/* =========================================================
   MAIN
========================================================= */

.customer-dashboard-main {
  min-width: 0;
}

.dashboard-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.dashboard-section-heading > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.dashboard-section-heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* =========================================================
   OVERVIEW
========================================================= */

.dashboard-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.dashboard-overview-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 125px;
  padding: 20px;
  color: var(--color-primary);
  text-decoration: none;
  transition: background 0.2s ease;
}

.dashboard-overview-item + .dashboard-overview-item {
  border-left: 1px solid var(--color-border);
}

a.dashboard-overview-item:hover {
  background: #f8f9fa;
}

.overview-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 15px;
}

.overview-item-content {
  min-width: 0;
}

.overview-item-content span,
.overview-item-content strong,
.overview-item-content small {
  display: block;
}

.overview-item-content span {
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.overview-item-content strong {
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 800;
}

.overview-item-content small {
  color: var(--color-muted);
  font-size: 10px;
}

.overview-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  opacity: 0.4;
}

.overview-status {
  margin-left: auto;
  color: #15803d;
  font-size: 17px;
}

/* =========================================================
   INFORMATION
========================================================= */

.dashboard-information-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 45px;
}

.dashboard-panel {
  border: 1px solid var(--color-border);
  background: #ffffff;
}

.dashboard-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px;
  border-bottom: 1px solid var(--color-border-light);
}

.dashboard-panel-header > div:first-child > span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.dashboard-panel-header h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 800;
}

.dashboard-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 14px;
}

.profile-details {
  padding: 5px 25px;
}

.profile-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
}

.profile-detail-row + .profile-detail-row {
  border-top: 1px solid var(--color-border-light);
}

.profile-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 12px;
}

.profile-detail-row span,
.profile-detail-row strong {
  display: block;
}

.profile-detail-row span {
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.profile-detail-row strong {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}

.panel-bottom-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
  border-top: 1px solid var(--color-border-light);
  background: #f8f9fa;
  color: var(--color-muted);
  font-size: 10px;
}

.panel-bottom-note i {
  color: var(--color-primary);
}

/* =========================================================
   SECURITY
========================================================= */

.security-status {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 22px 25px;
  padding: 15px;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
}

.security-status-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #15803d;
  color: #ffffff;
  font-size: 13px;
}

.security-status strong,
.security-status span {
  display: block;
}

.security-status strong {
  margin-bottom: 3px;
  color: #166534;
  font-size: 12px;
}

.security-status span {
  color: #4b5563;
  font-size: 10px;
}

.security-check-list {
  margin: 0 25px 25px;
  border-top: 1px solid var(--color-border-light);
}

.security-check-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 43px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-secondary);
  font-size: 11px;
}

.security-check-list i {
  color: #15803d;
  font-size: 13px;
}

/* =========================================================
   QUICK ACTIONS
========================================================= */

.dashboard-actions {
  margin-top: 50px;
}

.dashboard-action-list {
  border-top: 1px solid var(--color-border);
}

.dashboard-action-row {
  display: grid;
  grid-template-columns: 35px 45px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 18px;
  min-height: 90px;
  padding: 0 5px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary);
  text-decoration: none;
  transition:
    padding 0.25s ease,
    background 0.25s ease;
}

.dashboard-action-row:hover {
  padding-left: 15px;
  background: #f8f9fa;
}

.action-row-number {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
}

.action-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--color-border);
  font-size: 14px;
}

.action-row-content strong,
.action-row-content span {
  display: block;
}

.action-row-content strong {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 800;
}

.action-row-content span {
  color: var(--color-muted);
  font-size: 11px;
}

.action-row-arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.dashboard-action-row:hover .action-row-arrow {
  transform: translateX(5px);
}

/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.dashboard-message {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
  padding: 25px;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
}

.dashboard-message-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
}

.dashboard-message-content > span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.dashboard-message-content h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
}

.dashboard-message-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.dashboard-message > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dashboard-message > a:hover {
  background: #ffffff;
  color: var(--color-primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .customer-dashboard-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 30px;
  }

  .customer-sidebar {
    padding-right: 20px;
  }

  .dashboard-overview-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-overview-item + .dashboard-overview-item {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 991px) {
  .customer-dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-dashboard-layout {
    grid-template-columns: 1fr;
  }

  .customer-sidebar {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 25px;
  }

  .customer-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .customer-navigation-label,
  .sidebar-navigation-divider,
  .sidebar-help {
    display: none;
  }

  .customer-navigation a {
    min-height: 42px;
    grid-template-columns: 18px auto;
    padding: 0 12px;
  }

  .customer-navigation a i:last-child {
    display: none;
  }

  .dashboard-information-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .customer-dashboard {
    padding: 60px 0 70px;
  }

  .dashboard-heading h1 {
    font-size: 43px;
  }

  .dashboard-header-actions {
    width: 100%;
  }

  .dashboard-track-link,
  .dashboard-logout {
    flex: 1;
    justify-content: center;
  }

  .customer-dashboard-layout {
    margin-top: 30px;
  }

  .customer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-section-heading h2 {
    font-size: 22px;
  }

  .dashboard-message {
    grid-template-columns: 1fr;
  }

  .dashboard-message-icon {
    width: 44px;
    height: 44px;
  }

  .dashboard-message > a {
    width: max-content;
  }
}

@media (max-width: 480px) {
  .customer-dashboard-header {
    padding-bottom: 30px;
  }

  .dashboard-heading h1 {
    font-size: 37px;
  }

  .dashboard-header-actions {
    flex-direction: column;
  }

  .dashboard-track-link,
  .dashboard-logout {
    width: 100%;
  }

  .customer-navigation {
    grid-template-columns: 1fr;
  }

  .dashboard-overview-item {
    padding: 18px 15px;
  }

  .dashboard-panel-header {
    padding: 20px;
  }

  .profile-details {
    padding: 5px 20px;
  }

  .panel-bottom-note {
    padding: 15px 20px;
  }

  .security-status {
    margin-left: 20px;
    margin-right: 20px;
  }

  .security-check-list {
    margin-left: 20px;
    margin-right: 20px;
  }

  .dashboard-action-row {
    grid-template-columns: 25px 40px minmax(0, 1fr) 15px;
    gap: 12px;
    min-height: 82px;
  }

  .action-row-icon {
    width: 40px;
    height: 40px;
  }

  .action-row-content span {
    line-height: 1.4;
  }
}

/* =========================================================
   RETURNS PAGE
========================================================= */

.returns-page {
  padding: 90px 0 100px;
  background: #ffffff;
}

/* =========================================================
   COMMON
========================================================= */

.returns-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.returns-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-primary);
}

/* =========================================================
   HEADER
========================================================= */

.returns-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--color-border-light);
}

.returns-header h1 {
  max-width: 750px;
  margin: 17px 0 17px;
  color: var(--color-primary);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.returns-header h1 strong {
  font-weight: 800;
}

.returns-header p {
  max-width: 650px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.returns-header-meta {
  max-width: 210px;
  padding-left: 25px;
  border-left: 1px solid var(--color-border);
}

.returns-header-meta span,
.returns-header-meta strong {
  display: block;
}

.returns-header-meta span {
  margin-bottom: 7px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.returns-header-meta strong {
  color: var(--color-primary);
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.returns-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  margin-top: 45px;
  border: 1px solid var(--color-border);
}

/* =========================================================
   SIDEBAR
========================================================= */

.returns-sidebar {
  padding: 45px;
  background: #111827;
  color: #ffffff;
}

.returns-sidebar-heading > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.returns-sidebar-heading h2 {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.returns-process {
  margin-top: 45px;
}

.returns-process-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
}

.returns-process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
}

.returns-process-item strong {
  display: block;
  margin: 2px 0 7px;
  color: #ffffff;
  font-size: 13px;
}

.returns-process-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.65;
}

.returns-process-line {
  width: 1px;
  height: 30px;
  margin: 7px 0 7px 19px;
  background: rgba(255, 255, 255, 0.15);
}

/* =========================================================
   GUIDELINES
========================================================= */

.returns-guidelines {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.returns-guidelines-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
}

.returns-guidelines-header i {
  color: rgba(255, 255, 255, 0.65);
}

.returns-guidelines-header strong {
  font-size: 12px;
}

.returns-guidelines ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.returns-guidelines li {
  position: relative;
  padding: 7px 0 7px 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.55;
}

.returns-guidelines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   CONTACT
========================================================= */

.returns-sidebar-contact {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.returns-sidebar-contact span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.returns-sidebar-contact strong {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 13px;
}

.returns-sidebar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.returns-sidebar-contact a i {
  font-size: 10px;
}

/* =========================================================
   FORM AREA
========================================================= */

.returns-form-area {
  padding: 45px;
  background: #ffffff;
}

.returns-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border-light);
}

.returns-form-header > div:first-child > span {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.returns-form-header h2 {
  margin: 11px 0 8px;
  color: var(--color-primary);
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.returns-form-header p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.returns-form-number {
  text-align: right;
}

.returns-form-number span,
.returns-form-number strong {
  display: block;
}

.returns-form-number span {
  margin-bottom: 3px;
  color: var(--color-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.returns-form-number strong {
  color: var(--color-border);
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
}

/* =========================================================
   FORM
========================================================= */

.returns-form {
  padding-top: 32px;
}

.returns-field {
  margin-bottom: 26px;
}

.returns-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}

.returns-field label span {
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 500;
}

.returns-field label span.optional {
  color: #9ca3af;
}

.returns-input,
.returns-textarea {
  position: relative;
}

.returns-input > i,
.returns-textarea > i {
  position: absolute;
  left: 16px;
  color: var(--color-muted);
  font-size: 13px;
  pointer-events: none;
}

.returns-input > i {
  top: 50%;
  transform: translateY(-50%);
}

.returns-input input,
.returns-input select {
  width: 100%;
  height: 54px;
  padding: 0 18px 0 47px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  outline: none;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.returns-input select {
  appearance: none;
  cursor: pointer;
  padding-right: 45px;
}

.returns-select::after {
  content: "\F282";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--color-muted);
  font-family: bootstrap-icons;
  font-size: 11px;
  transform: translateY(-50%);
  pointer-events: none;
}

.returns-input input:focus,
.returns-input select:focus,
.returns-textarea textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.returns-field > small {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 10px;
}

/* =========================================================
   TEXTAREA
========================================================= */

.returns-textarea > i {
  top: 17px;
}

.returns-textarea textarea {
  display: block;
  width: 100%;
  min-height: 145px;
  padding: 16px 18px 16px 47px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  outline: none;
  resize: vertical;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 13px;
  line-height: 1.6;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.returns-textarea textarea::placeholder {
  color: #9ca3af;
}

/* =========================================================
   ERROR
========================================================= */

.returns-error {
  display: flex;
  gap: 13px;
  margin-bottom: 22px;
  padding: 15px;
  border: 1px solid #fecaca;
  background: #fef2f2;
}

.returns-error > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #dc2626;
  color: #ffffff;
}

.returns-error strong,
.returns-error p {
  display: block;
}

.returns-error strong {
  margin-bottom: 3px;
  color: #991b1b;
  font-size: 12px;
}

.returns-error p {
  margin: 0;
  color: #7f1d1d;
  font-size: 10px;
}

/* =========================================================
   SUBMIT
========================================================= */

.returns-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 21px;
  border: 1px solid var(--color-primary);
  border-radius: 0;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.returns-submit:hover {
  background: #000000;
}

.returns-submit i {
  transition: transform 0.2s ease;
}

.returns-submit:hover i {
  transform: translateX(5px);
}

/* =========================================================
   FORM FOOTER
========================================================= */

.returns-form-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 9px;
  line-height: 1.5;
}

.returns-form-footer i {
  color: #15803d;
  font-size: 12px;
}

/* =========================================================
   BOTTOM BAR
========================================================= */

.returns-bottom-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.returns-bottom-bar > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  column-gap: 12px;
  padding: 20px 15px;
}

.returns-bottom-bar > div + div {
  border-left: 1px solid var(--color-border);
}

.returns-bottom-bar i {
  grid-row: span 2;
  color: var(--color-primary);
  font-size: 15px;
}

.returns-bottom-bar strong,
.returns-bottom-bar span {
  display: block;
}

.returns-bottom-bar strong {
  margin-bottom: 3px;
  color: var(--color-primary);
  font-size: 11px;
}

.returns-bottom-bar span {
  color: var(--color-muted);
  font-size: 9px;
  line-height: 1.5;
}

/* =========================================================
   SUCCESS
========================================================= */

.returns-success {
  border: 1px solid var(--color-border);
}

.returns-success-top {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 25px;
  padding: 55px;
  border-bottom: 1px solid var(--color-border-light);
}

.returns-success-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #15803d;
  color: #ffffff;
  font-size: 28px;
}

.returns-success-top h1 {
  margin: 13px 0 14px;
  color: var(--color-primary);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.returns-success-top h1 strong {
  font-weight: 800;
}

.returns-success-top p {
  max-width: 650px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.returns-success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}

.returns-success-reference,
.returns-success-status {
  padding: 25px 55px;
}

.returns-success-status {
  border-left: 1px solid var(--color-border);
}

.returns-success-reference span,
.returns-success-status span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.returns-success-reference strong {
  color: var(--color-primary);
  font-size: 18px;
}

.returns-success-status strong {
  color: #15803d;
  font-size: 14px;
}

.returns-next {
  padding: 45px 55px;
}

.returns-next-heading > span {
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.returns-next-heading h2 {
  margin: 10px 0 30px;
  color: var(--color-primary);
  font-size: 25px;
  font-weight: 800;
}

.returns-next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.returns-next-steps > div {
  padding: 22px 20px;
}

.returns-next-steps > div + div {
  border-left: 1px solid var(--color-border);
}

.returns-next-steps span,
.returns-next-steps strong,
.returns-next-steps p {
  display: block;
}

.returns-next-steps span {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
}

.returns-next-steps strong {
  margin-bottom: 6px;
  color: var(--color-primary);
  font-size: 12px;
}

.returns-next-steps p {
  margin: 0;
  color: var(--color-muted);
  font-size: 10px;
  line-height: 1.6;
}

.returns-success-actions {
  display: flex;
  gap: 10px;
  padding: 0 55px 55px;
}

.returns-btn-primary,
.returns-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.returns-btn-primary {
  gap: 10px;
  background: var(--color-primary);
  color: #ffffff;
}

.returns-btn-primary i {
  transition: transform 0.2s ease;
}

.returns-btn-primary:hover i {
  transform: translateX(5px);
}

.returns-btn-secondary {
  border: 1px solid var(--color-border);
  color: var(--color-primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .returns-layout {
    grid-template-columns: 1fr;
  }

  .returns-sidebar {
    padding: 40px;
  }

  .returns-bottom-bar {
    grid-template-columns: 1fr;
  }

  .returns-bottom-bar > div + div {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 767px) {
  .returns-page {
    padding: 60px 0 70px;
  }

  .returns-header {
    display: block;
    padding-bottom: 30px;
  }

  .returns-header h1 {
    font-size: 43px;
  }

  .returns-header-meta {
    display: none;
  }

  .returns-layout {
    margin-top: 30px;
  }

  .returns-sidebar,
  .returns-form-area {
    padding: 30px 22px;
  }

  .returns-sidebar-heading h2 {
    font-size: 28px;
  }

  .returns-form-header h2 {
    font-size: 25px;
  }

  .returns-success-top {
    grid-template-columns: 1fr;
    padding: 35px 25px;
  }

  .returns-success-mark {
    width: 55px;
    height: 55px;
  }

  .returns-success-top h1 {
    font-size: 40px;
  }

  .returns-success-grid {
    grid-template-columns: 1fr;
  }

  .returns-success-status {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

  .returns-success-reference,
  .returns-success-status {
    padding: 20px 25px;
  }

  .returns-next {
    padding: 35px 25px;
  }

  .returns-next-steps {
    grid-template-columns: 1fr;
  }

  .returns-next-steps > div + div {
    border-left: 0;
    border-top: 1px solid var(--color-border);
  }

  .returns-success-actions {
    flex-direction: column;
    padding: 0 25px 30px;
  }

  .returns-btn-primary,
  .returns-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .returns-header h1 {
    font-size: 37px;
  }

  .returns-sidebar,
  .returns-form-area {
    padding: 25px 17px;
  }

  .returns-field {
    margin-bottom: 21px;
  }

  .returns-bottom-bar > div {
    padding: 17px 10px;
  }
}

.policy-page {
  padding: 50px;
}
