html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nav-link {
  display: inline-block;
  font-weight: 500;
  color: #374151;
  transition: color 150ms ease-in-out;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link:focus {
  color: #2563eb;
}

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  text-align: center;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.admin-link:hover,
.admin-link:focus {
  border-color: rgba(37, 99, 235, 0.45);
  color: #1d4ed8;
  background-color: rgba(37, 99, 235, 0.08);
}

.service-card {
  background: linear-gradient(135deg, rgba(249, 250, 251, 1), rgba(239, 246, 255, 0.9));
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 10px 25px -15px rgba(59, 130, 246, 0.5);
  transition: transform 200ms ease, box-shadow 200ms ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(37, 99, 235, 0.45);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  background-color: #2563eb;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  text-align: center;
}

.service-list {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #374151;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: #2563eb;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.step-description {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

.accessory-card {
  background-color: #fff;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 45px -35px rgba(15, 23, 42, 0.8);
  transition: transform 200ms ease, box-shadow 200ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.accessory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(37, 99, 235, 0.45);
}

.accessory-card--upcoming {
  background: rgba(239, 246, 255, 0.7);
  border-style: dashed;
  border-color: rgba(37, 99, 235, 0.35);
}

.accessory-image {
  position: relative;
}

.accessory-image img {
  display: block;
}

.accessory-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 9999px;
  background-color: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  box-shadow: 0 10px 20px -15px rgba(37, 99, 235, 0.8);
}

.accessory-badge--available {
  background-color: #16a34a;
}

.accessory-badge--inquiry {
  background-color: #f59e0b;
}

.accessory-badge--soon {
  background-color: #f59e0b;
}

.accessory-badge--soldout {
  background-color: #6b7280;
}


.testimonial-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial {
  flex: 0 0 320px;
  border-radius: 1.75rem;
  border: 1px solid rgba(191, 219, 254, 0.5);
  background: linear-gradient(135deg, #fff 0%, rgba(239, 246, 255, 0.7) 100%);
  padding: 2rem;
  box-shadow: 0 20px 40px -30px rgba(37, 99, 235, 0.35);
  scroll-snap-align: start;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #e0e7ff;
  box-shadow: 0 8px 20px -12px rgba(37, 99, 235, 0.6);
}

.testimonial-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.testimonial-meta {
  font-weight: 600;
  color: #2563eb;
  margin: 0;
}

.testimonial-content {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background-color: #fff;
  box-shadow: 0 15px 30px -25px rgba(37, 99, 235, 0.35);
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item[open] .faq-question {
  color: #2563eb;
}

.faq-question::marker {
  color: #2563eb;
  font-size: 1.5rem;
}

.faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.45), rgba(255, 255, 255, 0.9));
}

.logistics-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background-color: #fff;
  padding: 1.5rem;
  box-shadow: 0 10px 30px -25px rgba(37, 99, 235, 0.5);
}

.logistics-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.logistics-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 767px) {
  #primary-navigation[data-open="true"] {
    display: block;
  }
}

.topbar__shop {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(125deg, rgb(61, 210, 186), rgb(1 185 155));
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(56, 189, 248, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topbar__shop:hover,
.topbar__shop:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(56, 189, 248, 0.28);
    outline: none;
}

.topbar__shop-icon { font-size: 0.85rem; }

 .topbar__shop { justify-content: center; }

 @media (max-width: 720px) {

    .topbar__shop {
        width: 100%;
        justify-content: center;
    }
}

.topbar__brand-logo {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(140deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.2));
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35), 0 6px 14px rgba(37, 99, 235, 0.22);
    overflow: hidden;
}

.topbar__brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) drop-shadow(0 2px 6px rgba(37, 99, 235, 0.2));
}