@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");
/* =========================================
   _variables.scss
   Design tokens as SCSS variables
========================================= */
/* =========================
   BRAND COLORS
========================= */
/* =========================
   NEUTRAL COLORS
========================= */
/* =========================
   TEXT COLORS
========================= */
/* =========================
   BACKGROUND COLORS
========================= */
/* =========================
   STATUS COLORS
========================= */
/* =========================
   TYPOGRAPHY
========================= */
/* =========================
   SPACING SYSTEM
========================= */
/* =========================
   BORDER RADIUS
========================= */
/* =========================
   BORDERS
========================= */
/* =========================
   SHADOWS
========================= */
/* =========================
   TRANSITIONS & EASING
========================= */
/* =========================
   Z-INDEX SCALE
========================= */
/* =========================
   LAYOUT
========================= */
/* =========================
   STATES
========================= */
/* =========================================
   _root.scss
   Expose SCSS tokens as CSS custom properties
========================================= */
:root {
  /* BRAND COLORS */
  --primary: #fbd414;
  --primary-hover: #f4cb02;
  --primary-active: #f4cb02;
  --secondary: #ec2027;
  --secondary-hover: #cc2c31;
  --secondary-active: #ab1d21;
  --accent: #f75225;
  --accent-hover: #bd8c22;
  /* NEUTRALS */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  /* TEXT */
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-inverse: #ffffff;
  /* BACKGROUNDS */
  --bg-body: #f9fafb;
  --bg-surface: #ffffff;
  --bg-muted: #f3f4f6;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  /* STATUS */
  --success: #16a34a;
  --warning: #f59e0b;
  --error: #dc2626;
  --info: #0284c7;
  /* TYPOGRAPHY */
  --font-sans: Google Sans;
  --font-mono: JetBrains Mono, monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  /* SPACING */
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  /* RADIUS */
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  /* BORDERS */
  --border-width-0: 0;
  --border-width-1: 1px;
  --border-width-2: 2px;
  --border-color: #e5e7eb;
  --border-color-hover: #d1d5db;
  /* SHADOWS */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  /* TRANSITIONS & EASING */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  /* Z-INDEX */
  --z-base: 0;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-modal: 40;
  --z-popover: 50;
  --z-tooltip: 60;
  /* LAYOUT */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  /* STATES */
  --focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.4);
  --disabled-opacity: 0.5;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* === Body Default Styles === */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 75vw;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container {
    max-width: 80vw;
  }
}
@media (max-width: 480px) {
  .container {
    max-width: 90vw;
  }
}

/* Optional: Base link and image styles */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Optional: Remove list styles */
ul,
ol {
  list-style: none;
}

.heading_section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.heading_section .bordered_heading {
  font-size: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  position: relative;
  white-space: nowrap;
}
.heading_section .bordered_heading span {
  color: var(--secondary);
}
.heading_section .bordered_heading {
  /* DESKTOP LINES */
}
.heading_section .bordered_heading::before, .heading_section .bordered_heading::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
@media (max-width: 768px) {
  .heading_section .bordered_heading::before, .heading_section .bordered_heading::after {
    display: none;
  }
}
.heading_section .bordered_heading::before {
  border-right: 200px solid #000;
}
.heading_section .bordered_heading::after {
  border-left: 200px solid #000;
}
@media (max-width: 768px) {
  .heading_section .bordered_heading::after {
    content: "";
    display: block;
    width: 68px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 6px;
    border-left: 0px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  }
}
@media (max-width: 768px) {
  .heading_section .bordered_heading {
    display: block;
    font-size: 2.6rem;
    white-space: normal;
    text-align: center;
    padding-bottom: 14px;
    position: relative;
  }
}

main {
  position: relative;
  margin-bottom: 3rem;
}
main #vector-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 768px) {
  main #vector-layer {
    display: none;
  }
}
@media (max-width: 480px) {
  main #vector-layer {
    display: none;
  }
}
main .bgvector {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
main .bgvector img {
  width: 100%;
  height: auto;
  display: block;
}

section {
  margin: 4rem 0;
}
@media (max-width: 480px) {
  section {
    margin: 2rem 0;
  }
}

.about_content {
  margin-top: 0rem;
}
.about_content p {
  font-weight: 500;
}

.mini_service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 3rem auto;
  padding: 1.5rem;
}
.mini_service .left,
.mini_service .right {
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(236, 32, 39, 0.35);
  --yellow-glow: rgba(251, 212, 20, 0.35);
  --red-glow: rgba(236, 32, 39, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, rgba(251, 212, 20, 0.14) 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  cursor: default;
  /* ICON */
}
.mini_service .left .icon,
.mini_service .right .icon {
  width: 75px;
  height: 75px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  background: rgba(251, 212, 20, 0.32);
  border: 1px solid rgba(251, 212, 20, 0.5);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.mini_service .left .icon .material-symbols-outlined,
.mini_service .right .icon .material-symbols-outlined {
  font-size: 55px;
  color: var(--secondary);
  font-variation-settings: "FILL" 0, "wght" 650, "GRAD" 0, "opsz" 32;
  transition: color 220ms ease, font-variation-settings 220ms ease, text-shadow 220ms ease;
}
.mini_service .left,
.mini_service .right {
  /* TEXT */
}
.mini_service .left .content,
.mini_service .right .content {
  font-size: 1.5rem;
  font-weight: 900;
  color: #121212;
  line-height: 1.1;
  letter-spacing: -0.6px;
}
.mini_service .left:hover,
.mini_service .right:hover {
  border-color: var(--border-hover);
  background: linear-gradient(180deg, #ffffff 0%, rgba(236, 32, 39, 0.08) 100%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14), 0 0 0 6px var(--yellow-glow);
}
.mini_service .left:hover .icon,
.mini_service .right:hover .icon {
  background: rgba(236, 32, 39, 0.16);
  border-color: rgba(236, 32, 39, 0.45);
  box-shadow: 0 14px 34px var(--red-glow);
}
.mini_service .left:hover .icon .material-symbols-outlined,
.mini_service .right:hover .icon .material-symbols-outlined {
  color: var(--secondary-hover);
  text-shadow: 0 14px 30px rgba(236, 32, 39, 0.35);
  font-variation-settings: "FILL" 1, "wght" 750, "GRAD" 0, "opsz" 32;
}
.mini_service {
  /* MOBILE */
}
@media (max-width: 640px) {
  .mini_service {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .mini_service .left,
  .mini_service .right {
    padding: 2rem 1.6rem;
  }
  .mini_service .left .content,
  .mini_service .right .content {
    font-size: 1.7rem;
  }
  .mini_service .left .icon,
  .mini_service .right .icon {
    width: 76px;
    height: 76px;
  }
  .mini_service .left .icon .material-symbols-outlined,
  .mini_service .right .icon .material-symbols-outlined {
    font-size: 40px;
  }
}

.cta_part {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.cta_part h2 {
  text-align: center;
}
.cta_part a {
  margin: 2rem 0;
  background-color: var(--secondary);
  color: var(--white);
  display: block;
  padding: 0.7rem 1.8rem;
  border-radius: 0.9rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.differentiated_services {
  margin-top: 4rem;
  position: relative;
}
@media (max-width: 480px) {
  .differentiated_services {
    margin-top: var(--space-4);
  }
}
.differentiated_services .services_area {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1040px, 92%);
  margin: var(--space-4) auto;
  padding: var(--space-4);
}
.differentiated_services .services_area .service_block {
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(236, 32, 39, 0.35);
  --yellow-glow: rgba(251, 212, 20, 0.28);
  --red-glow: rgba(236, 32, 39, 0.22);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* ICON CONTAINER */
}
.differentiated_services .services_area .service_block .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(251, 212, 20, 0.22);
  border: 1px solid rgba(251, 212, 20, 0.45);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.differentiated_services .services_area .service_block .icon .material-symbols-outlined {
  font-size: 28px;
  color: var(--secondary);
  font-variation-settings: "FILL" 0, "wght" 550, "GRAD" 0, "opsz" 24;
  transition: color 220ms ease, font-variation-settings 220ms ease, text-shadow 220ms ease;
}
.differentiated_services .services_area .service_block {
  /* TEXT */
}
.differentiated_services .services_area .service_block .content {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
  letter-spacing: -0.25px;
}
.differentiated_services .services_area .service_block:hover {
  border-color: var(--border-hover);
  background: linear-gradient(180deg, #ffffff, rgba(251, 212, 20, 0.15));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12), 0 0 0 6px var(--yellow-glow);
}
.differentiated_services .services_area .service_block:hover .icon {
  background: rgba(236, 32, 39, 0.12);
  border-color: rgba(236, 32, 39, 0.45);
  box-shadow: 0 10px 26px var(--red-glow);
}
.differentiated_services .services_area .service_block:hover .icon .material-symbols-outlined {
  color: var(--secondary-hover);
  text-shadow: 0 10px 22px rgba(236, 32, 39, 0.35);
  /* Filled icon on hover = premium detail */
  font-variation-settings: "FILL" 1, "wght" 650, "GRAD" 0, "opsz" 24;
}
.differentiated_services .services_area .service_block:active {
  background: rgba(251, 212, 20, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.differentiated_services .services_area .service_block:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(236, 32, 39, 0.35), 0 18px 42px rgba(0, 0, 0, 0.14);
}
.differentiated_services .services_area {
  /* RESPONSIVE */
}
@media (max-width: 1024px) {
  .differentiated_services .services_area {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .differentiated_services .services_area {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .differentiated_services .services_area {
    gap: 1.2rem;
    padding: 0.9rem;
    width: 92%;
  }
  .differentiated_services .services_area .service_block {
    padding: 0.7rem 0.9rem;
    font-size: 1.05rem;
  }
  .differentiated_services .services_area .service_block .icon {
    width: 46px;
    height: 46px;
  }
}
@media (max-width: 768px) {
  .differentiated_services .services_area {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    width: 95%;
  }
  .differentiated_services .services_area .service_block {
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
  }
  .differentiated_services .services_area .service_block .icon {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 480px) {
  .differentiated_services .services_area {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
    width: 96%;
    padding: 0.6rem;
    margin: 0.5rem auto;
  }
  .differentiated_services .services_area .service_block {
    padding: 0.55rem 0.6rem;
    font-size: 0.95rem;
    -moz-column-gap: 10px;
         column-gap: 10px;
    border-radius: var(--radius-sm);
  }
  .differentiated_services .services_area .service_block .icon {
    width: 40px;
    height: 40px;
  }
  .differentiated_services .services_area .service_block .icon svg {
    width: 80%;
    height: 80%;
  }
  .differentiated_services .services_area .service_block span,
  .differentiated_services .services_area .service_block p,
  .differentiated_services .services_area .service_block div {
    color: var(--text-secondary);
    transition: color var(--transition-fast) var(--ease-out);
  }
}

.team-section {
  padding: 0 0 20px;
}
.team-section .section-title {
  text-align: center;
  font-weight: 900;
  font-size: 34px;
  margin-bottom: 55px;
  color: #121212;
  letter-spacing: -0.7px;
}
.team-section .team-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.team-section .team-card {
  --bd: rgba(0, 0, 0, 0.08);
  --bdHover: rgba(236, 32, 39, 0.28); /* red hover border */
  --yellowGlow: rgba(251, 212, 20, 0.32); /* yellow glow ring */
  --redGlow: rgba(236, 32, 39, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 212, 20, 0.1) 100%);
  border: 1px solid var(--bd);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  gap: 22px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.team-section .team-card:hover {
  border-color: var(--bdHover);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(236, 32, 39, 0.06) 100%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12), 0 0 0 6px var(--yellowGlow);
}
.team-section .team-card {
  /* LEFT SQUARE IMAGE */
}
.team-section .team-card .team-img {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(251, 212, 20, 0.16);
  border: 1px solid rgba(251, 212, 20, 0.45);
  display: grid;
  place-items: center;
}
.team-section .team-card .team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: saturate(1.03) contrast(1.04);
}
.team-section .team-card {
  /* RIGHT CONTENT */
}
.team-section .team-card .team-info {
  padding: 6px 6px 6px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.team-section .team-card .team-info h4 {
  font-size: 21px;
  font-weight: 900;
  color: #121212;
  margin: 0 0 6px 0;
  letter-spacing: -0.4px;
  line-height: 1.15;
}
.team-section .team-card .team-info .designation {
  font-size: 13px;
  font-weight: 900;
  color: var(--secondary); /* #ec2027 */
  margin-bottom: 10px;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}
.team-section .team-card .team-info .description {
  font-size: 14px;
  color: rgba(18, 18, 18, 0.72);
  line-height: 1.75;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-section .team-card .team-info .team-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team-section .team-card .team-info .social-links {
  display: flex;
  gap: 10px;
}
.team-section .team-card .team-info .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 212, 20, 0.22);
  border: 1px solid rgba(251, 212, 20, 0.45);
  color: var(--secondary);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}
.team-section .team-card .team-info .social-links a:hover {
  background: var(--secondary); /* red */
  border-color: var(--secondary);
  color: #fff;
  box-shadow: 0 12px 28px var(--redGlow);
}
@media (max-width: 768px) {
  .team-section .team-grid {
    padding: 0 14px;
  }
  .team-section .team-card {
    gap: 16px;
    padding: 16px;
  }
  .team-section .team-img {
    width: 92px !important;
    height: 92px !important;
    border-radius: 14px !important;
  }
  .team-section .team-info h4 {
    font-size: 18px;
  }
}

.checkout__container {
  display: grid;
  gap: 16px;
}
.checkout__header {
  display: grid;
  gap: 6px;
  padding: 10px 0;
  background-color: transparent;
  border-radius: 0px;
  position: relative;
  box-shadow: none;
}
.checkout__title {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 1.4rem + 0.8vw, 34px);
  color: rgba(0, 0, 0, 0.9);
}
.checkout__subtitle {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-weight: 650;
  line-height: 1.6;
}
.checkout__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 980px) {
  .checkout__grid {
    grid-template-columns: 1fr;
  }
}
.checkout__card {
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfaf8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  padding: clamp(14px, 2vw, 18px);
}
.checkout__card-title {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.88);
}
.checkout {
  /* Form */
}
.checkout .form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .checkout .form_grid {
    grid-template-columns: 1fr;
  }
}
.checkout .form_grid .field {
  display: grid;
  gap: 6px;
}
.checkout .form_grid .field.full {
  grid-column: 1/-1;
}
.checkout .form_grid .field label {
  font-size: 12px;
  font-weight: 850;
  color: rgba(0, 0, 0, 0.7);
}
.checkout .form_grid .field input {
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, #fff, #f7f5f0);
  padding: 0 14px;
  outline: none;
  font-weight: 750;
  color: rgba(0, 0, 0, 0.85);
  transition: box-shadow 0.2s ease, transform 0.12s ease, border-color 0.2s ease;
}
.checkout .form_grid .field input:focus {
  border-color: rgba(var(--secondary), 0.35);
  box-shadow: 0 0 0 4px rgba(var(--secondary), 0.14);
  transform: translateY(-1px);
}
.checkout__submit {
  margin-top: 14px;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  box-shadow: 0 18px 40px rgba(var(--secondary), 0.22);
  transition: transform 0.12s ease, filter 0.2s ease;
}
.checkout__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.checkout__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.checkout__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.5;
}
.checkout {
  /* Summary */
}
.checkout__summary {
  position: sticky;
  top: 16px;
}
@media (max-width: 980px) {
  .checkout__summary {
    position: relative;
    top: auto;
  }
}
.checkout__summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.checkout__clear {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.75);
  font-weight: 850;
  border-radius: 12px;
  height: 40px;
  padding: 0 12px;
  cursor: pointer;
}
.checkout__clear:hover {
  background: rgba(var(--secondary), 0.08);
  color: var(--secondary);
}
.checkout__empty {
  display: none;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  border-radius: 18px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.02);
  color: rgba(0, 0, 0, 0.62);
  font-weight: 750;
}
.checkout__empty p {
  margin: 0 0 10px;
}
.checkout__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
}
.checkout__items {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}
.checkout .citem {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}
.checkout .citem__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f7f5f0);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
}
.checkout .citem__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.checkout .citem__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}
.checkout .citem__name {
  margin: 0;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.checkout .citem__remove {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-weight: 900;
}
.checkout .citem__remove:hover {
  background: rgba(var(--secondary), 0.1);
  color: var(--secondary);
}
.checkout .citem__bottom {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.checkout .citem__price {
  font-weight: 950;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.82);
}
.checkout .citem__price.por {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 850;
}
.checkout .cqty {
  display: grid;
  grid-template-columns: 38px 44px 38px;
  align-items: center;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.checkout .cqty button {
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 950;
  font-size: 18px;
}
.checkout .cqty button:hover {
  background: rgba(var(--secondary), 0.1);
}
.checkout .cqty .val {
  height: 38px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.88);
}
.checkout__totals {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 8px;
}
.checkout__totals .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 850;
}
.checkout__totals .hint {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.58);
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 10px;
}

.proposal_success {
  padding: clamp(40px, 6vw, 80px) 0;
}
.proposal_success__container {
  display: flex;
  justify-content: center;
}
.proposal_success__card {
  max-width: 620px;
  width: 100%;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #fbfaf8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
  display: grid;
  gap: 16px;
  text-align: center;
  margin: 0;
}
.proposal_success__icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  margin: 0 auto 6px;
  display: grid;
  place-items: center;
  font-size: 36px;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  box-shadow: 0 18px 40px rgba(var(--secondary), 0.35);
}
.proposal_success__title {
  margin: 0;
  font-size: clamp(22px, 1.5rem + 0.6vw, 32px);
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.9);
}
.proposal_success__subtitle {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 650;
  line-height: 1.6;
}
.proposal_success__ref {
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.proposal_success__info {
  margin-top: 6px;
  display: grid;
  gap: 10px;
  text-align: left;
}
.proposal_success .info_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  color: rgba(0, 0, 0, 0.7);
}
.proposal_success .info_item .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(var(--secondary), 0.85);
  box-shadow: 0 8px 20px rgba(var(--secondary), 0.25);
  flex-shrink: 0;
}
.proposal_success__actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.proposal_success .btn_primary {
  height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  box-shadow: 0 18px 40px rgba(var(--secondary), 0.25);
  transition: transform 0.12s ease, filter 0.2s ease;
}
.proposal_success .btn_primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.proposal_success .btn_secondary {
  height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.12s ease, background 0.2s ease;
}
.proposal_success .btn_secondary:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.contact_page .contact-header {
  max-width: 700px;
  margin-bottom: 4rem;
}
.contact_page .contact-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact_page .contact-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
.contact_page .contact_wrapper {
  display: grid;
  grid-template-columns: 1fr;
}
.contact_page .contact_wrapper .contact_info {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.contact_page .contact_wrapper .contact_info .contact_map {
  width: 100%;
  height: 300px;
  border-radius: 1rem;
  overflow: hidden;
}
.contact_page .contact_wrapper .contact_info .contact_map iframe {
  width: 100%;
  height: 100%;
}
.contact_page .contact_wrapper .contact_info .contact_info_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.contact_page .contact_wrapper .contact_info .contact_info_cards .contact_info_card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--white);
  padding: 1rem;
  border-radius: 1rem;
}

.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--white));
  padding: 40px 20px;
}
.error-404 .error-container {
  max-width: 800px;
  text-align: center;
}
.error-404 .error-content {
  animation: fadeUp 0.8s ease forwards;
}
.error-404 .error-content h1 {
  font-size: 140px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
}
.error-404 .error-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--ink);
}
.error-404 .error-content p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 30px;
}
.error-404 .error-content .error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-404 .error-content .error-actions .btn {
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.error-404 .error-content .error-actions .btn.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.error-404 .error-content .error-actions .btn.btn-primary:hover {
  background: var(--primary-hover);
}
.error-404 .error-content .error-actions .btn.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.error-404 .error-content .error-actions .btn.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
@media (max-width: 768px) {
  .error-404 .error-content h1 {
    font-size: 90px;
  }
  .error-404 .error-content h2 {
    font-size: 24px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero_section {
  position: relative;
  margin-top: -16px;
  /* =========================
     Slide Image
     ========================= */
}
.hero_section .slide-img {
  width: 100%;
  height: 71vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .hero_section .slide-img {
    height: 52vh;
  }
}
@media (max-width: 480px) {
  .hero_section .slide-img {
    height: 39vh;
  }
}
.hero_section {
  /* =========================
     Overlay Layer
     ========================= */
}
.hero_section .hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-items: center;
  padding: clamp(18px, 3.2vw, 46px);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
}
.hero_section {
  /* =========================
     Content Card
     ========================= */
}
.hero_section .hero_content {
  width: min(640px, 100%);
  padding: clamp(16px, 2.2vw, 24px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  color: #fff;
  /* alignment variants */
}
.hero_section .hero_content.is-center {
  margin: 0 auto;
  text-align: center;
}
.hero_section .hero_content.is-left {
  margin-right: auto;
  text-align: left;
}
.hero_section .hero_content.is-right {
  margin-left: auto;
  text-align: left;
}
.hero_section {
  /* =========================
     Kicker
     ========================= */
}
.hero_section .hero_kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--secondary) 28%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondary) 34%, rgba(255, 255, 255, 0.24));
}
.hero_section {
  /* =========================
     Title & Description
     ========================= */
}
.hero_section .hero_title {
  margin: 12px 0 8px;
  font-size: clamp(24px, 3.1vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 950;
}
.hero_section .hero_desc {
  margin: 0;
  max-width: 54ch;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 750;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}
.hero_section {
  /* center text constraints */
}
.hero_section .hero_content.is-center .hero_desc {
  margin-inline: auto;
}
.hero_section {
  /* =========================
     Actions
     ========================= */
}
.hero_section .hero_actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero_section .hero_content.is-center .hero_actions {
  justify-content: center;
}
.hero_section {
  /* Buttons */
}
.hero_section .btn_primary,
.hero_section .btn_secondary {
  height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.02em;
}
.hero_section .btn_primary {
  color: #fff;
  background: linear-gradient(180deg, var(--secondary), var(--secondary-hover));
  box-shadow: 0 18px 46px color-mix(in srgb, var(--secondary) 34%, transparent);
}
.hero_section .btn_primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 24px 60px color-mix(in srgb, var(--secondary) 40%, transparent);
}
.hero_section .btn_primary:active {
  transform: translateY(0) scale(0.99);
}
.hero_section .swiper-pagination-bullet {
  background-color: var(--secondary);
}
.hero_section {
  /* =========================
     Meta Chips
     ========================= */
}
.hero_section .hero_meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero_section .hero_content.is-center .hero_meta {
  justify-content: center;
}
.hero_section .meta_chip {
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.hero_section {
  /* =========================
     Mobile Behaviour
     ========================= */
}
@media (max-width: 768px) {
  .hero_section .hero_overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.08) 75%, rgba(0, 0, 0, 0) 100%);
  }
  .hero_section .hero_content.is-left,
  .hero_section .hero_content.is-right {
    margin: 0 auto;
    text-align: center;
  }
  .hero_section .hero_actions,
  .hero_section .hero_meta {
    justify-content: center;
  }
  .hero_section .hero_desc {
    margin-inline: auto;
  }
}
.hero_section .bgvector1 {
  position: absolute;
  top: 18%;
  left: -10%;
  transform: rotate(121deg);
  width: 50%;
  pointer-events: none;
  z-index: -1;
}
.hero_section .bgvector2 {
  position: absolute;
  top: 2%;
  left: 69%;
  transform: rotate(270deg);
  width: 50%;
  pointer-events: none;
  z-index: -1;
}

.info_card, .info_card_reverse {
  display: flex;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
  margin: 2rem 0;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  padding: 5rem 2rem;
  border-radius: 10px;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .info_card, .info_card_reverse {
    flex-direction: column;
    row-gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 1rem;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
  }
}
.info_card .card_img_group, .info_card_reverse .card_img_group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.info_card .card_img_group::-webkit-scrollbar, .info_card_reverse .card_img_group::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .info_card .card_img_group, .info_card_reverse .card_img_group {
    gap: var(--space-2);
  }
}
.info_card .card_img_group .card_img, .info_card_reverse .card_img_group .card_img {
  flex: 0 0 auto;
  width: 135px;
  aspect-ratio: 1;
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .info_card .card_img_group .card_img, .info_card_reverse .card_img_group .card_img {
    width: 70px;
  }
}
.info_card .card_img_group .card_img img, .info_card_reverse .card_img_group .card_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info_card .card_img_group .card_img .img_label, .info_card_reverse .card_img_group .card_img .img_label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 30px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.info_card .card_img_group .card_img:hover .img_label, .info_card_reverse .card_img_group .card_img:hover .img_label {
  opacity: 1;
  bottom: 18px;
}
@media (max-width: 768px) {
  .info_card .card_img_group, .info_card_reverse .card_img_group {
    justify-content: center;
    max-width: 100%;
  }
}
.info_card .card_img_group .story_video_wrap, .info_card_reverse .card_img_group .story_video_wrap {
  flex: 0 0 416px;
  max-width: 100%;
  aspect-ratio: 16/10;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .info_card .card_img_group .story_video_wrap, .info_card_reverse .card_img_group .story_video_wrap {
    flex: 1 1 100%;
  }
}
.info_card .card_img_group .story_video_wrap video, .info_card_reverse .card_img_group .story_video_wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.info_card .card_img_group .story_video_wrap::after, .info_card_reverse .card_img_group .story_video_wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}
.info_card .card_content, .info_card_reverse .card_content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .info_card .card_content, .info_card_reverse .card_content {
    align-items: center;
    text-align: center;
  }
}
.info_card .card_content h3, .info_card_reverse .card_content h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 13px;
  position: relative;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .info_card .card_content h3, .info_card_reverse .card_content h3 {
    font-size: 20px;
  }
}
.info_card .card_content h3::before, .info_card_reverse .card_content h3::before {
  background-color: #c50000;
  content: "";
  display: block;
  height: 3px;
  width: 75px;
  margin-bottom: 5px;
}
.info_card .card_content h3::after, .info_card_reverse .card_content h3::after {
  background-color: #c50000;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 75px;
  margin-bottom: 0.25em;
}
@media (max-width: 768px) {
  .info_card .card_content, .info_card_reverse .card_content {
    align-items: center;
    text-align: center;
  }
}
.info_card .card_content p, .info_card_reverse .card_content p {
  text-align: right;
}
@media (max-width: 768px) {
  .info_card .card_content p, .info_card_reverse .card_content p {
    text-align: center;
  }
}

.info_card_reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .info_card_reverse {
    flex-direction: column;
  }
}
.info_card_reverse .card_content {
  align-items: flex-start;
}
@media (max-width: 768px) {
  .info_card_reverse .card_content {
    align-items: center;
  }
}
.info_card_reverse .card_content p {
  text-align: left;
}
@media (max-width: 768px) {
  .info_card_reverse .card_content p {
    text-align: center;
  }
}
.info_card_reverse .card_img_group {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .info_card_reverse .card_img_group {
    justify-content: center;
  }
}

.services h2 {
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .services h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .services h2 {
    font-size: 1.9rem;
    padding: 0 var(--space-4);
  }
}
.services {
  /* ===============================
     SERVICES GRID
     =============================== */
}
.services .services_area {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .services .services_area {
    grid-template-columns: 1fr;
  }
}
.services .services_area {
  /* ---------- SERVICE CARD ---------- */
}
.services .services_area .service_block {
  grid-column: span 2;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(236, 32, 39, 0.35);
  --yellow-glow: rgba(251, 212, 20, 0.28);
  --red-glow: rgba(236, 32, 39, 0.22);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* ICON */
}
.services .services_area .service_block .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(251, 212, 20, 0.22);
  border: 1px solid rgba(251, 212, 20, 0.45);
}
.services .services_area .service_block .icon .material-symbols-outlined {
  font-size: 28px;
  color: var(--secondary);
  font-variation-settings: "FILL" 0, "wght" 550, "GRAD" 0, "opsz" 24;
  transition: all 220ms ease;
}
.services .services_area .service_block {
  /* TEXT */
}
.services .services_area .service_block .content {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
  letter-spacing: -0.25px;
}
.services .services_area .service_block:hover {
  border-color: var(--border-hover);
  background: linear-gradient(180deg, #ffffff, rgba(251, 212, 20, 0.15));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12), 0 0 0 6px var(--yellow-glow);
}
.services .services_area .service_block:hover .icon {
  background: rgba(236, 32, 39, 0.12);
  border-color: rgba(236, 32, 39, 0.45);
  box-shadow: 0 10px 26px var(--red-glow);
}
.services .services_area .service_block:hover .icon .material-symbols-outlined {
  color: var(--secondary-hover);
  text-shadow: 0 10px 22px rgba(236, 32, 39, 0.35);
  font-variation-settings: "FILL" 1, "wght" 650, "GRAD" 0, "opsz" 24;
}
.services .services_area {
  /* ---------- OFFSET SECOND ROW ---------- */
}
.services .services_area .service_block:nth-child(4) {
  grid-column: 2/span 2;
}
.services .services_area .service_block:nth-child(5) {
  grid-column: 4/span 2;
}
.services .services_area {
  /* ===============================
     MOBILE
     =============================== */
}
@media (max-width: 480px) {
  .services .services_area .services_area {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
    width: 96%;
    padding: 0.6rem;
    margin: 0.5rem auto;
    /* 🔥 CRITICAL: kill AOS grid bugs */
    transform: none !important;
  }
  .services .services_area .services_area .service_block {
    grid-column: 1/-1 !important;
    width: 100%;
    max-width: 100%;
    transform: none !important;
    padding: 0.6rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
  }
  .services .services_area .services_area .service_block .icon {
    width: 40px;
    height: 40px;
  }
  .services .services_area .services_area .service_block:nth-child(4) {
    grid-column: 2/span 2;
  }
  .services .services_area .services_area .service_block:nth-child(5) {
    grid-column: none;
  }
}

.partners {
  padding: 90px 0;
  background: #ffffff;
}

.partners-grid {
  width: min(1300px, 92%);
  margin: 0 auto;
  padding: 0 14px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 22px;
}

/* Individual brand card */
.partner-card {
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(236, 32, 39, 0.32);
  --yellow-glow: rgba(251, 212, 20, 0.3);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.partner-card:hover {
  cursor: pointer;
  border-color: var(--border-hover);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12), 0 0 0 6px var(--yellow-glow);
  transition: all ease 0.5s;
}

/* Logo wrapper (fixed area, works for all logos) */
.logo-wrapper {
  width: 100%;
  display: grid;
  place-items: center;
}
.logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.82;
  transition: filter 220ms ease, opacity 220ms ease;
}

.partner-card:hover .logo-wrapper img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .partners {
    padding: 70px 0;
  }
  .partners-grid {
    gap: 18px;
  }
  .logo-wrapper {
    height: 110px;
  }
}
@media (max-width: 575px) {
  .partners {
    padding: 60px 0;
  }
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .logo-wrapper {
    height: 96px;
    padding: 14px;
  }
}
.wow_setup_section {
  padding: 100px 0;
}
.wow_setup_section .setup_area_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 1024px) {
  .wow_setup_section .setup_area_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .wow_setup_section .setup_area_grid {
    grid-template-columns: 1fr;
  }
}
.wow_setup_section .setup_box {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.wow_setup_section .setup_box:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12), inset 0 0 0 1px var(--secondary);
  transform: translateY(-10px);
}
.wow_setup_section .setup_box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--secondary);
  line-height: 1.3;
  min-height: 52px;
}
.wow_setup_section .setup_box .setup_box_content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wow_setup_section .setup_box .video_wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/10;
  background: #000;
}
.wow_setup_section .setup_box .video_wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.wow_setup_section .setup_box .video_wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}
.wow_setup_section .setup_box p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
}
.wow_setup_section .setup_box {
  /* Accent strip for premium detail */
}
.wow_setup_section .setup_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-hover));
}

.ceo-message-section {
  position: relative;
  padding: clamp(34px, 5vw, 74px) 0;
}
.ceo-message-section .container {
  position: relative;
}
.ceo-message-section .ceo-card {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(16px, 2.5vw, 26px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.ceo-message-section {
  /* IMAGE SIDE */
}
.ceo-message-section .ceo-image {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--secondary) 8%, #ffffff));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}
.ceo-message-section .ceo-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.ceo-message-section {
  /* CONTENT SIDE */
}
.ceo-message-section .ceo-content {
  position: relative;
  z-index: 1;
  padding: clamp(4px, 1vw, 10px) 0;
  display: grid;
  align-content: start;
  gap: 12px;
}
.ceo-message-section .section-title {
  margin: 0;
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.15;
  /* brand underline */
}
.ceo-message-section .section-title::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-hover));
  box-shadow: 0 12px 28px color-mix(in srgb, var(--secondary) 24%, transparent);
}
.ceo-message-section .ceo-text {
  margin: 0;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.68);
}
.ceo-message-section .ceo-signature {
  margin-top: 10px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ceo-message-section .ceo-signature h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.84);
}
.ceo-message-section .ceo-signature span {
  font-size: 12px;
  font-weight: 850;
  color: rgba(0, 0, 0, 0.58);
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--secondary) 10%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--secondary) 22%, rgba(0, 0, 0, 0.08));
}
.ceo-message-section {
  /* RESPONSIVE */
}
@media (max-width: 768px) {
  .ceo-message-section .ceo-card {
    grid-template-columns: 1fr;
  }
  .ceo-message-section .ceo-image {
    border-radius: 20px;
    height: 300px;
  }
  .ceo-message-section .ceo-image img {
    -o-object-position: 80% 10%;
       object-position: 80% 10%;
  }
  .ceo-message-section .ceo-content {
    padding-top: 6px;
  }
  .ceo-message-section .ceo-card {
    border-radius: 22px;
  }
  .ceo-message-section .ceo-signature {
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .ceo-message-section .ceo-image {
    height: 224px;
  }
  .ceo-message-section .ceo-image img {
    -o-object-position: 80% 44%;
       object-position: 80% 44%;
  }
}

.pdp {
  position: relative;
  padding: clamp(18px, 3vw, 34px) 0 clamp(28px, 4vw, 60px);
}
.pdp .pdp__container {
  position: relative;
}
.pdp {
  /* =========================
     Breadcrumb
     ========================= */
}
.pdp .pdp__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-weight: 900;
}
.pdp .pdp__crumbs .pdp__crumb-link {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  transition: color 0.2s ease;
}
.pdp .pdp__crumbs .pdp__crumb-link:hover {
  color: var(--primary);
  text-decoration: underline;
}
.pdp .pdp__crumbs .pdp__crumb-sep {
  color: rgba(0, 0, 0, 0.35);
  font-weight: 900;
}
.pdp .pdp__crumbs .pdp__crumb-current {
  color: rgba(0, 0, 0, 0.88);
  font-weight: 950;
  max-width: 70ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pdp {
  /* =========================
     Layout Grid
     ========================= */
}
.pdp .pdp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(14px, 2.4vw, 26px);
  align-items: start;
}
@media (max-width: 980px) {
  .pdp .pdp__grid {
    grid-template-columns: 1fr;
  }
}
.pdp {
  /* =========================
     Media (Left)
     ========================= */
}
.pdp .pdp__media {
  position: relative;
}
.pdp .pdp__media .pdp__media-card {
  position: relative;
  border-radius: 26px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.pdp .pdp__media .pdp__image-wrap {
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.05), transparent 55%), linear-gradient(180deg, #ffffff, #f7f5f0);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
  min-height: clamp(320px, 48vh, 560px);
}
.pdp .pdp__media .pdp__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  padding: 12px;
  transform: scale(1.01);
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: saturate(1.03) contrast(1.03);
}
.pdp .pdp__media .pdp__media-card:hover .pdp__image {
  transform: scale(1.05);
}
.pdp {
  /* =========================
     Panel (Right)
     ========================= */
}
.pdp .pdp__panel {
  position: relative;
  /* sticky on desktop for premium UX */
}
@media (min-width: 981px) {
  .pdp .pdp__panel {
    position: sticky;
    top: 16px;
  }
}
.pdp .pdp__panel .pdp__panel-card {
  position: relative;
  border-radius: 26px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.pdp {
  /* =========================
     Header / Title
     ========================= */
}
.pdp .pdp__header {
  position: relative;
  z-index: 1;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
  background: none;
  border-radius: 0px;
  box-shadow: none;
}
.pdp .pdp__title {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(0, 0, 0, 0.88);
}
.pdp .pdp__subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
  max-width: 70ch;
}
.pdp {
  /* Price */
}
.pdp .pdp__meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pdp .pdp__price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--secondary) 10%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--secondary) 22%, rgba(0, 0, 0, 0.08));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.pdp .pdp__price .pdp__price-label {
  font-size: 12px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pdp .pdp__price .pdp__price-value {
  font-size: 15px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.86);
}
.pdp .pdp__price.pdp__price--por {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
}
.pdp .pdp__price.pdp__price--por .pdp__price-value {
  color: rgba(0, 0, 0, 0.62);
  font-weight: 900;
}
.pdp {
  /* =========================
     Buy block
     ========================= */
}
.pdp .pdp__buy {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  display: grid;
  gap: 14px;
}
.pdp .pdp__qty {
  display: grid;
  gap: 8px;
}
.pdp .pdp__qty-label {
  font-size: 12px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.62);
  letter-spacing: 0.02em;
}
.pdp {
  /* Stepper */
}
.pdp .pdp__stepper {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.pdp .pdp__stepper-btn {
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.82);
  transition: background 0.2s ease, transform 0.12s ease;
}
.pdp .pdp__stepper-btn:hover {
  background: color-mix(in srgb, var(--primary) 12%, #ffffff);
}
.pdp .pdp__stepper-btn:active {
  transform: scale(0.98);
  background: color-mix(in srgb, var(--primary) 16%, #ffffff);
}
.pdp .pdp__stepper-btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--primary) 22%, transparent);
}
.pdp .pdp__stepper-input {
  height: 46px;
  border: none;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 14px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.88);
  outline: none;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.pdp .pdp__stepper-input::-webkit-outer-spin-button, .pdp .pdp__stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pdp {
  /* CTA */
}
.pdp .pdp__cta {
  display: grid;
  gap: 10px;
}
.pdp .pdp__add-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 20px 52px color-mix(in srgb, var(--primary) 32%, transparent);
  transition: transform 0.12s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.pdp .pdp__add-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 24px 66px color-mix(in srgb, var(--primary) 38%, transparent);
}
.pdp .pdp__add-btn:active {
  transform: translateY(0) scale(0.99);
  filter: brightness(1);
}
.pdp .pdp__add-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent), 0 24px 66px color-mix(in srgb, var(--primary) 38%, transparent);
}
.pdp {
  /* =========================
     Assurance row
     ========================= */
}
.pdp .pdp__assurance {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  display: grid;
  gap: 10px;
}
.pdp .pdp__assurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.64);
}
.pdp .pdp__assurance-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 10px 24px color-mix(in srgb, var(--secondary) 26%, transparent);
}
.pdp {
  /* =========================
     Details section
     ========================= */
}
.pdp .pdp__details {
  margin-top: clamp(14px, 2.4vw, 26px);
}
.pdp .pdp__details-card {
  position: relative;
  border-radius: 26px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.pdp .pdp__details-card::before {
  content: "";
  position: absolute;
  inset: -45% -35% auto -35%;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--secondary) 12%, transparent), transparent 62%);
  pointer-events: none;
}
.pdp .pdp__details-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.86);
}
.pdp .pdp__details-title::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 24%, transparent);
}
.pdp .pdp__details-content {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.68);
}
.pdp .pdp__details-content p {
  margin: 0 0 12px;
}
.pdp {
  /* =========================
     Mobile tweaks
     ========================= */
}
@media (max-width: 520px) {
  .pdp .pdp__crumbs {
    border-radius: 16px;
  }
  .pdp .pdp__media .pdp__media-card,
  .pdp .pdp__panel .pdp__panel-card,
  .pdp .pdp__details-card {
    border-radius: 22px;
    padding: 14px;
  }
  .pdp .pdp__stepper {
    border-radius: 16px;
  }
  .pdp .pdp__add-btn {
    border-radius: 16px;
    height: 50px;
  }
}

.dashboard {
  padding: 60px 0;
  background: #f7f9fb;
  margin-bottom: 0;
}

.dashboard_content {
  margin-top: 0;
}
.dashboard_content .container {
  max-width: 1200px;
}

/* ======================
   HEADER
====================== */
.dashboard_header {
  margin-bottom: 40px;
}
.dashboard_header .dashboard_intro h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary);
}
.dashboard_header .dashboard_intro p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  line-height: 1.6;
}

/* ======================
   CARD
====================== */
.dashboard_card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.card_header {
  padding: 24px 32px;
  border-bottom: 1px solid #eee;
}
.card_header h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary);
}

/* ======================
   EMPTY STATE
====================== */
.empty_state {
  padding: 60px;
  text-align: center;
}
.empty_state p {
  font-size: 16px;
  color: #777;
}

/* ======================
   TABLE
====================== */
.table_wrapper {
  overflow-x: auto;
}

.proposal_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.proposal_table thead {
  background: #fafafa;
}
.proposal_table thead th {
  text-align: left;
  padding: 16px 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #888;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}
.proposal_table tbody tr {
  transition: background 0.25s ease;
}
.proposal_table tbody tr:hover {
  background: #f9fbfd;
}
.proposal_table tbody td {
  padding: 20px 24px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.request_id {
  font-weight: 600;
  color: var(--primary);
}

/* ======================
   STATUS PILLS
====================== */
.status {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
}
.status.pending {
  background: rgba(255, 193, 7, 0.15);
  color: #c28a00;
}
.status.approved {
  background: rgba(40, 167, 69, 0.15);
  color: #1e7e34;
}
.status.rejected {
  background: rgba(220, 53, 69, 0.15);
  color: #b02a37;
}

.price_request {
  color: var(--accent);
  font-weight: 600;
}

/* ======================
   BUTTON
====================== */
.view_proposal_btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.view_proposal_btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}
.view_proposal_btn:active {
  background: var(--primary-active);
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
  .dashboard_header h1 {
    font-size: 26px;
  }
  .proposal_table th,
  .proposal_table td {
    padding: 14px 16px;
  }
}
.profile_content {
  margin-top: 0;
}

.profile_page {
  padding: 60px 0;
  background: #f7f9fb;
  margin-bottom: 0;
}

.profile_header {
  margin-bottom: 40px;
}
.profile_header h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
}
.profile_header p {
  color: #666;
  margin-top: 6px;
}

.profile_grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
}

/* =====================
   PROFILE CARD
===================== */
.profile_card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}
.profile_card .avatar_wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
}
.profile_card .avatar_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile_card h3 {
  font-size: 20px;
  font-weight: 600;
}
.profile_card .user_email {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: #777;
}

.auth_badge {
  display: inline-block;
  margin: 16px 0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.auth_badge.google {
  background: rgba(66, 133, 244, 0.15);
  color: #4285f4;
}
.auth_badge.local {
  background: rgba(40, 167, 69, 0.15);
  color: #1e7e34;
}

.profile_meta {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.profile_meta li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

/* =====================
   FORM CARD
===================== */
.profile_form_card {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}
.profile_form_card h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary);
}

.form_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.form_grid .full {
  grid-column: 1/-1;
}

.form_group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #555;
}
.form_group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.form_group input:focus {
  outline: none;
  border-color: var(--primary);
}
.form_group input:disabled {
  background: #f1f1f1;
  cursor: not-allowed;
}

.form_actions {
  margin-top: 30px;
}

.btn_primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.btn_primary:hover {
  background: var(--primary-hover);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .profile_grid {
    grid-template-columns: 1fr;
  }
}
.cart_trigger {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.cart_trigger:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}
.cart_trigger:active {
  transform: translateY(0) scale(0.99);
}
.cart_trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 22%, transparent);
}
.cart_trigger .material-symbols-outlined {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.78);
  transition: color 0.2s ease, transform 0.2s ease;
}
.cart_trigger:hover .material-symbols-outlined {
  color: rgba(0, 0, 0, 0.92);
  transform: translateY(-0.5px);
}

/* BEAUTIFUL BADGE */
.cart_badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  /* brand gradient (use your tokens) */
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border: 2px solid rgba(255, 255, 255, 0.92);
  /* crisp depth */
  box-shadow: 0 10px 26px color-mix(in srgb, var(--secondary) 32%, transparent), 0 2px 0 rgba(0, 0, 0, 0.1);
  /* micro glass highlight */
}
.cart_badge::before {
  content: "";
  position: absolute;
  inset: 2px 3px auto 3px;
  height: 45%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.cart_badge {
  /* subtle glow ring */
}
.cart_badge::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 62%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}
.cart_badge {
  transform-origin: center;
}

/* Your visibility animation can stay; this makes it nicer */
.cart_badge {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cart_badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Optional: auto-hide when count is 0 if you add a class */
.cart_badge.is-zero {
  opacity: 0;
  transform: scale(0.75);
  pointer-events: none;
}

/* =========================
   Cart Drawer (Premium)
   ========================= */
/* Drawer root */
.cart_drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.cart_drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop (keep as you like) */
.cart_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Sliding panel (left -> right slide stays SAME) */
.cart_panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(440px, 92vw);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 50%, #faf7f2 100%);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 28px 0 90px rgba(0, 0, 0, 0.22);
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  display: flex;
  flex-direction: column;
  transform: translateX(-102%);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  /* top glow */
}
.cart_panel::before {
  content: "";
  position: absolute;
  inset: -35% -45% auto -45%;
  height: 260px;
  background: radial-gradient(circle at 26% 30%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 62%);
  pointer-events: none;
}
.cart_panel {
  /* bottom glow */
}
.cart_panel::after {
  content: "";
  position: absolute;
  inset: auto -45% -35% -45%;
  height: 240px;
  background: radial-gradient(circle at 24% 72%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 64%);
  pointer-events: none;
}

.cart_drawer.is-open .cart_panel {
  transform: translateX(0);
}

/* Header */
.cart_header {
  position: relative;
  z-index: 2;
  padding: 14px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Optional upgraded header layout */
.cart_head_left {
  min-width: 0;
}

.cart_brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.cart_brand_logo {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, #ffffff), color-mix(in srgb, var(--secondary) 14%, #ffffff));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.cart_brand_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
}

.cart_brand_text {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.cart_title {
  margin: 0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.1;
}

.cart_subtitle {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart_close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.75);
  transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cart_close:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}
.cart_close:active {
  transform: translateY(0) scale(0.98);
}
.cart_close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 22%, transparent);
}

/* Body */
.cart_body {
  position: relative;
  z-index: 1;
  padding: 14px 14px 10px;
  overflow: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.cart_body::-webkit-scrollbar {
  width: 10px;
}
.cart_body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}

/* Empty state (premium) */
.cart_empty {
  border: 1px dashed rgba(0, 0, 0, 0.16);
  border-radius: 18px;
  padding: 18px;
  background: color-mix(in srgb, var(--secondary) 5%, #ffffff);
  color: rgba(0, 0, 0, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.cart_empty p {
  margin: 0;
}

.cart_empty_title {
  font-weight: 950;
  color: rgba(0, 0, 0, 0.84);
  margin-bottom: 6px !important;
}

.cart_empty_hint {
  font-weight: 800;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.56);
}

.cart_empty_actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cart_empty_btn {
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 16px 34px color-mix(in srgb, var(--secondary) 28%, transparent);
  transition: transform 0.12s ease, filter 0.2s ease;
}
.cart_empty_btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}
.cart_empty_btn:active {
  transform: translateY(0) scale(0.99);
}

/* Items container */
.cart_items {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

/* Item card */
.cart_item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cart_item:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--primary) 16%, rgba(0, 0, 0, 0.08));
}

.cart_item__img {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f7f5f0);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
}
.cart_item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cart_item__info {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}

.cart_item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cart_item__name {
  margin: 0;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart_item__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cart_chip {
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  background: color-mix(in srgb, var(--primary) 8%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--primary) 18%, rgba(0, 0, 0, 0.08));
  color: rgba(0, 0, 0, 0.72);
}

/* Remove button */
.cart_item__remove {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.7);
  transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.cart_item__remove:hover {
  background: color-mix(in srgb, var(--primary) 10%, #ffffff);
  color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}
.cart_item__remove:active {
  transform: translateY(0) scale(0.98);
}
.cart_item__remove:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent);
}

/* bottom row */
.cart_item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cart_item__price {
  font-weight: 950;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.82);
}
.cart_item__price.por {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 850;
}

/* Qty control */
.cart_qty {
  display: grid;
  grid-template-columns: 40px 46px 40px;
  align-items: center;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cart_qty .cart_qty__btn {
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 950;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.82);
  transition: background 0.2s ease, transform 0.12s ease;
}
.cart_qty .cart_qty__btn:hover {
  background: color-mix(in srgb, var(--primary) 10%, #ffffff);
}
.cart_qty .cart_qty__btn:active {
  transform: scale(0.98);
  background: color-mix(in srgb, var(--primary) 14%, #ffffff);
}
.cart_qty .cart_qty__btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--primary) 22%, transparent);
}
.cart_qty .cart_qty__val {
  height: 40px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.88);
  background: rgba(255, 255, 255, 0.55);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

/* Footer */
.cart_footer {
  position: relative;
  z-index: 2;
  padding: 12px 14px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cart_summary {
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.cart_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.78);
}
.cart_row + .cart_row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
.cart_row.muted {
  font-weight: 850;
  color: rgba(0, 0, 0, 0.55);
}
.cart_row.muted span {
  font-size: 12px;
}

.cart_checkout {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 46px color-mix(in srgb, var(--primary) 30%, transparent);
  transition: transform 0.12s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.cart_checkout:hover:not(:disabled) {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 22px 60px color-mix(in srgb, var(--primary) 36%, transparent);
}
.cart_checkout:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
  filter: brightness(1);
}
.cart_checkout:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.cart_checkout:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 20%, transparent), 0 18px 46px color-mix(in srgb, var(--primary) 30%, transparent);
}

/* Badge (keep) */
.cart_badge {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cart_badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .cart_panel {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .cart_header {
    padding: 12px 12px 10px;
  }
  .cart_body {
    padding: 12px;
  }
  .cart_footer {
    padding: 10px 12px 14px;
  }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cart_drawer,
  .cart_panel,
  .cart_close,
  .cart_checkout,
  .cart_item,
  .cart_qty__btn {
    transition: none !important;
  }
}
footer {
  background: #f4f1ea;
  padding: 80px 0 30px;
  color: #1f1f1f;
}
footer .footer_content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  footer .footer_content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  footer .footer_content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
footer {
  /* BLOCK 1 */
}
footer .footer_block_1 .footer_logo img {
  max-width: 80px;
  margin-bottom: 16px;
}
footer .footer_block_1 .footer_desc p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
  max-width: 380px;
}
footer {
  /* SHARED BLOCK STYLES */
}
footer .footer_block_2 h4,
footer .footer_block_3 h4,
footer .footer_block_4 h4 {
  font-size: 14px;
  letter-spacing: 1.4px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #000;
}
footer .footer_block_2 ul,
footer .footer_block_3 ul,
footer .footer_block_4 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer_block_2 ul li,
footer .footer_block_3 ul li,
footer .footer_block_4 ul li {
  margin-bottom: 12px;
}
footer .footer_block_2 ul li a,
footer .footer_block_3 ul li a,
footer .footer_block_4 ul li a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer_block_2 ul li a:hover,
footer .footer_block_3 ul li a:hover,
footer .footer_block_4 ul li a:hover {
  color: var(--secondary);
}
footer {
  /* CONTACT BLOCK */
}
footer .footer_block_4 p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.75);
}
footer .footer_block_4 .contact_list li {
  font-size: 14px;
  line-height: 1.6;
}
footer .footer_block_4 .contact_list li strong {
  font-weight: 600;
  color: #000;
}
footer .footer_block_4 .contact_list li a {
  color: rgba(0, 0, 0, 0.75);
}
footer .footer_block_4 .contact_list li a:hover {
  color: var(--secondary);
}
footer {
  /* FOOTER EXTRA */
}
footer .footer_extra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  gap: 20px;
}
@media (max-width: 480px) {
  footer .footer_extra {
    flex-direction: column;
    text-align: center;
  }
}
footer .footer_extra .info {
  font-size: 14px;
}
footer .footer_extra .info strong {
  font-weight: 600;
}
footer .footer_extra .info a {
  color: var(--secondary);
  text-decoration: none;
}
footer .footer_extra .info a:hover {
  text-decoration: underline;
}
footer .footer_extra .social_icons {
  display: flex;
  gap: 14px;
}
footer .footer_extra .social_icons a {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.65);
  transition: transform 0.3s ease, color 0.3s ease;
}
footer .footer_extra .social_icons a:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

header {
  background-color: #fff;
  padding: 10px 0;
  border-bottom-left-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
  z-index: 10;
  position: sticky;
  top: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
header .navbar {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
header .navbar .logo {
  width: 80px;
  height: 80px;
}
@media (max-width: 768px) {
  header .navbar .logo {
    width: 50px;
    height: 50px;
  }
}
header .navbar .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .menu {
  width: 520px;
  padding: 12px 4px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
  border-radius: 2rem;
}
@media (max-width: 768px) {
  header .menu {
    display: none;
  }
}
header .menu .menu_items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .menu .menu_items > li {
  position: relative;
  font-weight: 600;
  letter-spacing: -0.15px;
}
header .menu .menu_items > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: #121212;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
header .menu .menu_items > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}
header .menu .menu_items > li > a:hover {
  background: rgba(251, 212, 20, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
header .menu .menu_items > li > a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
header .menu .menu_items > li > a:active {
  transform: translateY(0);
  background: rgba(251, 212, 20, 0.3);
}
header .menu .menu_items > li > a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(236, 32, 39, 0.22), 0 12px 26px rgba(0, 0, 0, 0.1);
}
header .menu .menu_items > li > a.active {
  color: #fff;
  background: linear-gradient(180deg, var(--secondary), var(--secondary-hover));
  box-shadow: 0 14px 28px rgba(236, 32, 39, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
header .menu .menu_items > li > a.active::after {
  transform: scaleX(1);
  opacity: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.55));
}
header .menu .menu_items > li.has-childern > a {
  padding-right: 34px;
}
header .menu .menu_items > li.has-childern > a::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  opacity: 0.7;
  transition: transform 220ms ease, opacity 220ms ease;
}
header .menu .menu_items > li.has-childern .childern {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}
header .menu .menu_items > li.has-childern .childern::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 18px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.88);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  transform: rotate(45deg);
}
header .menu .menu_items > li.has-childern .childern li {
  margin: 0;
}
header .menu .menu_items > li.has-childern .childern li a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
header .menu .menu_items > li.has-childern .childern li a:hover {
  background: rgba(236, 32, 39, 0.1);
  color: var(--secondary);
  transform: translateX(2px);
}
header .menu .menu_items > li.has-childern .childern li a.active {
  background: rgba(236, 32, 39, 0.14);
  color: var(--secondary);
}
header .menu .menu_items > li.has-childern .childern li a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(236, 32, 39, 0.25);
}
header .menu .menu_items > li.has-childern:hover > a::before, header .menu .menu_items > li.has-childern:focus-within > a::before {
  transform: translateY(-40%) rotate(225deg);
  opacity: 0.95;
}
header .menu .menu_items > li.has-childern:hover .childern, header .menu .menu_items > li.has-childern:focus-within .childern {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s;
}
header {
  /* =========================
   Premium Search
   ========================= */
}
header .search {
  position: absolute;
  left: 242px;
  z-index: 10;
  width: 68%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
}
@media (max-width: 480px) {
  header .search {
    left: 1.2rem;
    width: 90%;
    top: 105%;
  }
}
header .search {
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
header .search.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header {
  /* The input shell */
}
header .search_field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 12px;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
header {
  /* Subtle glow behind */
}
header .search_field::before {
  content: "";
  position: absolute;
  inset: -18px -20px;
  border-radius: 26px;
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}
header {
  /* Hover lift */
}
header .search_field:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}
header {
  /* Icon */
}
header .search_icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--secondary) 8%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--secondary) 18%, rgba(0, 0, 0, 0.08));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}
header .search_icon .material-symbols-outlined {
  font-size: 22px;
  color: color-mix(in srgb, var(--secondary) 78%, rgba(0, 0, 0, 0.55));
}
header {
  /* Input */
}
header .search_input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.85);
}
header .search_input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 800;
}
header .search_input::placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 800;
}
header {
  /* Clear button */
}
header .search_clear {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.68);
}
header .search_clear:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}
header .search_clear:active {
  transform: translateY(0) scale(0.99);
}
header .search_clear:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary) 22%, transparent);
}
header {
  /* Focus-within = premium brand state */
}
header .search_field:focus-within {
  border-color: color-mix(in srgb, var(--secondary) 34%, rgba(0, 0, 0, 0.1));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary) 18%, transparent), 0 18px 44px rgba(0, 0, 0, 0.1);
}
header .search_field:focus-within .search_icon {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-color: transparent;
  transform: translateY(-1px);
}
header .search_field:focus-within .search_icon .material-symbols-outlined {
  color: #fff;
}
header {
  /* =========================
   Suggestions Dropdown
   ========================= */
}
header .search_suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 50;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  /* reserved space for ajax results (even for few items) */
  max-height: min(420px, 55vh);
  overflow: auto;
}
header .search_suggestions::-webkit-scrollbar {
  width: 10px;
}
header .search_suggestions::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}
header {
  /* Header row inside suggestions (optional) */
}
header .suggest_header {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
header .suggest_header .title {
  font-size: 12px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.72);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
header .suggest_header .hint {
  font-size: 12px;
  font-weight: 850;
  color: rgba(0, 0, 0, 0.5);
}
header {
  /* Suggestion item */
}
header .suggest_item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.88);
  background: transparent;
  transition: background 0.2s ease, transform 0.12s ease;
}
header .suggest_item:hover {
  background: color-mix(in srgb, var(--primary) 8%, #ffffff);
}
header .suggest_item:active {
  transform: scale(0.995);
}
header {
  /* thumb */
}
header .suggest_thumb {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f7f5f0);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
}
header .suggest_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header {
  /* text */
}
header .suggest_meta {
  min-width: 0;
  display: grid;
  gap: 2px;
}
header .suggest_name {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
header .suggest_sub {
  font-size: 12px;
  font-weight: 850;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
header .suggest_price {
  font-size: 12px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.78);
  padding-left: 8px;
}
header {
  /* Empty results */
}
header .suggest_empty {
  padding: 16px 14px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 850;
}
header {
  /* Skeleton loading */
}
header .suggest_skeleton {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
}
header .suggest_skeleton .sk_thumb,
header .suggest_skeleton .sk_line,
header .suggest_skeleton .sk_price {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
header .suggest_skeleton .sk_thumb {
  width: 46px;
  height: 46px;
  border-radius: 16px;
}
header .suggest_skeleton .sk_line {
  height: 10px;
  width: 80%;
  margin-bottom: 8px;
}
header .suggest_skeleton .sk_line.small {
  width: 55%;
  opacity: 0.9;
}
header .suggest_skeleton .sk_price {
  width: 44px;
  height: 10px;
}
header .suggest_skeleton .sk_thumb::after,
header .suggest_skeleton .sk_line::after,
header .suggest_skeleton .sk_price::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-120%);
  animation: shimmer 1.15s infinite;
}
header .search_close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--secondary);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: var(--white);
}
header .search:not(.is-open) .search_close {
  display: none;
}
@keyframes shimmer {
  to {
    transform: translateX(120%);
  }
}
header .right_icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.search_trigger,
.sign_in_trigger {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.search_trigger:hover,
.sign_in_trigger:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}
.search_trigger:active,
.sign_in_trigger:active {
  transform: translateY(0) scale(0.99);
}
.search_trigger:focus-visible,
.sign_in_trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 22%, transparent);
}
.search_trigger .material-symbols-outlined,
.sign_in_trigger .material-symbols-outlined {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.78);
  transition: color 0.2s ease, transform 0.2s ease;
}
.search_trigger:hover .material-symbols-outlined,
.sign_in_trigger:hover .material-symbols-outlined {
  color: rgba(0, 0, 0, 0.92);
  transform: translateY(-0.5px);
}

.user_menu {
  position: relative;
}

.user_trigger {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  overflow: hidden;
}

.user_trigger img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.user_dropdown {
  position: absolute;
  right: 0;
  top: 120%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 180px;
  padding: 8px 0;
}

.user_dropdown a,
.user_dropdown button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  background: none;
  border: none;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.user_dropdown a:hover,
.user_dropdown button:hover {
  background: #f5f5f5;
}

.menu_trigger {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.menu_trigger:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}
.menu_trigger:active {
  transform: translateY(0) scale(0.99);
}
.menu_trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 22%, transparent), 0 14px 34px rgba(0, 0, 0, 0.1);
}
.menu_trigger {
  /* icon */
}
.menu_trigger .material-symbols-outlined {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.78);
  transition: color 0.2s ease, transform 0.2s ease;
}
.menu_trigger:hover .material-symbols-outlined {
  color: rgba(0, 0, 0, 0.92);
  transform: translateY(-0.5px);
}

/* Drawer root */
.menu_drawer {
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.menu_drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop (UNCHANGED as requested) */
.menu_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Right sliding panel (slide behavior unchanged) */
.menu_panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(390px, 92vw);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 50%, #faf7f2 100%);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.22);
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  /* premium glow using brand color */
}
.menu_panel::before {
  content: "";
  position: absolute;
  inset: -35% -45% auto -45%;
  height: 260px;
  background: radial-gradient(circle at 72% 28%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 62%);
  pointer-events: none;
}
.menu_panel {
  /* subtle bottom glow */
}
.menu_panel::after {
  content: "";
  position: absolute;
  inset: auto -45% -35% -45%;
  height: 240px;
  background: radial-gradient(circle at 78% 70%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 64%);
  pointer-events: none;
}

.menu_drawer.is-open .menu_panel {
  transform: translateX(0);
}

/* Header */
.menu_header {
  position: relative;
  z-index: 2;
  padding: 14px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Brand (logo + name) */
.menu_brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.menu_brand:focus-visible {
  outline: none;
  border-radius: 14px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 22%, transparent);
}

.menu_logo {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, #ffffff), color-mix(in srgb, var(--secondary) 14%, #ffffff));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.menu_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
}

.menu_brand_text {
  display: grid;
  line-height: 1.05;
  min-width: 0;
}

.menu_brand_name {
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu_brand_tag {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 750;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu_close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.75);
  transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.menu_close:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}
.menu_close:active {
  transform: translateY(0) scale(0.98);
}
.menu_close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 22%, transparent);
}

/* Body */
.menu_body {
  position: relative;
  z-index: 1;
  padding: 14px;
  overflow: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.menu_body::-webkit-scrollbar {
  width: 10px;
}
.menu_body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}

/* List */
.menu_mobile_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.menu_mobile_list li a,
.menu_mobile_list .mobile_parent {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 14px 0 16px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: rgba(0, 0, 0, 0.025);
  color: rgba(0, 0, 0, 0.84);
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  /* left accent indicator */
}
.menu_mobile_list li a::before,
.menu_mobile_list .mobile_parent::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 4px;
  height: 18px;
  border-radius: 99px;
  transform: translateY(-50%) scaleY(0.6);
  opacity: 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.menu_mobile_list li a:hover,
.menu_mobile_list .mobile_parent:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--primary) 22%, rgba(0, 0, 0, 0.09));
  background: color-mix(in srgb, var(--primary) 8%, #ffffff);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.9);
}
.menu_mobile_list li a:hover::before,
.menu_mobile_list .mobile_parent:hover::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(1);
}
.menu_mobile_list li a:active,
.menu_mobile_list .mobile_parent:active {
  transform: translateY(0) scale(0.99);
  background: color-mix(in srgb, var(--primary) 11%, #ffffff);
}
.menu_mobile_list li a:focus-visible,
.menu_mobile_list .mobile_parent:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 20%, transparent);
}
.menu_mobile_list .mobile_parent {
  cursor: pointer;
}
.menu_mobile_list {
  /* Optional "current page" style */
}
.menu_mobile_list .menu_link.is-active {
  background: color-mix(in srgb, var(--secondary) 10%, #ffffff);
  border-color: color-mix(in srgb, var(--secondary) 26%, rgba(0, 0, 0, 0.09));
}
.menu_mobile_list .menu_link.is-active::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(1);
  background: linear-gradient(180deg, var(--secondary), var(--accent));
}

/* Children accordion */
.mobile_has_children .chev {
  font-size: 14px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.mobile_has_children.is-open .chev {
  transform: rotate(180deg);
}
.mobile_has_children .mobile_children {
  list-style: none;
  margin: 8px 0 0;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: none;
  gap: 8px;
  /* nice nested depth */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.mobile_has_children .mobile_children li {
  margin: 10px 0;
}
.mobile_has_children .mobile_children li a {
  height: 46px;
  border-radius: 14px;
  font-weight: 850;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.mobile_has_children .mobile_children li a:hover {
  background: color-mix(in srgb, var(--accent) 8%, #ffffff);
  border-color: color-mix(in srgb, var(--accent) 22%, rgba(0, 0, 0, 0.07));
}
.mobile_has_children.is-open .mobile_children {
  display: grid;
}

/* Optional: lock background scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .menu_drawer,
  .menu_panel,
  .menu_close,
  .menu_mobile_list li a,
  .menu_mobile_list .mobile_parent {
    transition: none !important;
  }
}
.horeca-section {
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(var(--primary), 0.04), rgba(var(--secondary), 0.06));
}
.horeca-section .horeca-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}
.horeca-section .horeca-header .horeca-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.horeca-section .horeca-header .horeca-title span {
  color: var(--accent);
}
.horeca-section .horeca-header .horeca-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(var(--secondary), 0.85);
}
.horeca-section .horeca-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .horeca-section .horeca-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .horeca-section .horeca-cards {
    grid-template-columns: 1fr;
  }
}
.horeca-section .horeca-cards .horeca-card:nth-child(1) {
  background-image: url("https://res.cloudinary.com/dddwxzzez/image/upload/v1770536889/multicusine_pqungg.jpg");
}
.horeca-section .horeca-cards .horeca-card:nth-child(2) {
  background-image: url("https://res.cloudinary.com/dddwxzzez/image/upload/v1770536889/star_hotels_sa2djh.jpg");
}
.horeca-section .horeca-cards .horeca-card:nth-child(3) {
  background-image: url("https://res.cloudinary.com/dddwxzzez/image/upload/v1770536889/caterers_ukbryx.jpg");
}
.horeca-section .horeca-card {
  position: relative;
  height: 400px;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
  /* DARK CINEMATIC OVERLAY */
}
.horeca-section .horeca-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75));
  z-index: 1;
}
.horeca-section .horeca-card {
  /* ACCENT GLOW */
}
.horeca-section .horeca-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(var(--accent), 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.horeca-section .horeca-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.45);
}
.horeca-section .horeca-card:hover::after {
  opacity: 1;
}
.horeca-section .horeca-card:hover .card-overlay {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(var(--accent), 0.55);
}
.horeca-section .horeca-card:hover h3 {
  letter-spacing: 0.6px;
}
.horeca-section .horeca-card .card-overlay {
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  z-index: 2;
  padding: 22px 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: all 0.5s ease;
}
.horeca-section .horeca-card .card-overlay .card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--accent);
}
.horeca-section .horeca-card .card-overlay h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  transition: all 0.4s ease;
}
@media (max-width: 480px) {
  .horeca-section .horeca-card {
    height: 320px;
  }
  .horeca-section .horeca-card .card-overlay {
    top: 18px;
    left: 18px;
    right: 18px;
  }
  .horeca-section .horeca-card .card-overlay h3 {
    font-size: 21px;
  }
}

.horeca_main {
  padding: 5rem 0;
}
.horeca_main .sub_heading_text {
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.horeca_main .horeca_filters_section {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
}
@media (max-width: 768px) {
  .horeca_main .horeca_filters_section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.horeca_main {
  /* =========================
   Category Slider
   ========================= */
}
.horeca_main .category_slider_wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}
.horeca_main .category_slider_wrapper .slider_nav {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.78);
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.horeca_main .category_slider_wrapper .slider_nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}
.horeca_main .category_slider_wrapper .slider_nav:active {
  transform: translateY(0) scale(0.99);
}
.horeca_main .category_slider_wrapper .slider_nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 20%, transparent);
}
.horeca_main .category_slider_wrapper .category_slider {
  display: flex;
  gap: 10px;
  overflow: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 4px;
  /* hide scrollbar but still scroll */
}
.horeca_main .category_slider_wrapper .category_slider::-webkit-scrollbar {
  height: 0;
}
.horeca_main .category_slider_wrapper .category_item {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.01em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: rgba(0, 0, 0, 0.78);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.horeca_main .category_slider_wrapper .category_item:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--primary) 8%, #ffffff);
  border-color: color-mix(in srgb, var(--primary) 22%, rgba(0, 0, 0, 0.1));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}
.horeca_main .category_slider_wrapper .category_item:active {
  transform: translateY(0) scale(0.99);
}
.horeca_main .category_slider_wrapper .category_item.active {
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 44px color-mix(in srgb, var(--primary) 30%, transparent);
}
@media (max-width: 640px) {
  .horeca_main .category_slider_wrapper {
    grid-template-columns: 40px 1fr 40px;
    padding: 8px;
  }
  .horeca_main .category_slider_wrapper .slider_nav {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .horeca_main .category_slider_wrapper .category_item {
    height: 40px;
    font-size: 12px;
    padding: 0 12px;
  }
}
.horeca_main {
  /* =========================
   Filters
   ========================= */
}
.horeca_main .filters {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  /* make select + input match */
}
.horeca_main .filters select,
.horeca_main .filters input {
  height: 48px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.82);
  padding: 0 14px;
  outline: none;
  transition: transform 0.12s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.horeca_main .filters input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 850;
}
.horeca_main .filters input::placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 850;
}
.horeca_main .filters {
  /* focus state */
}
.horeca_main .filters select:focus,
.horeca_main .filters input:focus {
  border-color: color-mix(in srgb, var(--primary) 28%, rgba(0, 0, 0, 0.1));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent);
  background: rgba(255, 255, 255, 0.92);
}
.horeca_main .filters {
  /* hover lift */
}
.horeca_main .filters select:hover,
.horeca_main .filters input:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
}
.horeca_main .filters {
  /* nicer native select arrow */
}
.horeca_main .filters select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.65) 50%), linear-gradient(135deg, rgba(0, 0, 0, 0.65) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .horeca_main .filters {
    grid-template-columns: 1fr;
  }
}
.horeca_main {
  /* Products */
}
.horeca_main .products_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .horeca_main .products_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}
.horeca_main .products_container .product_card {
  position: relative;
  border-radius: 24px;
  padding: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 55%, #faf7f2 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  /* premium glow */
}
.horeca_main .products_container .product_card::before {
  content: "";
  position: absolute;
  inset: -45% -35% auto -35%;
  height: 220px;
  background: radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 62%);
  pointer-events: none;
}
.horeca_main .products_container .product_card {
  /* subtle bottom glow */
}
.horeca_main .products_container .product_card::after {
  content: "";
  position: absolute;
  inset: auto -35% -55% -35%;
  height: 240px;
  background: radial-gradient(circle at 60% 70%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 66%);
  pointer-events: none;
}
.horeca_main .products_container .product_card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--primary) 22%, rgba(0, 0, 0, 0.1));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.horeca_main .products_container .product_card {
  /* make focus on whole card feel premium */
}
.horeca_main .products_container .product_card:focus-within {
  border-color: color-mix(in srgb, var(--primary) 30%, rgba(0, 0, 0, 0.1));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent), 0 20px 50px rgba(0, 0, 0, 0.12);
}
.horeca_main .products_container .product_card .product_link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  z-index: 1;
}
.horeca_main .products_container .product_card {
  /* =========================
   Image
   ========================= */
}
.horeca_main .products_container .product_card .product_image {
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.05), transparent 55%), linear-gradient(180deg, #ffffff, #f7f5f0);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
}
.horeca_main .products_container .product_card .product_image img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.22s ease, filter 0.22s ease;
  filter: saturate(1.03) contrast(1.03);
}
.horeca_main .products_container .product_card:hover .product_image img {
  transform: scale(1.06);
}
.horeca_main .products_container .product_card {
  /* =========================
   Title
   ========================= */
}
.horeca_main .products_container .product_card .product_title {
  margin-top: 12px;
  padding: 0 6px;
}
.horeca_main .products_container .product_card .product_title h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.88);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.7em;
}
.horeca_main .products_container .product_card {
  /* =========================
   Price Pill
   ========================= */
}
.horeca_main .products_container .product_card .product_price {
  padding: 0 6px;
  display: flex;
  justify-content: flex-start;
}
.horeca_main .products_container .product_card .product_price span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 950;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.84);
  background: color-mix(in srgb, var(--secondary) 10%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--secondary) 22%, rgba(0, 0, 0, 0.08));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .horeca_main .products_container .product_card .product_price span {
    padding: 5px 8px;
    font-size: 11px;
    margin-top: 5px;
  }
}
.horeca_main .products_container .product_card {
  /* =========================
   Purchase Block
   ========================= */
}
.horeca_main .products_container .product_card .purchase_block {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 12px 6px 4px;
  display: grid;
  gap: 10px;
}
.horeca_main .products_container .product_card {
  /* Qty stepper */
}
.horeca_main .products_container .product_card .qty_controls {
  display: grid;
  grid-template-columns: 20% 60% 20%;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.horeca_main .products_container .product_card .qty_controls .qty_btn {
  height: 42px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: rgba(0, 0, 0, 0.82);
  font-size: 18px;
  font-weight: 950;
  transition: background 0.18s ease, transform 0.12s ease;
}
.horeca_main .products_container .product_card .qty_controls .qty_btn:hover {
  background: color-mix(in srgb, var(--primary) 12%, #ffffff);
}
.horeca_main .products_container .product_card .qty_controls .qty_btn:active {
  transform: scale(0.98);
  background: color-mix(in srgb, var(--primary) 16%, #ffffff);
}
.horeca_main .products_container .product_card .qty_controls .qty_btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--primary) 22%, transparent);
}
.horeca_main .products_container .product_card .qty_controls .qty_input {
  height: 42px;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-weight: 950;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.88);
  outline: none;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.horeca_main .products_container .product_card .qty_controls .qty_input::-webkit-outer-spin-button, .horeca_main .products_container .product_card .qty_controls .qty_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.horeca_main .products_container .product_card {
  /* Add to cart button */
}
.horeca_main .products_container .product_card .add_btn {
  height: 48px;
  width: 100%;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  box-shadow: 0 18px 44px color-mix(in srgb, var(--secondary) 30%, transparent);
  transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.horeca_main .products_container .product_card .add_btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 22px 58px color-mix(in srgb, var(--secondary) 38%, transparent);
  transform: translateY(-1px);
}
.horeca_main .products_container .product_card .add_btn:active {
  transform: translateY(0) scale(0.99);
  filter: brightness(1);
}
.horeca_main .products_container .product_card .add_btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent), 0 22px 58px color-mix(in srgb, var(--secondary) 38%, transparent);
}
.horeca_main .pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin: 18px 0;
  flex-wrap: wrap;
}
.horeca_main .page_btn {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 8px;
}
.horeca_main .page_btn.is-active {
  border-color: #000;
  font-weight: 600;
}
.horeca_main .page_btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.horeca_main .page_dots {
  padding: 0 6px;
  opacity: 0.7;
}

.logo_section {
  display: flex;
  justify-content: center;
  width: 100%;
}
.logo_section .Wow_kitchen_logo_area {
  display: flex;
  width: 100%;
  max-width: 300px;
  background-color: #3b5c14;
  aspect-ratio: 1.8;
  border-radius: 2rem;
}
.logo_section .Wow_kitchen_logo_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.kitchen_content_area {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.kitchen_content_area h2 {
  margin-top: 3rem;
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase;
}

.category_area {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.category_area .cat_block {
  width: 100%;
  background-color: #b0cc36;
  padding: 2rem 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.category_area .cat_block h4 {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.category_area .cat_block p {
  font-weight: 500;
  margin-top: 1.2rem;
}

/* =========================
   Auth Popup (Top → Down)
   ========================= */
.auth_modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.auth_modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.auth_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Panel comes from top to bottom */
.auth_panel {
  position: relative;
  margin: 18px auto 0;
  width: min(520px, 100vw - 24px);
  border-radius: 26px;
  overflow: hidden;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  transform: translateY(-18px);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
  /* premium glow */
}
.auth_panel::before {
  content: "";
  position: absolute;
  inset: -45% -35% auto -35%;
  height: 280px;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 62%);
  pointer-events: none;
}
.auth_panel::after {
  content: "";
  position: absolute;
  inset: auto -35% -55% -35%;
  height: 280px;
  background: radial-gradient(circle at 70% 70%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 66%);
  pointer-events: none;
}

.auth_modal.is-open .auth_panel {
  transform: translateY(0);
}

/* Header */
.auth_header {
  position: relative;
  z-index: 1;
  border-radius: 0;
  padding: 14px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.auth_brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.auth_logo {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, #ffffff), color-mix(in srgb, var(--secondary) 14%, #ffffff));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.auth_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.auth_brand_text {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.auth_title {
  margin: 0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.1;
}

.auth_subtitle {
  margin: 0;
  font-size: 12px;
  font-weight: 850;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth_close {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.7);
}
.auth_close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}
.auth_close:active {
  transform: translateY(0) scale(0.99);
}
.auth_close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary) 20%, transparent);
}

/* Tabs */
.auth_tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px 12px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.auth_tab {
  height: 44px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0.01em;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.78);
}
.auth_tab:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--secondary) 8%, #ffffff);
  border-color: color-mix(in srgb, var(--secondary) 22%, rgba(0, 0, 0, 0.1));
}

.auth_tab.is-active {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  color: #fff;
  border: none;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--secondary) 28%, transparent);
}

.auth_body {
  position: relative;
  z-index: 1;
  padding: 14px;
}

/* Views */
.auth_view {
  display: none;
}
.auth_view.is-active {
  display: block;
}

/* Google button */
.auth_google {
  width: 100%;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 950;
  color: rgba(0, 0, 0, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.auth_google .g_icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.auth_google:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}
.auth_google:active {
  transform: translateY(0) scale(0.99);
}
.auth_google:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary) 18%, transparent);
}

/* Divider */
.auth_divider {
  margin: 14px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}
.auth_divider::before, .auth_divider::after {
  content: "";
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.auth_divider span {
  font-size: 12px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Form */
.auth_form {
  display: grid;
  gap: 10px;
}

.auth_field {
  display: grid;
  gap: 6px;
}
.auth_field span {
  font-size: 12px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.62);
}
.auth_field input {
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.78);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.84);
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.auth_field input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 850;
}
.auth_field input::placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 850;
}
.auth_field input:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: color-mix(in srgb, var(--secondary) 28%, rgba(0, 0, 0, 0.1));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary) 18%, transparent);
}

.auth_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.auth_check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 850;
  color: rgba(0, 0, 0, 0.62);
}
.auth_check input {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
}
.auth_check.terms {
  margin-top: 4px;
}

.auth_link {
  color: var(--secondary);
  font-weight: 900;
  text-decoration: none;
}
.auth_link:hover {
  color: var(--secondary-hover);
  text-decoration: underline;
}

/* Primary CTA */
.auth_primary {
  height: 50px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
  box-shadow: 0 18px 46px color-mix(in srgb, var(--secondary) 30%, transparent);
  transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.auth_primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 22px 60px color-mix(in srgb, var(--secondary) 36%, transparent);
}
.auth_primary:active {
  transform: translateY(0) scale(0.99);
}
.auth_primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary) 18%, transparent), 0 22px 60px color-mix(in srgb, var(--secondary) 36%, transparent);
}

.auth_bottom {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
  color: rgba(0, 0, 0, 0.62);
}

.auth_textbtn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 950;
  color: var(--secondary);
  margin-left: 6px;
}
.auth_textbtn:hover {
  color: var(--secondary-hover);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
  .auth_panel {
    margin-top: 12px;
    border-radius: 22px;
  }
  .auth_body {
    padding: 12px;
  }
}/*# sourceMappingURL=main.css.map */