@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  font-size: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

main {
  flex: 1;
  min-width: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  max-width: 100%;
}

button {
  cursor: pointer;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 {
  font-size: 1.5rem;
}
@media (min-width: 480px) {
  h1 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.25rem;
}
@media (min-width: 480px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  overflow-wrap: break-word;
}
p:last-child {
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
}

::selection {
  background: rgba(249, 115, 22, 0.15);
  color: #0f172a;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 480px) {
  .container {
    padding-inline: 1.25rem;
  }
}
@media (min-width: 768px) {
  .container {
    padding-inline: 1.5rem;
  }
}

.container--narrow {
  max-width: 960px;
}

.container--wide {
  max-width: 1440px;
}

.grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

.grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid--4 {
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.header-topbar {
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.75rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .header-topbar {
    display: none;
  }
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}

.header-topbar-left,
.header-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .header-topbar-left,
  .header-topbar-right {
    gap: 1.25rem;
  }
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-weight: 400;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
}
.topbar-item:hover {
  color: #0f172a;
}
.topbar-item i {
  font-size: 10px;
  color: #f97316;
}

.topbar-admin {
  padding-left: 1rem;
  border-left: 1px solid #e2e8f0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #f1f5f9;
  border-radius: 6px;
  padding: 2px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 22px;
  padding: 0 0.5rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #64748b;
  border-radius: 4px;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
}
.lang-pill:hover {
  color: #0f172a;
}
.lang-pill.is-active {
  background: #f97316;
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
}

.header-main {
  border-bottom: 1px solid #e2e8f0;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
@media (min-width: 480px) {
  .header-main-inner {
    height: 60px;
  }
}
@media (min-width: 768px) {
  .header-main-inner {
    height: 64px;
  }
}
@media (min-width: 1024px) {
  .header-main-inner {
    height: 72px;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}
.site-logo .logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 480px) {
  .site-logo .logo-img {
    height: 90px;
  }
}
@media (min-width: 768px) {
  .site-logo .logo-img {
    height: 110px;
  }
}
@media (min-width: 1024px) {
  .site-logo .logo-img {
    height: 160px;
  }
}
.site-logo:hover .logo-img {
  transform: scale(1.03);
}

.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  border-radius: 6px;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1), background 150ms cubic-bezier(0.2, 0, 0, 1);
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .nav-link {
    padding: 0.5rem 1rem;
  }
}
.nav-link:hover {
  color: #0f172a;
  background: #f8fafc;
}
.nav-link.is-active {
  color: #0f172a;
}
.nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: #f97316;
  border-radius: 2px;
}
@media (min-width: 1280px) {
  .nav-link.is-active::after {
    left: 1rem;
    right: 1rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .header-actions {
    gap: 0.75rem;
  }
}

.header-cta {
  display: none;
}
@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}
.header-cta {
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background: #f97316;
  border-radius: 6px;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .header-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}
.header-cta i {
  font-size: 0.75rem;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1);
}
.header-cta:hover {
  background: #ea580c;
}
.header-cta:hover i {
  transform: translateX(3px);
}

.header-lang-mobile {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #f1f5f9;
  border-radius: 6px;
  padding: 2px;
}
@media (min-width: 1024px) {
  .header-lang-mobile {
    display: none;
  }
}

.header-lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  padding: 0 0.25rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #64748b;
  border-radius: 4px;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
  text-decoration: none;
}
.header-lang-pill:hover {
  color: #0f172a;
}
.header-lang-pill.is-active {
  background: #f97316;
  color: #ffffff;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  transition: background 150ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle:hover {
  background: #f8fafc;
}
.mobile-menu-toggle .hamburger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: all 250ms cubic-bezier(0.2, 0, 0, 1);
}
.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.flash-messages {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: calc(100vw - 2rem);
  width: 100%;
}
@media (min-width: 480px) {
  .flash-messages {
    max-width: 380px;
  }
}
@media (min-width: 768px) {
  .flash-messages {
    max-width: 420px;
    top: calc(108px + 1rem);
  }
}

.flash-message {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  animation: slideInRight 0.4s cubic-bezier(0.2, 0, 0, 1);
  border-left: 4px solid;
}
@media (min-width: 768px) {
  .flash-message {
    padding: 1rem 1.25rem;
  }
}
.flash-message .flash-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.flash-message .flash-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.5;
  transition: opacity 150ms cubic-bezier(0.2, 0, 0, 1);
  flex-shrink: 0;
}
.flash-message .flash-close:hover {
  opacity: 1;
}
.flash-message.flash-success {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #166534;
}
.flash-message.flash-danger, .flash-message.flash-error {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}
.flash-message.flash-warning {
  background: #fefce8;
  border-color: #eab308;
  color: #854d0e;
}
.flash-message.flash-info {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #1e40af;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.main-content {
  padding-top: 1.25rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .main-content {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

.section {
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 4rem 0;
  }
}
@media (min-width: 1280px) {
  .section {
    padding: 5rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}
.section-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f97316;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.section-header .section-tag i {
  font-size: 10px;
}
.section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
@media (min-width: 480px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}
.section-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 600px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .section-header p {
    font-size: 1.125rem;
  }
}

.section-footer {
  text-align: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .section-footer {
    margin-top: 2.5rem;
  }
}

.admin-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}
.admin-toolbar .admin-toolbar-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
  white-space: nowrap;
}
.admin-toolbar .admin-toolbar-btn:hover {
  background: #ffffff;
  border-color: #94a3b8;
}
.admin-toolbar .admin-toolbar-btn.admin-toolbar-btn--danger {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}
.admin-toolbar .admin-toolbar-btn.admin-toolbar-btn--danger:hover {
  background: #fef2f2;
}

.site-footer {
  color: #475569;
  padding: 2.5rem 0 0;
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 3rem 0 0;
  }
}
@media (min-width: 1024px) {
  .site-footer {
    padding: 4rem 0 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}
@media (min-width: 480px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }
}

.footer-col {
  min-width: 0;
}
.footer-col h3, .footer-col h4 {
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-col h3, .footer-col h4 {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 479px) {
  .footer-col:first-child {
    grid-column: 1/-1;
  }
}
.footer-col:first-child .footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: opacity 150ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 480px) {
  .footer-col:first-child .footer-logo-img {
    height: 100px;
  }
}
@media (min-width: 1024px) {
  .footer-col:first-child .footer-logo-img {
    height: 160px;
  }
}
.footer-col:first-child .footer-logo-img:hover {
  opacity: 0.85;
}
.footer-col:first-child p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 280px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col ul a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1), transform 150ms cubic-bezier(0.2, 0, 0, 1);
}
.footer-col ul a:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}
.footer-col ul a:hover {
  color: #f97316;
  transform: translateX(4px);
}
.footer-col ul a i {
  font-size: 0.75rem;
  width: 16px;
  text-align: center;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
}
.footer-contact-item i {
  color: #f97316;
  width: 18px;
  text-align: center;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: #475569;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
  overflow-wrap: break-word;
  word-break: break-word;
}
.footer-contact-item a:hover {
  color: #f97316;
}
.footer-contact-item strong {
  color: #334155;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.875rem;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
}
.footer-social a:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}
.footer-social a:hover {
  background: #f97316;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
}
@media (min-width: 768px) {
  .footer-bottom {
    padding: 1.5rem 0;
  }
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer-bottom .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid;
}
.alert i {
  margin-top: 2px;
  flex-shrink: 0;
}
.alert--success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}
.alert--danger {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
.alert--warning {
  background: #fefce8;
  border-color: #fef08a;
  color: #854d0e;
}
.alert--info {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  line-height: 1.5;
}
.badge--primary {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.badge--success {
  background: #dcfce7;
  color: #166534;
}
.badge--danger {
  background: #fef2f2;
  color: #991b1b;
}
.badge--warning {
  background: #fef3c7;
  color: #92400e;
}
.badge--info {
  background: #dbeafe;
  color: #1e40af;
}
.badge--gray {
  background: #f1f5f9;
  color: #475569;
}

.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
  }
}

.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #64748b;
}
.breadcrumb-item a {
  color: #64748b;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
  text-decoration: none;
}
.breadcrumb-item a:hover {
  color: #f97316;
}
.breadcrumb-item.active {
  color: #0f172a;
  font-weight: 500;
}

.breadcrumb-separator {
  color: #cbd5e1;
  font-size: 0.75rem;
  margin: 0 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.2, 0, 0, 1);
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn i {
  font-size: 0.85em;
}

.btn--primary,
.btn-primary {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
}
.btn--primary:hover,
.btn-primary:hover {
  background: #ea580c;
  border-color: #ea580c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
  color: #ffffff;
}
.btn--primary:active,
.btn-primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5e1;
}
.btn--secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.btn--outline-accent,
.btn-outline {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5e1;
}
.btn--outline-accent:hover,
.btn-outline:hover {
  background: #f8fafc;
  border-color: #f97316;
  color: #f97316;
}

.btn--ghost {
  background: transparent;
  color: #f97316;
  border-color: transparent;
  padding-inline: 0.75rem;
}
.btn--ghost:hover {
  background: rgba(249, 115, 22, 0.06);
}

.btn--white {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
}
.btn--white:hover {
  background: #f1f5f9;
  border-color: #f1f5f9;
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.btn--white-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--danger,
.btn-danger {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}
.btn--danger:hover,
.btn-danger:hover {
  background: rgb(235.7842364532, 30.4157635468, 30.4157635468);
  transform: translateY(-1px);
}

.btn--sm,
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 6px;
}

.btn--lg,
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn--xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.u-w-full,
.btn-block {
  width: 100%;
}

.btn--icon {
  padding: 0.75rem;
  width: 40px;
  height: 40px;
}

.product-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 250ms cubic-bezier(0.2, 0, 0, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) {
  .product-card {
    border-radius: 16px;
  }
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-image-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0, 0, 1);
}

.product-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #94a3b8;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .product-card-placeholder {
    font-size: 2rem;
  }
}

.product-card-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: #0f172a;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: 2;
}
@media (min-width: 768px) {
  .product-card-badge {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }
}
.product-card-badge.badge-new, .product-card-badge.badge--new {
  background: #22c55e;
}
.product-card-badge.badge-used, .product-card-badge.badge--used {
  background: #475569;
}
.product-card-badge.badge-refurbished {
  background: #3b82f6;
}
.product-card-badge.badge-one-trip {
  background: #8b5cf6;
}

.product-card-select {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: none;
}
.admin-mode .product-card-select {
  display: block;
}
.product-card-select input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #f97316;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .product-card-body {
    padding: 1.25rem;
    gap: 0.75rem;
  }
}

.product-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
@media (min-width: 768px) {
  .product-card-title {
    font-size: 1rem;
  }
}
.product-card-title a {
  color: inherit;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
}
.product-card-title a:hover {
  color: #f97316;
}

.product-card-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .product-card-meta {
    gap: 0.5rem;
  }
}
.product-card-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 10px;
  color: #64748b;
  background: #f8fafc;
  padding: 2px 0.5rem;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .product-card-meta li {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}
.product-card-meta li i {
  font-size: 10px;
  color: #94a3b8;
}

.product-card-price {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}
@media (min-width: 768px) {
  .product-card-price {
    padding-top: 0.75rem;
  }
}
.product-card-price .price-amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}
@media (min-width: 768px) {
  .product-card-price .price-amount {
    font-size: 1.25rem;
  }
}
.product-card-price .price-vat {
  font-size: 0.75rem;
  color: #64748b;
  margin-left: 0.25rem;
}
.product-card-price .price-on-request {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f97316;
}

.product-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .product-card-actions {
    margin-top: 0.75rem;
  }
}
.product-card-actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
}

.product-card-admin-delete {
  display: none;
}
.admin-mode .product-card-admin-delete {
  display: block;
}
.product-card-admin-delete {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 3;
}

.catalog-section {
  padding: 1rem 0 2.5rem;
}
@media (min-width: 768px) {
  .catalog-section {
    padding: 1.5rem 0 4rem;
  }
}

.catalog-header {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .catalog-header {
    margin-bottom: 2rem;
  }
}
.catalog-header .page-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
@media (min-width: 480px) {
  .catalog-header .page-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .catalog-header .page-title {
    font-size: 2rem;
  }
}
.catalog-header .page-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  max-width: 600px;
}
@media (min-width: 768px) {
  .catalog-header .page-subtitle {
    font-size: 1rem;
  }
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .catalog-layout {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }
}
@media (min-width: 1280px) {
  .catalog-layout {
    grid-template-columns: 300px 1fr;
  }
}

@media (max-width: 1023px) {
  .catalog-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1100;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.25rem;
    transition: left 250ms cubic-bezier(0.2, 0, 0, 1);
    overflow-y: auto;
  }
}
@media (max-width: 1023px) and (min-width: 480px) {
  .catalog-sidebar {
    width: 340px;
    padding: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .catalog-sidebar.is-open {
    left: 0;
  }
}
@media (min-width: 1024px) {
  .catalog-sidebar {
    position: sticky;
    top: calc(80px + 1rem);
    align-self: start;
  }
}

.filter-form {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .filter-form {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  }
}

.filter-header {
  padding: 1.25rem 1.25rem 0;
}
.filter-header .filter-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-header .filter-title i {
  color: #f97316;
}

.filter-group {
  padding: 1rem 1.25rem;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  margin: 0;
}
.filter-group:last-of-type {
  border-bottom: none;
}

.filter-group-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  padding: 0;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.filter-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #475569;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
}
.filter-radio:hover {
  background: #f8fafc;
  color: #0f172a;
}
.filter-radio input[type=radio] {
  accent-color: #f97316;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.filter-radio input[type=radio]:checked + span {
  color: #f97316;
  font-weight: 500;
}
.filter-radio .filter-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 400;
}

.filter-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.filter-search-wrapper .filter-search-icon {
  position: absolute;
  left: 0.75rem;
  color: #94a3b8;
  font-size: 0.875rem;
  pointer-events: none;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
}
.filter-search-wrapper .filter-search-input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #334155;
  background: #f8fafc;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
}
.filter-search-wrapper .filter-search-input::placeholder {
  color: #94a3b8;
}
.filter-search-wrapper .filter-search-input:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}
.filter-search-wrapper .filter-search-input:focus {
  outline: none;
  border-color: #f97316;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
}
.filter-search-wrapper:focus-within .filter-search-icon {
  color: #f97316;
}

.filter-select {
  width: 100%;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #475569;
  background: #ffffff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748b' d='M4.427 6.427l3.396 3.396a.25.25 0 00.354 0l3.396-3.396A.25.25 0 0011.396 6H4.604a.25.25 0 00-.177.427z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
}
.filter-select:focus {
  border-color: #f97316;
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
}

.filter-price-range .price-input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-price-range .filter-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.875rem;
  min-width: 0;
}
.filter-price-range .filter-input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
}
.filter-price-range .filter-input::placeholder {
  color: #94a3b8;
}
.filter-price-range .price-separator {
  color: #94a3b8;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.filter-price-range .price-currency {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem 1.25rem;
}
.filter-actions .btn {
  width: 100%;
  justify-content: center;
}

.catalog-main {
  min-width: 0;
}

.catalog-search {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .catalog-search {
    margin-bottom: 1.5rem;
  }
}
.catalog-search .search-input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 150ms cubic-bezier(0.2, 0, 0, 1);
}
.catalog-search .search-input-group:focus-within {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
}
.catalog-search .search-input-group i {
  padding-left: 0.75rem;
  color: #94a3b8;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .catalog-search .search-input-group i {
    padding-left: 1rem;
  }
}
.catalog-search .search-input-group .search-input {
  flex: 1;
  border: none;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: #334155;
  background: transparent;
  min-width: 0;
}
@media (min-width: 768px) {
  .catalog-search .search-input-group .search-input {
    padding: 0.75rem 1rem;
  }
}
.catalog-search .search-input-group .search-input::placeholder {
  color: #94a3b8;
}
.catalog-search .search-input-group .search-input:focus {
  outline: none;
}
.catalog-search .search-input-group .btn {
  border-radius: 0;
  border: none;
  border-left: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}
@media (min-width: 768px) {
  .results-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}

.results-count {
  font-size: 0.875rem;
  color: #64748b;
}

.results-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.results-sort .sort-label {
  font-size: 0.875rem;
  color: #64748b;
  white-space: nowrap;
  display: none;
}
@media (min-width: 480px) {
  .results-sort .sort-label {
    display: inline;
  }
}
.results-sort .sort-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #475569;
  background: #ffffff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748b' d='M4.427 6.427l3.396 3.396a.25.25 0 00.354 0l3.396-3.396A.25.25 0 0011.396 6H4.604a.25.25 0 00-.177.427z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
}
.results-sort .sort-select:focus {
  border-color: #f97316;
  outline: none;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 2.5rem 1rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 2px dashed #e2e8f0;
}
@media (min-width: 768px) {
  .empty-state {
    padding: 4rem 1rem;
  }
}
.empty-state i {
  font-size: 2rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
  display: block;
}
@media (min-width: 768px) {
  .empty-state i {
    font-size: 2.5rem;
  }
}
.empty-state h3 {
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .empty-state h3 {
    font-size: 1.25rem;
  }
}
.empty-state p {
  color: #64748b;
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-inline: auto;
}

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

.category-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: all 250ms cubic-bezier(0.2, 0, 0, 1);
}
.category-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.category-card .category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 10px;
  color: #f97316;
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: all 250ms cubic-bezier(0.2, 0, 0, 1);
}
.category-card:hover .category-icon {
  background: #f97316;
  color: #ffffff;
}
.category-card .category-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}
.category-card .category-count {
  font-size: 0.75rem;
  color: #64748b;
}

.contact-section {
  padding: 1.25rem 0 2.5rem;
}
@media (min-width: 768px) {
  .contact-section {
    padding: 2rem 0 4rem;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contact-header {
    margin-bottom: 2.5rem;
  }
}
.contact-header .page-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
@media (min-width: 480px) {
  .contact-header .page-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .contact-header .page-title {
    font-size: 2rem;
  }
}
.contact-header .page-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  max-width: 600px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .contact-header .page-subtitle {
    font-size: 1rem;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-layout {
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact-info {
    gap: 1.25rem;
  }
}

.contact-card {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 250ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 768px) {
  .contact-card {
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 16px;
  }
}
.contact-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 10px;
  color: #f97316;
  font-size: 1rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .contact-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
}

.contact-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #0f172a;
}
@media (min-width: 768px) {
  .contact-card-title {
    font-size: 1rem;
  }
}

.contact-card-text {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .contact-card-text {
    font-size: 0.875rem;
  }
}

.contact-card-link {
  display: inline-block;
  font-size: 0.875rem;
  color: #f97316;
  font-weight: 500;
  text-decoration: none;
  word-break: break-all;
}
.contact-card-link:hover {
  text-decoration: underline;
}

.contact-card-hours {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.contact-form-container {
  min-width: 0;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem;
}
@media (min-width: 480px) {
  .contact-form-card {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  .contact-form-card {
    padding: 2rem;
    border-radius: 16px;
  }
}
@media (min-width: 1024px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}
.contact-form-card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #0f172a;
}
@media (min-width: 768px) {
  .contact-form-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.contact-form-grid .full-width {
  grid-column: 1/-1;
}

.contact-privacy {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 1rem;
}
.contact-privacy a {
  color: #f97316;
  text-decoration: underline;
}

.cc-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms cubic-bezier(0.2, 0, 0, 1), visibility 250ms cubic-bezier(0.2, 0, 0, 1);
}
.cc-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.cc-banner {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: calc(100% - 1.5rem);
  max-width: 380px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms cubic-bezier(0.2, 0, 0, 1), transform 250ms cubic-bezier(0.2, 0, 0, 1), visibility 250ms cubic-bezier(0.2, 0, 0, 1);
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 480px) {
  .cc-banner {
    width: calc(100% - 2rem);
    max-width: 420px;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 16px;
  }
}
.cc-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.cc-banner::-webkit-scrollbar {
  width: 6px;
}
.cc-banner::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

.cc-banner__icon {
  margin: 0 auto 0.75rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 480px) {
  .cc-banner__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }
}
.cc-banner__icon svg {
  display: block;
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 6px rgba(251, 191, 36, 0.4));
}
@media (min-width: 480px) {
  .cc-banner__icon svg {
    width: 56px;
    height: 56px;
  }
}

.cc-banner__title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .cc-banner__title {
    font-size: 1.125rem;
  }
}

.cc-banner__text {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
@media (min-width: 480px) {
  .cc-banner__text {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.cc-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cc-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: background 150ms cubic-bezier(0.2, 0, 0, 1), box-shadow 150ms cubic-bezier(0.2, 0, 0, 1), transform 150ms cubic-bezier(0.2, 0, 0, 1);
}
.cc-btn:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}
.cc-btn--accept {
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.35);
}
.cc-btn--accept:hover {
  background: rgb(234.3648535565, 99.579916318, 6.0351464435);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.45);
  transform: translateY(-1px);
}
.cc-btn--accept:active {
  transform: translateY(0);
}
.cc-btn--reject {
  background: transparent;
  color: #475569;
  border: 1.5px solid #cbd5e1;
}
.cc-btn--reject:hover {
  border-color: #94a3b8;
  background: #f8fafc;
  color: #334155;
}
.cc-btn--settings {
  background: transparent;
  color: #64748b;
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.5rem;
}
.cc-btn--settings i {
  font-size: 0.7rem;
}
.cc-btn--settings:hover {
  color: #f97316;
}
.cc-btn--save {
  background: #0f172a;
  color: #ffffff;
  margin-top: 1rem;
}
.cc-btn--save:hover {
  background: rgb(25.7368421053, 39.4631578947, 72.0631578947);
  transform: translateY(-1px);
}
.cc-btn--save:active {
  transform: translateY(0);
}

.cc-banner__link {
  display: inline-block;
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-bottom: 1rem;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
}
.cc-banner__link:hover {
  color: #f97316;
}

.cc-settings {
  display: none;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  text-align: left;
}
.cc-settings.is-open {
  display: block;
}

.cc-settings__group + .cc-settings__group {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.cc-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}
.cc-toggle input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cc-toggle input:disabled ~ .cc-toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.cc-toggle input:disabled ~ .cc-toggle__info {
  opacity: 0.7;
}

.cc-toggle__slider {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  background: #cbd5e1;
  border-radius: 9999px;
  transition: background 150ms cubic-bezier(0.2, 0, 0, 1);
  margin-top: 2px;
}
.cc-toggle__slider::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1);
}
input:checked + .cc-toggle__slider {
  background: #f97316;
}
input:checked + .cc-toggle__slider::after {
  transform: translateX(20px);
}
input:focus-visible + .cc-toggle__slider {
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
}

.cc-toggle__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cc-toggle__info strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}
.cc-toggle__info small {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.6;
}

.cc-fab {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  position: fixed;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #f97316;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.7);
  transition: opacity 250ms cubic-bezier(0.2, 0, 0, 1), visibility 250ms cubic-bezier(0.2, 0, 0, 1), transform 250ms cubic-bezier(0.2, 0, 0, 1), background 150ms cubic-bezier(0.2, 0, 0, 1), box-shadow 150ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 480px) {
  .cc-fab {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
}
.cc-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.cc-fab:hover {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
  transform: scale(1.08);
}
.cc-fab:active {
  transform: scale(0.98);
}
.cc-fab:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

.cta-section {
  background: #0f172a;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .cta-section {
    padding: 4rem 0;
  }
}

.cta-content {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.cta-content h2 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 480px) {
  .cta-content h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.cta-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

.error-section {
  padding: 2.5rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }
}

.error-card {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  padding: 1.5rem 1rem;
}
@media (min-width: 768px) {
  .error-card {
    padding: 2.5rem;
  }
}

.error-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 9999px;
  color: #f97316;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .error-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}

.error-code {
  font-size: 4rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
@media (min-width: 480px) {
  .error-code {
    font-size: 5rem;
  }
}
@media (min-width: 768px) {
  .error-code {
    font-size: 6rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .error-code {
    font-size: 8rem;
  }
}

.error-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .error-title {
    font-size: 1.5rem;
  }
}

.error-message {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .error-message {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.error-detail {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .error-detail {
    margin-bottom: 1.5rem;
  }
}

.error-suggestions {
  text-align: left;
  background: #f8fafc;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .error-suggestions {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
  }
}

.error-suggestions-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.error-suggestions-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.error-suggestions-list li {
  font-size: 0.875rem;
  color: #475569;
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.8;
}
.error-suggestions-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #f97316;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .error-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.error-support {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .error-support {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}
.error-support p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.error-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f97316;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
@media (min-width: 768px) {
  .error-phone {
    font-size: 1.125rem;
  }
}
.error-phone:hover {
  text-decoration: underline;
}

.form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .form-card {
    border-radius: 16px;
  }
}

.form-card-header {
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}
@media (min-width: 768px) {
  .form-card-header {
    padding: 1.5rem 1.5rem 1rem;
  }
}

.form-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .form-card-title {
    font-size: 1.25rem;
  }
}
.form-card-title i {
  color: #f97316;
  font-size: 1.125rem;
}

.form-card-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.form-card-body {
  padding: 1rem;
}
@media (min-width: 480px) {
  .form-card-body {
    padding: 1.25rem;
  }
}
@media (min-width: 768px) {
  .form-card-body {
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .form-card-body {
    padding: 2rem;
  }
}

.form-row {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .form-row {
    margin-bottom: 1.25rem;
  }
}
.form-row:last-child {
  margin-bottom: 0;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
@media (min-width: 768px) {
  .form-row-2 {
    margin-bottom: 1.25rem;
  }
}
.form-row-2:last-child {
  margin-bottom: 0;
}
.form-row-2 .form-group {
  margin-bottom: 0;
}

.form-actions {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}
@media (min-width: 768px) {
  .form-actions {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.form-label i {
  color: #94a3b8;
  font-size: 0.75rem;
}
.form-label .required {
  color: #ef4444;
  font-weight: 700;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #334155;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
  appearance: none;
}
.form-control::placeholder {
  color: #94a3b8;
}
.form-control:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
}
.form-control.is-invalid {
  border-color: #ef4444;
}
.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}
@media (min-width: 768px) {
  textarea.form-control {
    min-height: 120px;
  }
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748b' d='M4.427 6.427l3.396 3.396a.25.25 0 00.354 0l3.396-3.396A.25.25 0 0011.396 6H4.604a.25.25 0 00-.177.427z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}
.form-check input[type=radio], .form-check input[type=checkbox] {
  accent-color: #f97316;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.875rem;
  color: #475569;
  cursor: pointer;
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #f97316;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-checkbox-label {
  font-size: 0.875rem;
  color: #475569;
  cursor: pointer;
  line-height: 1.8;
}
.form-checkbox-label a {
  color: #f97316;
  text-decoration: underline;
}
.form-checkbox-label a:hover {
  color: #ea580c;
}

.form-error, .invalid-feedback {
  display: block;
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
}
.form-error i, .invalid-feedback i {
  margin-right: 0.25rem;
}

.form-privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 10px;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .form-privacy-notice {
    padding: 1rem;
    margin-top: 1.25rem;
  }
}
.form-privacy-notice > i {
  color: #94a3b8;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-privacy-notice p {
  margin: 0;
}
.form-privacy-notice a {
  color: #f97316;
  text-decoration: underline;
}
.form-privacy-notice a:hover {
  color: #ea580c;
}

.form-text {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: #0f172a url("/images/hero-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}
@media (min-width: 480px) {
  .hero {
    min-height: 70vh;
  }
}
@media (min-width: 768px) {
  .hero {
    min-height: 80vh;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 85vh;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem 1rem;
}
@media (min-width: 480px) {
  .hero__inner {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 768px) {
  .hero__inner {
    padding: 4rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    padding: 5rem 2rem;
  }
}

.hero__title {
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .hero__title {
    margin-bottom: 1.25rem;
  }
}

.hero__subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero__subtitle {
    margin-bottom: 2.5rem;
  }
}

.hero__cta {
  gap: 0.75rem;
}
.hero__cta svg {
  transition: transform 250ms cubic-bezier(0.2, 0, 0, 1);
}
.hero__cta:hover svg {
  transform: translateX(4px);
}

.metrics {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.metrics__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.5rem;
  padding: 2rem 0;
}
@media (min-width: 480px) {
  .metrics__grid {
    gap: 1.5rem 2rem;
  }
}
@media (min-width: 768px) {
  .metrics__grid {
    flex-wrap: nowrap;
    gap: 2.5rem;
    padding: 2.5rem 0;
  }
}
@media (min-width: 1024px) {
  .metrics__grid {
    padding: 3rem 0;
  }
}

.metrics__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  width: calc(50% - 1rem);
}
@media (min-width: 480px) {
  .metrics__item {
    width: auto;
    min-width: 120px;
  }
}

.metrics__number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .metrics__number {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .metrics__number {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .metrics__number {
    font-size: 3.25rem;
  }
}

.metrics__label {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
@media (min-width: 480px) {
  .metrics__label {
    font-size: 0.75rem;
  }
}

.metrics__divider {
  display: none;
}
@media (min-width: 768px) {
  .metrics__divider {
    display: block;
    width: 1px;
    height: 48px;
    background: #cbd5e1;
    flex-shrink: 0;
  }
}

.categories-section {
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .categories-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .categories-section {
    padding: 4rem 0;
  }
}
@media (min-width: 1280px) {
  .categories-section {
    padding: 5rem 0;
  }
}

.categories-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .categories-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .categories-section__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.cat-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: #0f172a;
  text-decoration: none;
}
@media (min-width: 480px) {
  .cat-card {
    min-height: 200px;
  }
}
@media (min-width: 768px) {
  .cat-card {
    min-height: 240px;
  }
}
@media (min-width: 1024px) {
  .cat-card {
    min-height: 280px;
  }
}

.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}
.cat-card:hover .cat-card__img {
  transform: scale(1.05);
}

.cat-card__image {
  position: absolute;
  inset: 0;
}
.cat-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}
.cat-card:hover .cat-card__image img {
  transform: scale(1.05);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.15) 60%, transparent 100%);
  transition: background 250ms cubic-bezier(0.2, 0, 0, 1);
}
.cat-card:hover .cat-card__overlay {
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.25) 60%, transparent 100%);
}

.cat-card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  color: rgba(255, 255, 255, 0.25);
  transition: color 250ms cubic-bezier(0.2, 0, 0, 1);
}
.cat-card:hover .cat-card__icon {
  color: rgba(255, 255, 255, 0.4);
}

.cat-card__name {
  position: relative;
  z-index: 2;
  padding: 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (min-width: 480px) {
  .cat-card__name {
    padding: 1.25rem;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .cat-card__name {
    font-size: 1.125rem;
    padding: 1.5rem;
  }
}

.featured-section {
  padding: 2.5rem 0;
  background: #f8fafc;
}
@media (min-width: 768px) {
  .featured-section {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .featured-section {
    padding: 4rem 0;
  }
}
@media (min-width: 1280px) {
  .featured-section {
    padding: 5rem 0;
  }
}

.featured-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 768px) {
  .featured-section__header {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .featured-section__header {
    margin-bottom: 2.5rem;
  }
}

.featured-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}
@media (min-width: 480px) {
  .featured-section__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .featured-section__title {
    font-size: 2rem;
  }
}

.featured-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f97316;
  transition: gap 250ms cubic-bezier(0.2, 0, 0, 1);
  white-space: nowrap;
}
.featured-section__link:hover {
  gap: 0.75rem;
}

.featured-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .featured-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .featured-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .featured-section__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.featured-section__empty {
  text-align: center;
  padding: 2.5rem 1rem;
}
@media (min-width: 768px) {
  .featured-section__empty {
    padding: 4rem 1.5rem;
  }
}
.featured-section__empty p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .featured-section__empty p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.prod-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 250ms cubic-bezier(0.2, 0, 0, 1), transform 250ms cubic-bezier(0.2, 0, 0, 1);
}
.prod-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.prod-card:hover .prod-card__image img {
  transform: scale(1.04);
}

.prod-card__image-link {
  display: block;
}

.prod-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
}
.prod-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.prod-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #cbd5e1;
}

.prod-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
}
@media (min-width: 768px) {
  .prod-card__body {
    padding: 1.25rem;
  }
}

.prod-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
  min-height: 2.5em;
}
@media (min-width: 768px) {
  .prod-card__title {
    margin-bottom: 1rem;
  }
}
.prod-card__title a {
  color: inherit;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
}
.prod-card__title a:hover {
  color: #f97316;
}

.prod-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}
@media (min-width: 768px) {
  .prod-card__footer {
    padding-top: 1rem;
  }
}

.prod-card__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}
.prod-card__price--request {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f97316;
}

.spotlight {
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .spotlight {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .spotlight {
    padding: 4rem 0;
  }
}
@media (min-width: 1280px) {
  .spotlight {
    padding: 5rem 0;
  }
}
.spotlight--reefer {
  background: linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.82)), url("/images/602bf0cf91.jpg") center/cover no-repeat;
  color: #ffffff;
}
.spotlight--reefer .spotlight__title {
  color: #ffffff;
}
.spotlight--reefer .spotlight__text {
  color: rgba(255, 255, 255, 0.8);
}
.spotlight--reefer .spotlight__tag {
  color: #f97316;
  background: rgba(249, 115, 22, 0.15);
}
.spotlight--reefer .spotlight__spec {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.spotlight--reefer .spotlight__spec-value {
  color: #ffffff;
}
.spotlight--reefer .spotlight__spec-label {
  color: rgba(255, 255, 255, 0.7);
}
.spotlight--sea {
  background: #f8fafc;
}

.spotlight__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .spotlight__inner {
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .spotlight__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .spotlight__inner--reverse {
    flex-direction: row-reverse;
  }
}

.spotlight__content {
  flex-shrink: 0;
  min-width: 0;
}
@media (min-width: 1024px) {
  .spotlight__content {
    max-width: 360px;
    position: sticky;
    top: calc(80px + 1.5rem);
  }
}

.spotlight__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f97316;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 9999px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .spotlight__tag {
    margin-bottom: 1.25rem;
  }
}
.spotlight__tag svg {
  flex-shrink: 0;
}

.spotlight__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
@media (min-width: 480px) {
  .spotlight__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .spotlight__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.spotlight__text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .spotlight__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.spotlight__specs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .spotlight__specs {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.spotlight__spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  min-width: 70px;
  text-align: center;
  transition: border-color 250ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 768px) {
  .spotlight__spec {
    padding: 0.75rem 1rem;
    min-width: 80px;
  }
}
.spotlight--reefer .spotlight__spec {
  background: rgba(14, 165, 233, 0.04);
  border-color: rgba(14, 165, 233, 0.15);
}
.spotlight__spec:hover {
  border-color: #f97316;
}

.spotlight__spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .spotlight__spec-value {
    font-size: 1.125rem;
  }
}

.spotlight__spec-label {
  font-size: 0.75rem;
  color: #64748b;
  white-space: nowrap;
}

.spotlight__products {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .spotlight__products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.spotlight__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem 1rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .spotlight__empty {
    padding: 3rem 1.5rem;
  }
}
.spotlight--sea .spotlight__empty {
  background: #ffffff;
}
.spotlight__empty p {
  color: #64748b;
  margin-bottom: 1.25rem;
}

.mid-cta {
  padding: 2.5rem 0;
  background: #0f172a;
}
@media (min-width: 768px) {
  .mid-cta {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .mid-cta {
    padding: 4rem 0;
  }
}
@media (min-width: 1280px) {
  .mid-cta {
    padding: 5rem 0;
  }
}

.mid-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .mid-cta__inner {
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .mid-cta__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    gap: 3rem;
  }
}

.mid-cta__text {
  max-width: 600px;
  min-width: 0;
}

.mid-cta__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
@media (min-width: 480px) {
  .mid-cta__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .mid-cta__title {
    font-size: 2rem;
  }
}

.mid-cta__subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .mid-cta__subtitle {
    font-size: 1rem;
  }
}

.mid-cta__btn {
  flex-shrink: 0;
  white-space: nowrap;
}
.mid-cta__btn svg {
  transition: transform 250ms cubic-bezier(0.2, 0, 0, 1);
}
.mid-cta__btn:hover svg {
  transform: translateX(4px);
}

.advantages {
  padding: 2.5rem 0;
  background: #ffffff;
}
@media (min-width: 768px) {
  .advantages {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .advantages {
    padding: 4rem 0;
  }
}
@media (min-width: 1280px) {
  .advantages {
    padding: 6rem 0;
  }
}

.advantages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 480px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .advantages__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .advantages__grid {
    gap: 3rem;
  }
}

.advantages__item {
  text-align: center;
}

.advantages__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 10px;
  background: #f8fafc;
  color: #0f172a;
  transition: all 250ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 768px) {
  .advantages__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }
}
.advantages__item:hover .advantages__icon {
  background: #0f172a;
  color: #ffffff;
}

.advantages__title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .advantages__title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}

.advantages__text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 320px;
  margin-inline: auto;
}

.final-cta {
  padding: 2.5rem 0;
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url("/images/eb16db81ad.jpg") center/cover no-repeat;
}
@media (min-width: 768px) {
  .final-cta {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .final-cta {
    padding: 4rem 0;
  }
}
@media (min-width: 1280px) {
  .final-cta {
    padding: 5rem 0;
  }
}

.final-cta__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.final-cta__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
@media (min-width: 480px) {
  .final-cta__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .final-cta__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.final-cta__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .final-cta__text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.promo-banner {
  padding: 2.5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .promo-banner {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .promo-banner {
    padding: 4rem 0;
  }
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .promo-content {
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .promo-content {
    grid-template-columns: 1fr 1fr;
  }
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
@media (min-width: 768px) {
  .promo-tag {
    margin-bottom: 1.25rem;
  }
}

.promo-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .promo-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.promo-description {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .promo-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.promo-image {
  border-radius: 10px;
  overflow: hidden;
}
.promo-image img {
  width: 100%;
  height: auto;
  display: block;
}

.legal-section {
  padding: 1.25rem 0 2.5rem;
}
@media (min-width: 768px) {
  .legal-section {
    padding: 2rem 0 4rem;
  }
}

.legal-content {
  max-width: 800px;
  margin-inline: auto;
}
.legal-content .page-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}
@media (min-width: 480px) {
  .legal-content .page-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .legal-content .page-title {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
}

.legal-updated {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  font-style: italic;
}
@media (min-width: 768px) {
  .legal-updated {
    margin-bottom: 2rem;
  }
}

.legal-block {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .legal-block {
    margin-bottom: 2rem;
  }
}
.legal-block h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #0f172a;
  padding-left: 0.75rem;
  border-left: 3px solid #f97316;
}
@media (min-width: 768px) {
  .legal-block h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
  }
}
.legal-block h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}
@media (min-width: 768px) {
  .legal-block h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
}
.legal-block p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .legal-block p {
    font-size: 1rem;
  }
}
.legal-block ul, .legal-block ol {
  margin-left: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .legal-block ul, .legal-block ol {
    margin-left: 1.25rem;
  }
}
.legal-block ul li, .legal-block ol li {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  list-style: disc;
}
@media (min-width: 768px) {
  .legal-block ul li, .legal-block ol li {
    font-size: 1rem;
  }
}
.legal-block a {
  color: #f97316;
  text-decoration: underline;
}
.legal-block a:hover {
  color: #ea580c;
}
.legal-block strong {
  color: #0f172a;
  font-weight: 600;
}

.faq-section {
  padding: 1.25rem 0 2.5rem;
}
@media (min-width: 768px) {
  .faq-section {
    padding: 2rem 0 4rem;
  }
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .faq-header {
    margin-bottom: 2.5rem;
  }
}
.faq-header .page-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
@media (min-width: 480px) {
  .faq-header .page-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .faq-header .page-title {
    font-size: 2rem;
  }
}
.faq-header .page-subtitle {
  font-size: 0.875rem;
  color: #64748b;
}
@media (min-width: 768px) {
  .faq-header .page-subtitle {
    font-size: 1rem;
  }
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .faq-list {
    border-radius: 16px;
  }
}

.faq-item {
  border-bottom: 1px solid #f1f5f9;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  transition: background 150ms cubic-bezier(0.2, 0, 0, 1);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    gap: 1rem;
  }
}
.faq-question:hover {
  background: #f8fafc;
}
.faq-question .faq-question-text {
  flex: 1;
  min-width: 0;
}
.faq-question .faq-icon {
  flex-shrink: 0;
}
.faq-question .faq-icon i {
  color: #94a3b8;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1);
  font-size: 0.875rem;
}
.faq-question[aria-expanded=true] .faq-icon i {
  transform: rotate(180deg);
  color: #f97316;
}

.faq-answer[hidden] {
  display: none;
}
.faq-answer .faq-answer-content {
  padding: 0 1rem 1rem;
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .faq-answer .faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.875rem;
  }
}
.faq-answer .faq-answer-content p {
  margin: 0;
}

.faq-cta {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .faq-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    border-radius: 16px;
  }
}

.faq-cta-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .faq-cta-title {
    font-size: 1.25rem;
  }
}

.faq-cta-text {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .faq-cta-text {
    margin-bottom: 1.5rem;
  }
}

.faq-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .faq-cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.login {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  overflow: hidden;
  padding: 1rem;
}

.login__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.login__bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.login__bg-shape--1 {
  width: 400px;
  height: 400px;
  background: #f97316;
  top: -150px;
  right: -100px;
  animation: login-float 20s ease-in-out infinite;
}
@media (min-width: 768px) {
  .login__bg-shape--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
  }
}
.login__bg-shape--2 {
  width: 300px;
  height: 300px;
  background: #f97316;
  bottom: -80px;
  left: -80px;
  animation: login-float 25s ease-in-out infinite reverse;
}
@media (min-width: 768px) {
  .login__bg-shape--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
  }
}
.login__bg-shape--3 {
  width: 180px;
  height: 180px;
  background: #ffffff;
  top: 40%;
  left: 30%;
  animation: login-float 18s ease-in-out infinite 3s;
}
@media (min-width: 768px) {
  .login__bg-shape--3 {
    width: 250px;
    height: 250px;
  }
}

@keyframes login-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.97);
  }
}
.login__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
}
@media (min-width: 480px) {
  .login__card {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 16px;
  }
}
@media (min-width: 768px) {
  .login__card {
    padding: 2.5rem 2rem 2rem;
  }
}

.login__logo {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .login__logo {
    margin-bottom: 1.5rem;
  }
}

.login__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .login__logo-img {
    height: 64px;
  }
}

.login__header {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .login__header {
    margin-bottom: 1.5rem;
  }
}

.login__title {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .login__title {
    font-size: 1.5rem;
  }
}

.login__subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.login__alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.login__alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.login__alert-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login__alert-icon i {
  font-size: 1rem;
}

.login__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .login__form {
    gap: 1.25rem;
  }
}

.login__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.login__input-wrap {
  position: relative;
}

.login__input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.875rem;
  pointer-events: none;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
}

.login__input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 150ms cubic-bezier(0.2, 0, 0, 1), box-shadow 150ms cubic-bezier(0.2, 0, 0, 1);
}
.login__input::placeholder {
  color: #94a3b8;
}
.login__input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.35);
}

.login__input-wrap:focus-within .login__input-icon {
  color: #f97316;
}

.login__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  background: #f97316;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  transition: background 150ms cubic-bezier(0.2, 0, 0, 1), box-shadow 150ms cubic-bezier(0.2, 0, 0, 1), transform 150ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 768px) {
  .login__submit {
    padding: 1rem;
    font-size: 1rem;
  }
}
.login__submit:hover {
  background: rgb(234.3648535565, 99.579916318, 6.0351464435);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
  transform: translateY(-1px);
}
.login__submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}
.login__submit:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}
.login__submit i {
  font-size: 0.875rem;
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1);
}
.login__submit:hover i {
  transform: translateX(3px);
}

.login__footer {
  margin-top: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .login__footer {
    margin-top: 2rem;
  }
}

.login__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.2, 0, 0, 1);
}
.login__back i {
  transition: transform 150ms cubic-bezier(0.2, 0, 0, 1);
}
.login__back:hover {
  color: #f97316;
}
.login__back:hover i {
  transform: translateX(-3px);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms cubic-bezier(0.2, 0, 0, 1);
}
.mobile-nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: #0f172a;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 250ms cubic-bezier(0.2, 0, 0, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 480px) {
  .mobile-nav {
    width: 320px;
  }
}
.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .mobile-nav-header {
    padding: 1.25rem 1.5rem;
  }
}
.mobile-nav-header .site-logo .logo-img {
  height: 34px;
  width: auto;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #94a3b8;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
}
.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0.75rem;
  flex: 1;
  overflow-y: auto;
}
@media (min-width: 480px) {
  .mobile-nav-list {
    padding: 1rem 1rem;
  }
}
.mobile-nav-list li + li {
  margin-top: 2px;
}
.mobile-nav-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  border-radius: 6px;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 480px) {
  .mobile-nav-list a {
    font-size: 1rem;
  }
}
.mobile-nav-list a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}
.mobile-nav-list a.is-active {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.12);
}
.mobile-nav-list a i {
  width: 20px;
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
}

.mobile-nav-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .mobile-nav-footer {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }
}
.mobile-nav-footer .btn {
  text-align: center;
}

.mobile-lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 3px;
}
.mobile-lang-switcher .lang-pill {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.mobile-lang-switcher .lang-pill:hover {
  color: #ffffff;
}
.mobile-lang-switcher .lang-pill.is-active {
  background: #f97316;
  color: #ffffff;
}

.pagination {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .pagination {
    margin-top: 2.5rem;
  }
}

.pagination-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.pagination-item {
  display: flex;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  border-radius: 10px;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
  text-decoration: none;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .pagination-link {
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    font-size: 0.875rem;
  }
}
.pagination-link:hover:not(.disabled):not(.active) {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #e2e8f0;
}
.pagination-link.active {
  background: #f97316;
  color: #ffffff;
  border-color: #f97316;
  font-weight: 600;
}
.pagination-link.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  color: #94a3b8;
  cursor: default;
}
@media (min-width: 768px) {
  .pagination-ellipsis {
    min-width: 40px;
    height: 40px;
  }
}

@media (max-width: 479px) {
  .hide-mobile {
    display: none;
  }
}

.product-detail {
  padding: 0.75rem 0 2.5rem;
}
@media (min-width: 768px) {
  .product-detail {
    padding: 1rem 0 4rem;
  }
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .product-layout {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}
.product-layout > .gallery-lightbox {
  display: none;
  grid-column: 1/-1;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.gallery-main {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
  cursor: zoom-in;
}
@media (min-width: 768px) {
  .gallery-main {
    border-radius: 16px;
  }
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0, 0, 1);
}
.gallery-main:hover img {
  transform: scale(1.03);
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #94a3b8;
}
.gallery-placeholder i {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .gallery-placeholder i {
    font-size: 2.5rem;
  }
}
.gallery-placeholder span {
  font-size: 0.875rem;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.gallery-thumbnails::-webkit-scrollbar {
  height: 4px;
}
.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 45px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
  opacity: 0.6;
  padding: 0;
  background: none;
}
@media (min-width: 480px) {
  .gallery-thumb {
    width: 72px;
    height: 54px;
  }
}
.gallery-thumb:hover {
  opacity: 0.9;
}
.gallery-thumb.is-active, .gallery-thumb.active {
  border-color: #f97316;
  opacity: 1;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .product-info {
    gap: 1.25rem;
  }
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}
@media (min-width: 480px) {
  .product-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .product-title {
    font-size: 2rem;
  }
}

.product-description {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .product-description {
    font-size: 1rem;
  }
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}
.product-badges .badge.badge-new {
  background: #dcfce7;
  color: #166534;
}
.product-badges .badge.badge-used {
  background: #f1f5f9;
  color: #475569;
}
.product-badges .badge.badge-refurbished {
  background: #dbeafe;
  color: #1e40af;
}
.product-badges .badge.badge-one-trip {
  background: #f3e8ff;
  color: #7c3aed;
}
.product-badges .badge.badge-category {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.product-price-block {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .product-price-block {
    padding: 1.25rem;
    border-radius: 16px;
  }
}
.product-price-block .product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}
@media (min-width: 768px) {
  .product-price-block .product-price {
    font-size: 2rem;
  }
}
.product-price-block .product-price-vat {
  font-size: 0.875rem;
  color: #64748b;
  margin-left: 0.5rem;
}
.product-price-block .product-price-gross {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}
.product-price-block .product-price-request {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f97316;
}
@media (min-width: 768px) {
  .product-price-block .product-price-request {
    font-size: 1.25rem;
  }
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .product-actions {
    flex-direction: row;
  }
}
.product-actions .btn {
  flex: 1;
  justify-content: center;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .product-specs {
    gap: 1.25rem;
  }
}
@media (min-width: 768px) {
  .product-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.specs-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .specs-section {
    border-radius: 16px;
  }
}

.specs-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  margin: 0;
}
@media (min-width: 768px) {
  .specs-title {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}
.specs-title i {
  color: #f97316;
  font-size: 0.875rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr {
  border-bottom: 1px solid #f1f5f9;
}
.specs-table tr:last-child {
  border-bottom: none;
}
.specs-table th {
  text-align: left;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  width: 40%;
  vertical-align: top;
}
@media (min-width: 768px) {
  .specs-table th {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}
.specs-table td {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: #0f172a;
  font-weight: 500;
  word-break: break-word;
}
@media (min-width: 768px) {
  .specs-table td {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

.specs-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}
@media (min-width: 768px) {
  .specs-features {
    padding: 1rem 1.25rem;
  }
}
.specs-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: #f8fafc;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #475569;
}
@media (min-width: 768px) {
  .specs-features li {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}
.specs-features li i {
  color: #22c55e;
  font-size: 0.75rem;
}

.related-products {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .related-products {
    margin-top: 3rem;
  }
}
@media (min-width: 1024px) {
  .related-products {
    margin-top: 4rem;
  }
}
.related-products .section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #0f172a;
}
@media (min-width: 768px) {
  .related-products .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.gallery-lightbox__image {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
}

.gallery-lightbox__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  position: fixed;
  top: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 1.25rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .gallery-lightbox__close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}
.gallery-lightbox__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-lightbox__prev,
.gallery-lightbox__next {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.25rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .gallery-lightbox__prev,
  .gallery-lightbox__next {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-lightbox__prev {
  left: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-lightbox__prev {
    left: 20px;
  }
}

.gallery-lightbox__next {
  right: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-lightbox__next {
    right: 20px;
  }
}

.gallery-lightbox__counter {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.875rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: 10px;
}

.quote-section,
.quote-request-section {
  padding: 1.25rem 0 2.5rem;
}
@media (min-width: 768px) {
  .quote-section,
  .quote-request-section {
    padding: 2rem 0 4rem;
  }
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .quote-layout {
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .quote-layout {
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .quote-layout {
    grid-template-columns: 340px 1fr;
  }
}

.quote-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .quote-header {
    margin-bottom: 2rem;
  }
}
.quote-header .page-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
@media (min-width: 480px) {
  .quote-header .page-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .quote-header .page-title {
    font-size: 2rem;
  }
}
.quote-header .page-subtitle {
  font-size: 0.875rem;
  color: #64748b;
}
@media (min-width: 768px) {
  .quote-header .page-subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .quote-product-ref {
    position: sticky;
    top: calc(80px + 1rem);
    align-self: start;
  }
}

.quote-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .quote-product-card {
    border-radius: 16px;
  }
}

.quote-product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
}
.quote-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #94a3b8;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .quote-product-placeholder {
    font-size: 2.5rem;
  }
}

.quote-product-info {
  padding: 1rem;
}
@media (min-width: 768px) {
  .quote-product-info {
    padding: 1.25rem;
  }
}

.quote-product-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .quote-product-title {
    font-size: 1rem;
  }
}

.quote-product-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.quote-product-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #64748b;
  background: #f8fafc;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.quote-product-meta li i {
  color: #94a3b8;
  font-size: 10px;
}

.quote-product-price {
  font-size: 1rem;
  font-weight: 700;
  color: #f97316;
}
@media (min-width: 768px) {
  .quote-product-price {
    font-size: 1.125rem;
  }
}
.quote-product-price span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #64748b;
  margin-top: 0.25rem;
}

.quote-form-container {
  min-width: 0;
}

.quote-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem;
}
@media (min-width: 480px) {
  .quote-form-card {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  .quote-form-card {
    padding: 2rem;
    border-radius: 16px;
  }
}
@media (min-width: 1024px) {
  .quote-form-card {
    padding: 2.5rem;
  }
}
.quote-form-card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .quote-form-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .quote-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.quote-form-grid .full-width {
  grid-column: 1/-1;
}

.quote-transport-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.quote-transport-options .transport-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 768px) {
  .quote-transport-options .transport-option {
    padding: 1rem;
  }
}
.quote-transport-options .transport-option:hover {
  border-color: #cbd5e1;
}
.quote-transport-options .transport-option.selected {
  border-color: #f97316;
  background: rgba(249, 115, 22, 0.03);
}
.quote-transport-options .transport-option input {
  margin-top: 3px;
  accent-color: #f97316;
  flex-shrink: 0;
}
.quote-transport-options .transport-option .transport-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
}
.quote-transport-options .transport-option .transport-desc {
  font-size: 0.75rem;
  color: #64748b;
}

.quote-privacy {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 1rem;
}
.quote-privacy a {
  color: #f97316;
  text-decoration: underline;
}

.success-section {
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .success-section {
    padding: 4rem 0;
  }
}

.success-card {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 480px) {
  .success-card {
    padding: 2rem 1.25rem;
  }
}
@media (min-width: 768px) {
  .success-card {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: #dcfce7;
  border-radius: 9999px;
  color: #22c55e;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}

.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .success-title {
    font-size: 1.5rem;
  }
}

.success-message {
  color: #475569;
  margin-bottom: 0.5rem;
  line-height: 1.8;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .success-message {
    font-size: 1rem;
  }
}

.success-detail {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .success-detail {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .success-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 1rem;
  transition: transform 400ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 768px) {
  .slider-track {
    gap: 1.5rem;
  }
}

.slider-slide {
  flex: 0 0 100%;
  min-width: 0;
}
@media (min-width: 480px) {
  .slider-slide {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media (min-width: 1024px) {
  .slider-slide {
    flex: 0 0 calc(33.333% - 1rem);
  }
}
@media (min-width: 1280px) {
  .slider-slide {
    flex: 0 0 calc(25% - 1.125rem);
  }
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .slider-nav {
    margin-top: 1.5rem;
  }
}
.slider-nav button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1.5px solid #cbd5e1;
  color: #64748b;
  transition: all 150ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 768px) {
  .slider-nav button {
    width: 40px;
    height: 40px;
  }
}
.slider-nav button:hover {
  border-color: #f97316;
  color: #f97316;
}
.slider-nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.stats-section {
  padding: 2rem 0;
  background: #0f172a;
}
@media (min-width: 768px) {
  .stats-section {
    padding: 2.5rem 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) {
  .stats-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
}
@media (min-width: 480px) {
  .stat-card {
    gap: 1rem;
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .stat-card {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-card:last-child {
    border-right: none;
  }
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
@media (min-width: 480px) {
  .stat-number {
    font-size: 2rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.why-choose-us {
  background: #f8fafc;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .why-choose-us {
    padding: 3rem 0;
  }
}
@media (min-width: 1024px) {
  .why-choose-us {
    padding: 4rem 0;
  }
}

.features-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 250ms cubic-bezier(0.2, 0, 0, 1);
}
@media (min-width: 768px) {
  .feature-card {
    padding: 2rem 1.5rem;
  }
}
.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.feature-card .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: #f8fafc;
  border-radius: 10px;
  color: #0f172a;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .feature-card .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
}
.feature-card .feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .feature-card .feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
}
.feature-card .feature-description {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.8;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.no-scroll {
  overflow: hidden !important;
}

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

.fade-in {
  animation: fadeIn 0.3s cubic-bezier(0.2, 0, 0, 1) both;
}

.fade-out {
  animation: fadeOut 0.3s cubic-bezier(0.2, 0, 0, 1) both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.slide-in-up {
  animation: slideInUp 0.4s cubic-bezier(0.2, 0, 0, 1) both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}
.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid #e2e8f0;
  border-top-color: #f97316;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.skip-link,
.skip-to-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus,
.skip-to-content:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background: #f97316;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  clip: auto;
  clip-path: none;
  white-space: normal;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-fw-normal {
  font-weight: 400;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-semibold {
  font-weight: 600;
}

.u-fw-bold {
  font-weight: 700;
}

.u-color-primary {
  color: #0f172a;
}

.u-color-accent {
  color: #f97316;
}

.u-color-muted {
  color: #64748b;
}

.u-color-white {
  color: #ffffff;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mt-4 {
  margin-top: 1rem;
}

.u-mt-8 {
  margin-top: 2rem;
}

.u-mb-4 {
  margin-bottom: 1rem;
}

.u-mb-8 {
  margin-bottom: 2rem;
}

.u-w-full {
  width: 100%;
}

.u-flex {
  display: flex;
}

.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.u-gap-2 {
  gap: 0.5rem;
}

.u-gap-4 {
  gap: 1rem;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-min-w-0 {
  min-width: 0;
}

.u-break-word {
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 479px) {
  .u-hide-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-hide-below-md {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .u-hide-below-lg {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .u-hide-desktop {
    display: none !important;
  }
}

.u-show-sm {
  display: none !important;
}
@media (min-width: 480px) {
  .u-show-sm {
    display: block !important;
  }
}

.u-show-md {
  display: none !important;
}
@media (min-width: 768px) {
  .u-show-md {
    display: block !important;
  }
}

.u-show-lg {
  display: none !important;
}
@media (min-width: 1024px) {
  .u-show-lg {
    display: block !important;
  }
}
