/* ============================================================
   HomeTech ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Custom Styles
   ============================================================ */

/* ---------- Header responsive grid ---------- */
.header-grid {
  display: grid;
  align-items: center;
  min-height: 64px;
}

/* Mobile / tablet ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â hamburger | logo | icons  +  search below */
@media (max-width: 1023px) {
  .header-grid {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "hamburger logo    icons"
      "search    search  search";
    row-gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-hamburger { grid-area: hamburger; }
  .header-logo      { grid-area: logo;       }
  .header-icons     { grid-area: icons;      justify-self: end; }
  .header-search    { grid-area: search;     }
}

/* Desktop ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â single row: logo | search | icons */
@media (min-width: 1024px) {
  .header-grid {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo search icons";
    column-gap: 32px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .header-logo   { grid-area: logo;   }
  .header-search { grid-area: search; }
  .header-icons  { grid-area: icons;  justify-self: end; }
}

/* ---------- Header icon hover ---------- */
.header-icon {
  color: #374151;            /* gray-700 */
  transition: color 0.2s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}
.header-icon:hover {
  color: #2563eb;
}

/* ---------- Hamburger button ---------- */
.header-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  transition: background-color 0.2s;
}
.header-hamburger:hover {
  background-color: #f3f4f6;
}
.header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #374151;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}
.header-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Category nav icons ---------- */
.category-icon {
  font-size: 19px;
  min-width: 22px;
  text-align: center;
  line-height: 1;
}

/* ---------- Cart badge ---------- */
.cart-badge {
  position: absolute;
  top: -7px;
  right: -10px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background-color: #2563eb;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  border-radius: 9999px;
  pointer-events: none;
}

/* ---------- Navigation item ---------- */
.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: 14px;          /* ~text-sm */
  font-weight: 500;
  color: #4b5563;           /* gray-600 */
  white-space: nowrap;
  border-radius: 10px;
  transition: color 0.2s, background-color 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-item:hover {
  color: #2563eb;
  background-color: #eff6ff; /* blue-50 */
}
.nav-item[data-active="true"] {
  color: #2563eb;
  font-weight: 600;
}

/* Desktop ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â distribute evenly when enough room */
@media (min-width: 1024px) {
  .nav-item {
    flex: 1 1 0%;
    justify-content: center;
  }
}

/* ---------- Scrollbar hide utility ---------- */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ---------- Smooth focus ring for all inputs ---------- */
input:focus {
  outline: none;
}

/* ---------- Sticky header deeper shadow on scroll ---------- */
header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ---------- Subtle selection colour ---------- */
::selection {
  background-color: #dbeafe;
  color: #1e3a5f;
}

/* ============================================================
   Mobile Navigation Panel
   ============================================================ */

/* Body scroll lock */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.45);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Slide-in panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100dvh;
  background-color: #ffffff;
  z-index: 95;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-nav-panel.open {
  transform: translateX(0);
}

/* Close button inside panel */
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #6b7280;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}
.mobile-nav-close:hover {
  color: #111827;
  background-color: #f3f4f6;
}

/* Mobile nav item (same look as desktop .nav-item but full-width) */
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  white-space: nowrap;
  border-radius: 10px;
  transition: color 0.2s, background-color 0.2s;
  text-decoration: none;
}
.mobile-nav-item:hover {
  color: #2563eb;
  background-color: #eff6ff;
}
.mobile-nav-item[data-active="true"] {
  color: #2563eb;
  font-weight: 600;
  background-color: #eff6ff;
}

/* ============================================================
   Hero Section
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 420px;
  background-color: #f8fafc;            /* fallback */
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Horizontal fade overlay ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ text legible on the left */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.98)   0%,
    rgba(255, 255, 255, 0.93)  32%,
    rgba(255, 255, 255, 0.60)  55%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

/* Content wrapper sits above the overlay */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top:    56px;
  padding-bottom: 56px;
}

/* ---------- Breadcrumb ---------- */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  margin-bottom: 18px;
}

/* ---------- Label ---------- */
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2563eb;
  background-color: #eff6ff;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

/* ---------- Title ---------- */
.hero-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* ---------- Paragraph ---------- */
.hero-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 480px;
  margin-bottom: 30px;
}

/* ---------- Button row ---------- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Primary button */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #2563eb;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.hero-btn-primary:hover {
  background-color: #1d4ed8;
}
.hero-btn-primary:active {
  transform: scale(0.97);
}

/* Secondary / outline button */
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.hero-btn-secondary:hover {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

/* ============================================================
   Hero ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ responsive
   ============================================================ */

/* Tablet */
@media (min-width: 640px) {
  .hero-section {
    min-height: 440px;
  }
  .hero-content {
    padding-top:    64px;
    padding-bottom: 64px;
  }
  .hero-title {
    font-size: 38px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-section {
    min-height: 480px;
  }
  .hero-content {
    padding-top:    76px;
    padding-bottom: 76px;
  }
  .hero-title {
    font-size: 42px;
    line-height: 1.16;
  }
  .hero-text {
    font-size: 17px;
  }
}

/* On narrow screens boost the overlay so text is always readable */
@media (max-width: 639px) {
  .hero-section {
    min-height: 380px;
  }
  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.995)   0%,
      rgba(255, 255, 255, 0.96)   45%,
      rgba(255, 255, 255, 0.82)   70%,
      rgba(255, 255, 255, 0.45)  100%
    );
  }
  .hero-content {
    padding-top:    40px;
    padding-bottom: 40px;
  }
  .hero-title {
    font-size: 27px;
    line-height: 1.25;
  }
  .hero-text {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-breadcrumb {
    font-size: 12px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Stats / Trust Bar
   ============================================================ */

.stats-section {
  position: relative;
  z-index: 20;
  margin-top: -35px;
  padding-bottom: 48px;
}

.stats-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 24px 4px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 6px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.stat-item.last {
  border-right: none;
}

.stat-icon {
  font-size: 28px;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-value {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
  max-width: 150px;
}

/* ---- 2-col border cleanup (mobile) ---- */
.stat-item:nth-child(2n) {
  border-right: none;
}
/* Hide bottom border on last row-items */
.stat-item:nth-child(5),
.stat-item:nth-child(6),
.stat-item:nth-child(7) {
  border-bottom: none;
}

/* ---- 3 cols (sm / tablet) ---- */
@media (min-width: 640px) {
  .stats-card {
    grid-template-columns: repeat(3, 1fr);
    padding: 28px 8px;
  }

  /* Restore right borders because column count changed */
  .stat-item {
    border-right: 1px solid #e5e7eb;
  }
  .stat-item:nth-child(3n) {
    border-right: none;
  }
  .stat-item.last {
    border-right: none;
  }

  /* Bottom borders: only rows 1-2 need them (items 1-6), row 3 (item 7) not */
  .stat-item {
    border-bottom: 1px solid #e5e7eb;
  }
  .stat-item:nth-child(5),
  .stat-item:nth-child(6),
  .stat-item:nth-child(7) {
    border-bottom: none;
  }
}

/* ---- 7 cols (lg / desktop) ---- */
@media (min-width: 1024px) {
  .stats-card {
    grid-template-columns: repeat(7, 1fr);
    padding: 28px 16px;
  }

  .stat-item {
    border-right: 1px solid #e5e7eb;
    border-bottom: none;
    padding: 16px 8px;
  }
  .stat-item.last {
    border-right: none;
  }

  .stat-icon {
    font-size: 30px;
  }

  .stat-label {
    max-width: 130px;
  }
}

/* ============================================================
   Mission / Why Choose Us
   ============================================================ */

.mission-section {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* Desktop ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 2 cols  | 48% image  |  52% text  */
@media (min-width: 1024px) {
  .mission-grid {
    grid-template-columns: 48fr 52fr;
    gap: 64px;
  }
}

/* ---------- Image ---------- */
.mission-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

.mission-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .mission-image {
    height: 420px;
  }
}

/* ---------- Content ---------- */
.mission-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2563eb;
  background-color: #eff6ff;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 18px;
}

.mission-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.20;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

@media (min-width: 640px) {
  .mission-title {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .mission-title {
    font-size: 36px;
    line-height: 1.18;
  }
}

.mission-text {
  font-size: 15px;
  line-height: 1.72;
  color: #475569;
  max-width: 620px;
  margin-bottom: 36px;
}

@media (min-width: 1024px) {
  .mission-text {
    font-size: 16px;
  }
}

/* ---------- Feature grid ---------- */
.mission-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 480px) {
  .mission-features {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.mission-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mission-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  background-color: #eff6ff;
  border-radius: 14px;
  color: #2563eb;
  font-size: 28px;
}

.mission-feature-content {
  flex: 1;
  min-width: 0;
}

.mission-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.mission-feature-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* ---------- Mobile adjustments ---------- */
@media (max-width: 639px) {
  .mission-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .mission-grid {
    gap: 36px;
  }
  .mission-image {
    height: 260px;
  }
  .mission-title {
    font-size: 26px;
  }
  .mission-text {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .mission-features {
    gap: 24px;
  }
}

/* ============================================================
   Process & Guarantee Section
   ============================================================ */

.process-guarantee-section {
  background-color: #f8fafc;
  padding-top: 80px;
  padding-bottom: 90px;
}

/* ---------- Shared section title ---------- */
.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 34px;
  }
}

/* ===========================
   Part 1 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ Work Process
   =========================== */

.work-process {
  margin-bottom: 72px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  max-width: 1050px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 0%;
  min-width: 0;
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  background-color: #eff6ff;
  border-radius: 50%;
  color: #2563eb;
  font-size: 30px;
}

.process-content {
  flex: 1;
  min-width: 0;
  padding-top: 6px;
}

.process-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
}

.process-step-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
}

.process-arrow {
  color: #2563eb;
  font-size: 26px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 19px;
}

/* Mobile ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ stack vertically, hide arrows */
@media (max-width: 767px) {
  .process-steps {
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
  }
  .process-arrow {
    display: none;
  }
}

/* ===========================
   Part 2 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ Guarantee Cards
   =========================== */

.guarantee-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.guarantee-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 210px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.guarantee-card-content {
  flex: 1;
  min-width: 0;
}

/* Labels */
.guarantee-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 14px;
}
.guarantee-label--blue {
  background-color: #eff6ff;
  color: #2563eb;
}
.guarantee-label--green {
  background-color: #ecfdf5;
  color: #16a34a;
}

.guarantee-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.guarantee-card-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Shield visual */
.guarantee-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Shield image */
.guarantee-shield-img {
  width: 110px;
  height: auto;
  display: block;
}

/* Mobile adjustments */
@media (max-width: 639px) {
  .process-guarantee-section {
    padding-top: 56px;
    padding-bottom: 60px;
  }
  .work-process {
    margin-bottom: 56px;
  }
  .section-title {
    font-size: 26px;
    margin-bottom: 36px;
  }
  .guarantee-card {
    padding: 24px;
    gap: 18px;
  }
  .guarantee-shield-img {
    width: 90px;
  }
}

/* ============================================================
   Brands & Service Benefits
   ============================================================ */

.brands-benefits-section {
  background-color: #ffffff;
  padding-top: 75px;
  padding-bottom: 85px;
}

/* ---------- Brands heading ---------- */
.brands-heading {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 44px;
}

@media (min-width: 640px) {
  .brands-heading {
    font-size: 34px;
  }
}

/* ---------- Carousel wrapper ---------- */
.brands-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 64px;
}

/* ---------- Arrow buttons ---------- */
.brand-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 56px;
  min-width: 46px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  color: #6b7280;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  flex-shrink: 0;
  z-index: 2;
  padding: 0;
}
.brand-arrow:hover {
  color: #2563eb;
  border-color: #bfdbfe;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.brand-arrow-left {
  margin-right: 12px;
}

.brand-arrow-right {
  margin-left: 12px;
}

/* ---------- Carousel track ---------- */
.brands-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 4px 0;
}
.brands-carousel::-webkit-scrollbar {
  display: none;
}

/* ---------- Brand card ---------- */
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  height: 80px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
  padding: 12px 20px;
}
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.brand-card img {
  max-width: 140px;
  max-height: 38px;
  object-fit: contain;
  display: block;
}

/* ===========================
   Service Benefits Bar
   =========================== */

.service-benefits-bar {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

/* 2 cols on small screens */
@media (min-width: 480px) {
  .service-benefits-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px 20px;
  }
}

/* 3 cols on tablet */
@media (min-width: 768px) {
  .service-benefits-bar {
    grid-template-columns: repeat(3, 1fr);
    padding: 26px 22px;
  }
}

/* 6 cols on desktop */
@media (min-width: 1024px) {
  .service-benefits-bar {
    grid-template-columns: repeat(6, 1fr);
    padding: 26px 24px;
  }
}

.service-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-right: none;
  border-bottom: 1px solid #f1f5f9;
}

/* Remove bottom border from last-row items per breakpoint */
.service-benefit-item:nth-child(5),
.service-benefit-item:nth-child(6) {
  border-bottom: none;
}

/* Desktop ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ vertical dividers, no bottom borders */
@media (min-width: 1024px) {
  .service-benefit-item {
    border-right: 1px solid #e5e7eb;
    border-bottom: none;
    padding: 10px 16px;
  }
  .service-benefit-item:last-child {
    border-right: none;
  }
}

.service-benefit-icon {
  font-size: 26px;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-benefit-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.service-benefit-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.service-benefit-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 639px) {
  .brands-benefits-section {
    padding-top: 56px;
    padding-bottom: 60px;
  }
  .brands-heading {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .brands-carousel-wrap {
    margin-bottom: 48px;
  }
  .brand-arrow {
    width: 40px;
    height: 48px;
    min-width: 40px;
    font-size: 20px;
    border-radius: 10px;
  }
  .brand-card {
    min-width: 140px;
    height: 72px;
    padding: 10px 16px;
  }
  .brand-card img {
    max-width: 110px;
    max-height: 32px;
  }
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding-top: 70px;
  padding-bottom: 30px;
}

/* ---------- Footer grid ---------- */
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 32px;
  }
}

/* ===========================
   Col 1 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ Brand
   =========================== */

.footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-main {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.footer-logo-subtitle {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 3px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  max-width: 320px;
  margin-bottom: 18px;
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 20px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-social-link:hover {
  color: #2563eb;
}

/* ===========================
   Col 2/3/4 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ Links
   =========================== */

.footer-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #2563eb;
}

/* ===========================
   Col 4 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ Contacts
   =========================== */

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  line-height: 1.45;
}

.footer-contact-icon {
  font-size: 18px;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===========================
   Bottom bar
   =========================== */

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 13px;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-link {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-link:hover {
  color: #2563eb;
}

/* ---------- Mobile adjustments ---------- */
@media (max-width: 639px) {
  .site-footer {
    padding-top: 48px;
  }
  .footer-main {
    gap: 32px;
    padding-bottom: 36px;
  }
  .footer-description {
    max-width: 100%;
  }
}

/* ============================================================
   Contact Page
   ============================================================ */

.contact-page {
  padding-top: 52px;
  padding-bottom: 100px;
  background-color: #f8fafc;
}

/* ---------- Breadcrumb ---------- */
.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  margin-bottom: 24px;
}

/* ---------- Heading ---------- */
.contact-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 14px;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .contact-title {
    font-size: 40px;
  }
}

.contact-subtitle {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 42px;
}

/* ---------- 2-col layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 58fr 42fr;
    gap: 32px;
  }
}

/* ===========================
   Contact Form Card
   =========================== */

.contact-form-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-card-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 26px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 639px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input,
.form-select {
  height: 50px;
  padding: 0 16px;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  padding: 14px 16px;
  line-height: 1.5;
  resize: vertical;
  min-height: 140px;
}

/* Submit button */
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  background-color: #0f172a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 4px;
}
.contact-submit-btn:hover {
  background-color: #1e293b;
}

/* Trust note */
.form-trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #64748b;
  font-size: 13px;
}
.form-trust-note i {
  font-size: 18px;
  color: #2563eb;
}

/* ===========================
   Contact Info Card
   =========================== */

.contact-info-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: #eff6ff;
  border-radius: 12px;
  color: #2563eb;
  font-size: 22px;
}

.contact-info-content {
  flex: 1;
  min-width: 0;
}

.contact-info-label {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 2px;
}

.contact-info-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.contact-info-note {
  display: block;
  font-size: 12px;
  color: #94a3b8;
}

/* ===========================
   Service Help Card
   =========================== */

.service-help-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  gap: 18px;
}

.service-help-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: #eff6ff;
  border-radius: 12px;
  color: #2563eb;
  font-size: 24px;
  padding-top: 9px;
}

.service-help-content {
  flex: 1;
  min-width: 0;
}

.service-help-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.service-help-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 14px;
}

.service-help-button {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.service-help-button:hover {
  background-color: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}

/* ---------- Mobile adjustments ---------- */
@media (max-width: 639px) {
  .contact-page {
    padding-top: 36px;
    padding-bottom: 64px;
  }
  .contact-title {
    font-size: 28px;
  }
  .contact-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .contact-layout {
    gap: 24px;
  }
  .contact-form-card {
    padding: 22px;
  }
  .contact-info-card {
    padding: 22px;
  }
  .contact-info-item {
    flex-wrap: wrap;
    gap: 12px;
  }
  .service-help-card {
    padding: 22px;
  }
}

/* ============================================================
   Contact Page ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ Map & Benefits
   ============================================================ */

/* ---------- Map section ---------- */
.contact-map-section {
  margin-top: 52px;
}

.contact-map-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .contact-map-title {
    font-size: 32px;
  }
}

.contact-map-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.contact-map-flex {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .contact-map-flex {
    flex-direction: row;
  }
}

/* Store info panel */
.store-info-panel {
  padding: 28px 30px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .store-info-panel {
    width: 320px;
  }
}

.store-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.store-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 18px;
}
.store-address i {
  color: #2563eb;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.store-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.store-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #475569;
}

.store-hours-row span:first-child {
  font-weight: 600;
  color: #0f172a;
}

.route-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  transition: background-color 0.2s;
}
.route-button:hover {
  background-color: #eff6ff;
}

/* Map iframe */
.contact-map-iframe-wrap {
  flex: 1;
  min-height: 280px;
  background-color: #f1f5f9;
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 0;
}

@media (min-width: 768px) {
  .contact-map-iframe-wrap {
    border-left: 1px solid #e5e7eb;
    border-radius: 0 18px 18px 0;
  }
  .contact-map-iframe {
    border-radius: 0 18px 18px 0;
  }
}

/* ===========================
   Contact Benefits Bar
   =========================== */

.contact-benefits-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px 18px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  margin-top: 28px;
}

@media (min-width: 480px) {
  .contact-benefits-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px 22px;
  }
}

@media (min-width: 768px) {
  .contact-benefits-bar {
    grid-template-columns: repeat(3, 1fr);
    padding: 26px 22px;
  }
}

@media (min-width: 1024px) {
  .contact-benefits-bar {
    grid-template-columns: repeat(5, 1fr);
    padding: 26px 24px;
  }
}

.contact-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 16px;
  border-right: none;
  border-bottom: 1px solid #f1f5f9;
}

/* Remove bottom border from last items on each breakpoint */
.contact-benefit-item:nth-child(5) {
  border-bottom: none;
}

/* Desktop ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â vertical dividers */
@media (min-width: 1024px) {
  .contact-benefit-item {
    border-right: 1px solid #e5e7eb;
    border-bottom: none;
    padding: 12px 16px;
  }
  .contact-benefit-item:last-child {
    border-right: none;
  }
}

.contact-benefit-icon {
  font-size: 28px;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-benefit-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.contact-benefit-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 639px) {
  .contact-map-section {
    margin-top: 36px;
  }
  .contact-map-title {
    font-size: 24px;
    margin-bottom: 22px;
  }
  .store-info-panel {
    padding: 22px;
  }
  .contact-benefits-bar {
    padding: 20px 14px;
    margin-top: 24px;
  }
}

/* ============================================================
   Checkout Page
   ============================================================ */

.checkout-page {
  padding-top: 48px;
  padding-bottom: 90px;
  background-color: #f8fafc;
}

/* ---------- Breadcrumb ---------- */
.checkout-breadcrumb {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  margin-bottom: 22px;
}

/* ---------- Title ---------- */
.checkout-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .checkout-title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .checkout-title {
    font-size: 40px;
  }
}

/* ===========================
   Checkout Steps
   =========================== */

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 36px;
  overflow-x: auto;
  padding-bottom: 4px;
  padding-left: 4px;
}
@media (min-width: 640px) {
  .checkout-steps {
    justify-content: center;
    padding-left: 0;
  }
}

.checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.checkout-step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  background-color: #ffffff;
  border: 2px solid #d1d5db;
  color: #6b7280;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.checkout-step-number.active {
  background-color: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.checkout-step-label {
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  white-space: nowrap;
}
.checkout-step-label.active {
  color: #0f172a;
  font-weight: 600;
}

.checkout-step-line {
  flex: 1;
  height: 2px;
  min-width: 32px;
  background-color: #e5e7eb;
  margin: 0 6px;
  margin-bottom: 24px;
}

/* ===========================
   Main layout
   =========================== */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 64fr 36fr;
    gap: 32px;
  }
}

/* ===========================
   Checkout form card
   =========================== */

.checkout-form-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px 34px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.checkout-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
}
.checkout-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.checkout-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

/* Form elements */
.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.checkout-label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.checkout-required {
  color: #dc2626;
}

.checkout-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-input::placeholder {
  color: #94a3b8;
}
.checkout-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
  line-height: 1.4;
  margin-top: 4px;
}
.checkout-checkbox input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: #2563eb;
  flex-shrink: 0;
}

.checkout-link {
  color: #2563eb;
  text-decoration: underline;
}
.checkout-link:hover {
  color: #1d4ed8;
}

/* ===========================
   Payment methods
   =========================== */

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.payment-option:hover {
  border-color: #bfdbfe;
}
.payment-option.active {
  border-color: #2563eb;
  background-color: #eff6ff;
}

.payment-radio-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-radio {
  width: 20px;
  height: 20px;
  accent-color: #2563eb;
  margin: 0;
}

.payment-content {
  flex: 1;
  min-width: 0;
}

.payment-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 3px;
}

.payment-desc {
  display: block;
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
}

.payment-icon {
  font-size: 28px;
  color: #2563eb;
  flex-shrink: 0;
}

.payment-badges {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.payment-badge {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  background-color: #f1f5f9;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/* Terms */
.checkout-terms {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

/* Actions */
.checkout-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

@media (max-width: 639px) {
  .checkout-actions {
    flex-direction: column-reverse;
    gap: 14px;
  }
}

.checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}
.checkout-back-link:hover {
  color: #2563eb;
}

.checkout-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #ffffff;
  background-color: #0f172a;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.checkout-next-btn:hover {
  background-color: #2563eb;
}

/* ===========================
   Order sidebar
   =========================== */

.sidebar-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

/* Order summary card */
.order-summary-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.order-summary-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.order-edit-link {
  font-size: 13px;
  color: #2563eb;
  text-decoration: underline;
  white-space: nowrap;
}
.order-edit-link:hover {
  color: #1d4ed8;
}

/* Product rows */
.order-product {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.order-product-image {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background-color: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-product-info {
  flex: 1;
  min-width: 0;
}

.order-product-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 2px;
}

.order-product-type {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 8px;
}

.order-product-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.order-product-price {
  font-size: 13px;
  color: #64748b;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.quantity-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 14px;
  color: #64748b;
  background-color: #f8fafc;
  cursor: default;
}

.quantity-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 28px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

.order-product-total {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-left: auto;
}

.order-product-remove {
  color: #9ca3af;
  font-size: 18px;
  text-decoration: none;
  padding-top: 2px;
  transition: color 0.2s;
}
.order-product-remove:hover {
  color: #dc2626;
}

/* Totals */
.order-totals {
  padding-top: 18px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
}

.order-total-final {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
  margin-top: 10px;
}

/* Warranty card */
.checkout-warranty-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  margin-top: 24px;
}

/* Help card */
.checkout-help-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  margin-top: 24px;
}

/* Sidebar info items */
.sidebar-info-list {
  display: flex;
  flex-direction: column;
}

.sidebar-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.sidebar-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #eff6ff;
  border-radius: 10px;
  color: #2563eb;
  font-size: 20px;
}

.sidebar-info-content {
  flex: 1;
  min-width: 0;
}

.sidebar-info-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.sidebar-info-text {
  display: block;
  font-size: 12px;
  color: #64748b;
}

/* ---------- Mobile ---------- */
@media (max-width: 639px) {
  .checkout-page {
    padding-top: 32px;
    padding-bottom: 60px;
  }
  .checkout-title {
    font-size: 28px;
  }
  .checkout-form-card {
    padding: 22px;
  }
  .order-summary-card,
  .checkout-warranty-card,
  .checkout-help-card {
    padding: 20px;
  }
}

/* ============================================================
   Service Page
   ============================================================ */

/* ---------- Hero ---------- */
.service-hero {
  padding-top: 48px;
  padding-bottom: 70px;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  margin-bottom: 28px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.service-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2563eb;
  background-color: #eff6ff;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 18px;
}

.service-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

@media (min-width: 1024px) {
  .service-title {
    font-size: 46px;
  }
}

.service-text {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  max-width: 560px;
  margin-bottom: 30px;
}

/* Features */
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (min-width: 480px) {
  .service-features {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
  }
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  background-color: #eff6ff;
  border-radius: 14px;
  color: #2563eb;
  font-size: 24px;
}

.service-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.service-feature-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

/* Hero placeholder */
.service-hero-placeholder {
  background-color: #f1f5f9;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.service-placeholder-icon {
  font-size: 56px;
  color: #cbd5e1;
}

.service-placeholder-text {
  font-size: 14px;
  color: #94a3b8;
}

/* ===========================
   Process section
   =========================== */

.service-process-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.service-section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 42px;
}

@media (min-width: 640px) {
  .service-section-title {
    font-size: 34px;
  }
}

.service-process-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.service-process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 767px) {
  .service-process-steps {
    flex-direction: column;
    gap: 20px;
  }
  .service-process-arrow {
    display: none;
  }
}

.service-process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 0%;
  min-width: 0;
}

.service-process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  background-color: #eff6ff;
  border-radius: 14px;
  color: #2563eb;
  font-size: 28px;
}

.service-process-step-content {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.service-process-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
}

.service-process-step-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.service-process-arrow {
  color: #2563eb;
  font-size: 26px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 17px;
}

/* ===========================
   Devices section
   =========================== */

.service-devices-section {
  padding-bottom: 60px;
}

.service-devices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .service-devices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-devices-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.service-device-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-device-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.service-device-placeholder {
  width: 100%;
  height: 120px;
  background-color: #f1f5f9;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 14px;
}
.service-device-placeholder i {
  font-size: 28px;
  color: #cbd5e1;
}

.service-device-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.service-device-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
}

/* ===========================
   Warranty + Why us
   =========================== */

.service-warranty-section {
  padding-bottom: 60px;
}

.service-warranty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .service-warranty-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.service-warranty-card,
.service-why-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.service-why-card {
  position: relative;
  overflow: hidden;
}

.service-warranty-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 22px;
}

.service-warranty-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.service-warranty-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: #eff6ff;
  border-radius: 10px;
  color: #2563eb;
  font-size: 22px;
}

.service-warranty-item-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.service-warranty-item-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* Check list */
.service-check-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}
.service-check-item i {
  color: #2563eb;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-decor-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 180px;
  color: #0f172a;
  opacity: 0.04;
  pointer-events: none;
}

/* ===========================
   CTA section
   =========================== */

.service-cta-section {
  padding-bottom: 60px;
}

.service-cta-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px 34px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

@media (max-width: 767px) {
  .service-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.service-cta-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.service-cta-text {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 14px;
}

.service-cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-cta-contact-item i {
  font-size: 22px;
  color: #2563eb;
}

.service-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #0f172a;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.service-cta-button:hover {
  background-color: #2563eb;
}

@media (max-width: 767px) {
  .service-cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* ===========================
   Benefits bar
   =========================== */

.service-benefits-section {
  padding-bottom: 70px;
}

.service-benefits-bar {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

@media (min-width: 480px) {
  .service-benefits-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
  }
}

@media (min-width: 768px) {
  .service-benefits-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-benefits-bar {
    grid-template-columns: repeat(5, 1fr);
    padding: 24px 22px;
  }
}

.service-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 1024px) {
  .service-benefit-item {
    border-right: 1px solid #e5e7eb;
    border-bottom: none;
  }
  .service-benefit-item:last-child {
    border-right: none;
  }
}

.service-benefit-item:nth-child(5) {
  border-bottom: none;
}

.service-benefit-icon-item {
  font-size: 28px;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-benefit-content-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-benefit-title-item {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.service-benefit-text-item {
  font-size: 12px;
  color: #64748b;
}

/* Mobile */
@media (max-width: 639px) {
  .service-hero {
    padding-top: 36px;
    padding-bottom: 50px;
  }
  .service-title {
    font-size: 30px;
  }
  .service-hero-placeholder {
    height: 280px;
  }
  .service-process-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .service-devices-section {
    padding-bottom: 40px;
  }
  .service-warranty-section {
    padding-bottom: 40px;
  }
  .service-cta-section {
    padding-bottom: 40px;
  }
  .service-section-title {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .service-process-card {
    padding: 24px 18px;
  }
  .service-warranty-card,
  .service-why-card {
    padding: 22px;
  }
  .service-devices-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   Dark Footer Override
   ============================================================ */

.site-footer {
  background-color: #0f172a;
  border-top-color: #1e293b;
}

.footer-main {
  border-bottom-color: #1e293b;
}

.footer-logo-main .text-\[\#0f172a\] {
  color: #ffffff !important;
}

.footer-logo-subtitle {
  color: #94a3b8;
}

.footer-description {
  color: #cbd5e1;
}

.footer-social-link {
  color: #94a3b8;
}
.footer-social-link:hover {
  color: #ffffff;
}

.footer-title {
  color: #ffffff;
}

.footer-link {
  color: #94a3b8;
}
.footer-link:hover {
  color: #ffffff;
}

.footer-contact-item {
  color: #cbd5e1;
}
.footer-contact-item span {
  color: #cbd5e1;
}

.footer-contact-icon {
  color: #2563eb;
}

.footer-bottom {
  border-top-color: #1e293b;
}

.footer-copyright {
  color: #64748b;
}

.footer-bottom-link {
  color: #64748b;
}
.footer-bottom-link:hover {
  color: #ffffff;
}

/* ============================================================
   Homepage ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ Category & Promo Cards
   ============================================================ */

.home-categories-section {
  padding-top: 80px;
  padding-bottom: 64px;
  background-color: #ffffff;
}

/* ---------- Category grid ---------- */
.home-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

@media (min-width: 1024px) {
  .home-category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---------- Category card ---------- */
.home-category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.35s ease;
}
.home-category-card:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
}

.home-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.home-category-card:hover .home-category-image {
  transform: scale(1.06);
}

.home-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.45) 42%,
    rgba(15, 23, 42, 0.10) 100%
  );
  pointer-events: none;
  transition: background 0.35s ease;
}
.home-category-card:hover .home-category-overlay {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.94) 0%,
    rgba(15, 23, 42, 0.55) 42%,
    rgba(15, 23, 42, 0.14) 100%
  );
}

/* ---------- Card content ---------- */
.home-category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 26px;
  pointer-events: none;
}

.home-category-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.home-category-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 220px;
  margin-bottom: 18px;
}

.home-category-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  pointer-events: auto;
}
.home-category-card:hover .home-category-arrow {
  background-color: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
}

/* ---------- Mobile category ---------- */
@media (max-width: 639px) {
  .home-category-card {
    height: 280px;
    border-radius: 16px;
  }
  .home-category-title {
    font-size: 22px;
  }
  .home-category-content {
    padding: 22px 18px 20px;
  }
  .home-category-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ===========================
   Promo cards
   =========================== */

.home-promos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

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

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

/* ---------- Promo card ---------- */
.home-promo-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

/* ---------- Promo icon ---------- */
.home-promo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 16px;
  font-size: 28px;
}
.home-promo-icon--green {
  background-color: #ecfdf5;
  color: #16a34a;
}
.home-promo-icon--blue {
  background-color: #eff6ff;
  color: #2563eb;
}
.home-promo-icon--red {
  background-color: #fef2f2;
  color: #dc2626;
}

/* ---------- Promo content ---------- */
.home-promo-content {
  flex: 1;
  min-width: 0;
}

.home-promo-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.home-promo-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 14px;
}

.home-promo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.2s ease;
}
.home-promo-link i {
  font-size: 16px;
}
.home-promo-link:hover {
  gap: 12px;
}

.home-promo-link--green { color: #16a34a; }
.home-promo-link--blue  { color: #2563eb; }
.home-promo-link--red   { color: #dc2626; }

/* ---------- Mobile promo ---------- */
@media (max-width: 639px) {
  .home-categories-section {
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .home-promos-grid {
    margin-top: 28px;
    gap: 16px;
  }
  .home-promo-card {
    padding: 22px;
    gap: 16px;
    flex-direction: column;
  }
}

/* ============================================================
   Homepage ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ Products, Small Appliances & Benefits
   ============================================================ */

.home-products-section {
  background-color: #f8fafc;
  padding-top: 64px;
  padding-bottom: 80px;
}

/* ---------- Section header ---------- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  margin-top: 32px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 32px;
  }
}

.section-view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s;
}
.section-view-link:hover {
  gap: 12px;
}

/* ===========================
   Popular products
   =========================== */

.popular-products-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 64px;
}

.product-carousel-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-width: 46px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #6b7280;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  transition: color 0.2s, box-shadow 0.2s, border-color 0.2s;
  align-self: center;
  margin: 0 -8px;
  z-index: 2;
  padding: 0;
}
.product-carousel-arrow:hover {
  color: #2563eb;
  border-color: #bfdbfe;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

@media (min-width: 1024px) {
  .product-carousel-arrow {
    display: flex;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-grid::-webkit-scrollbar {
  display: none;
}

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

@media (min-width: 1024px) {
  .product-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .product-grid .product-card {
    min-width: calc(25% - 13.5px);
    scroll-snap-align: start;
  }
}

/* ---------- Product card ---------- */
.product-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

/* Badges */
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  color: #ffffff;
}
.product-badge-new    { background-color: #16a34a; }
.product-badge-used   { background-color: #2563eb; }
.product-badge-defect { background-color: #dc2626; }

/* Image */
.product-image-wrap {
  width: 100%;
  height: 170px;
  margin-bottom: 16px;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f1f5f9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 36px;
}

.product-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.product-category {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 14px;
  flex: 1;
}

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

.product-price {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}

.product-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 11px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.product-cart-btn:hover {
  background-color: #1d4ed8;
}

/* ===========================
   Small appliances
   =========================== */

.small-appliances-section {
  margin-top: 0;
  margin-bottom: 56px;
}

.small-appliances-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

@media (min-width: 1024px) {
  .small-appliances-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Small appliance card ---------- */
.small-appliance-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
.small-appliance-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.small-appliance-image {
  width: 100%;
  height: 160px;
  margin-bottom: 16px;
}

.small-appliance-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f1f5f9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 36px;
}

.small-appliance-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.small-appliance-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  transition: color 0.2s, gap 0.2s;
}
.small-appliance-card:hover .small-appliance-link {
  color: #2563eb;
  gap: 10px;
}

/* ===========================
   Home benefits bar
   =========================== */

.home-benefits-bar {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

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

@media (min-width: 768px) {
  .home-benefits-bar {
    grid-template-columns: repeat(3, 1fr);
    padding: 26px 22px;
  }
}

@media (min-width: 1024px) {
  .home-benefits-bar {
    grid-template-columns: repeat(5, 1fr);
    padding: 26px 24px;
  }
}

.home-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 1024px) {
  .home-benefit-item {
    border-right: 1px solid #e5e7eb;
    border-bottom: none;
  }
  .home-benefit-item:last-child {
    border-right: none;
  }
}

.home-benefit-item:nth-child(5) {
  border-bottom: none;
}

.home-benefit-icon {
  font-size: 28px;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.home-benefit-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.home-benefit-text {
  font-size: 12px;
  color: #64748b;
}

/* Mobile */
@media (max-width: 639px) {
  .home-products-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .section-title {
    font-size: 24px;
  }
  .popular-products-wrap {
    margin-bottom: 38px;
  }
  .small-appliances-section {
    margin-bottom: 36px;
  }
  .product-card {
    padding: 16px;
  }
  .product-badge {
    top: 12px;
    left: 12px;
  }
  .small-appliance-card {
    padding: 18px;
  }
  .home-benefits-bar {
    padding: 20px 14px;
  }
}

/* ============================================================
   Category Page Ã¢â‚¬â€œ Ovens
   ============================================================ */

.category-page {
  padding-top: 36px;
  padding-bottom: 60px;
  background-color: #f8fafc;
}

.category-breadcrumb {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  margin-bottom: 24px;
}

/* ---------- Layout ---------- */
.category-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 1024px) {
  .category-layout {
    grid-template-columns: 270px 1fr;
    gap: 28px;
  }
}

/* ===========================
   Sidebar
   =========================== */

.category-sidebar {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  height: fit-content;
}

@media (min-width: 1024px) {
  .category-sidebar {
    position: sticky;
    top: 120px;
  }
}

.sidebar-info {
  margin-bottom: 20px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.sidebar-count {
  font-size: 13px;
  color: #64748b;
}

/* Filter group */
.filter-group {
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-bottom: 4px;
}

.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0f172a;
  margin-bottom: 12px;
}
.filter-group-header i {
  color: #94a3b8;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #475569;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}
.filter-link:hover {
  color: #2563eb;
}

.filter-count {
  font-size: 12px;
  color: #94a3b8;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
}
.filter-checkbox input {
  accent-color: #2563eb;
  width: 16px;
  height: 16px;
}
.filter-checkbox .filter-count {
  margin-left: auto;
}

.filter-search {
  position: relative;
  margin-bottom: 12px;
}
.filter-search input {
  width: 100%;
  height: 40px;
  padding: 0 36px 0 12px;
  font-size: 13px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  color: #0f172a;
}
.filter-search input::placeholder { color: #94a3b8; }
.filter-search input:focus { border-color: #2563eb; }
.filter-search i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #94a3b8;
}

.filter-show-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  margin-top: 8px;
}

/* Price range */
.price-range {
  padding: 4px 0 8px;
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #475569;
  margin-bottom: 10px;
}

.price-slider {
  position: relative;
  height: 6px;
}

.price-slider-track {
  position: absolute;
  inset: 0;
  background-color: #e5e7eb;
  border-radius: 999px;
}

.price-slider-fill {
  position: absolute;
  left: 5%;
  right: 15%;
  top: 0;
  bottom: 0;
  background-color: #2563eb;
  border-radius: 999px;
}

.price-slider-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 3px solid #2563eb;
  border-radius: 50%;
}
.price-slider-handle-left  { left: 5%; }
.price-slider-handle-right { left: 85%; }

.clear-filters-btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 8px;
}
.clear-filters-btn:hover {
  background-color: #f8fafc;
}

/* ===========================
   Category hero
   =========================== */

.category-hero {
  position: relative;
  height: 270px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 28px;
}

.category-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.52) 55%,
    rgba(15, 23, 42, 0.14) 100%
  );
}

.category-hero-content {
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  transform: translateY(-50%);
  max-width: 500px;
}

.category-hero-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
}

.category-hero-text {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin-bottom: 26px;
}

.category-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.category-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-hero-feature i {
  font-size: 26px;
  color: rgba(255,255,255,0.8);
}
.category-hero-feature div {
  display: flex;
  flex-direction: column;
}
.category-hero-feature div span:first-child {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}
.category-hero-feature div span:last-child {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

/* ===========================
   Toolbar
   =========================== */

.category-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.category-products-count {
  font-size: 14px;
  color: #475569;
}

.category-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.category-sort label {
  font-size: 13px;
  color: #64748b;
  white-space: nowrap;
}

.category-sort-select {
  height: 42px;
  padding: 0 36px 0 14px;
  font-size: 13px;
  font-family: inherit;
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.view-toggle {
  display: flex;
  gap: 6px;
}

.view-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 18px;
  color: #64748b;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.view-toggle-btn.active {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

/* ===========================
   Product grid
   =========================== */

.category-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.category-product-grid.list-view {
  grid-template-columns: 1fr;
}
.category-product-grid.list-view .category-product-card {
  display: flex;
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.category-product-grid.list-view .category-product-image {
  width: 200px;
  min-width: 200px;
  height: 160px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}
.category-product-grid.list-view .category-product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}
.category-product-grid.list-view .category-product-placeholder {
  border-radius: 0;
  height: 100%;
  min-height: 160px;
}
.category-product-grid.list-view .category-product-badge {
  top: 12px;
  left: 12px;
}
.category-product-grid.list-view .category-product-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.category-product-grid.list-view .category-product-category {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
  flex: 1;
}
.category-product-grid.list-view .category-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.category-product-grid.list-view .category-product-price {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}
.category-product-grid.list-view .category-product-old-price {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-left: 8px;
}
.category-product-grid.list-view .category-product-info {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}
.category-product-grid.list-view .category-cart-btn {
  width: 44px;
  height: 44px;
  font-size: 20px;
}
@media (max-width: 639px) {
  .category-product-grid.list-view .category-product-card {
    flex-direction: column;
  }
  .category-product-grid.list-view .category-product-image {
    width: 100%;
    min-width: 100%;
    height: 180px;
  }
  .category-product-grid.list-view .category-product-info {
    padding: 16px 18px;
  }
}

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

@media (min-width: 1024px) {
  .category-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-product-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.category-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.category-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 5px;
  color: #ffffff;
  white-space: nowrap;
}
.badge-new    { background-color: #16a34a; }
.badge-used   { background-color: #2563eb; }
.badge-defect { background-color: #dc2626; }

.category-product-image {
  width: 100%;
  height: 160px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}
.category-product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}
.category-product-image-link {
  display: block;
  text-decoration: none;
}
.category-product-info {
  flex: 1;
}

.category-product-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 32px;
}

.category-product-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.category-product-category {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}

.category-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-product-bottom > div:first-child {
  display: flex;
  flex-direction: column;
}

.category-product-price {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.category-product-old-price {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-left: 8px;
}

.category-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
}
.category-cart-btn:hover {
  background-color: #1d4ed8;
}

/* ===========================
   Pagination
   =========================== */

.category-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 34px;
}

.pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
}
.pagination-item:hover {
  color: #2563eb;
  border-color: #bfdbfe;
}
.pagination-item.active {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}
.pagination-dots {
  padding: 0 4px;
  color: #94a3b8;
}

/* ===========================
   Category benefits bar
   =========================== */

.category-benefits-bar {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  margin-top: 56px;
}

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

@media (min-width: 768px) {
  .category-benefits-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-benefits-bar {
    grid-template-columns: repeat(5, 1fr);
    padding: 24px 22px;
  }
}

.category-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 1024px) {
  .category-benefit-item {
    border-right: 1px solid #e5e7eb;
    border-bottom: none;
  }
  .category-benefit-item:last-child {
    border-right: none;
  }
}
.category-benefit-item:nth-child(5) { border-bottom: none; }

.category-benefit-icon {
  font-size: 28px;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.category-benefit-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.category-benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.category-benefit-text {
  font-size: 12px;
  color: #64748b;
}

/* Mobile */
@media (max-width: 639px) {
  .category-page {
    padding-top: 28px;
    padding-bottom: 48px;
  }
  .category-hero {
    height: 340px;
  }
  .category-hero-content {
    left: 24px;
    right: 24px;
  }
  .category-hero-title {
    font-size: 28px;
  }
  .category-hero-features {
    gap: 14px;
    flex-direction: column;
  }
  .category-sidebar {
    padding: 18px;
    border-radius: 16px;
  }
  .category-benefits-bar {
    margin-top: 40px;
    padding: 20px 14px;
  }
}

/* ============================================================
   Product Detail Page
   ============================================================ */

.product-page {
  padding-top: 36px;
  padding-bottom: 60px;
  background-color: #f8fafc;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  margin-bottom: 30px;
}

/* ---------- Product main ---------- */
.product-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 1024px) {
  .product-main {
    grid-template-columns: 52fr 48fr;
    gap: 52px;
  }
}

/* ===========================
   Gallery
   =========================== */

.product-main-image {
  position: relative;
  background-color: #f1f5f9;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  height: 500px;
  overflow: hidden;
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 6px;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #94a3b8;
}
.product-image-placeholder i {
  font-size: 72px;
  color: #cbd5e1;
}
.product-image-placeholder span {
  font-size: 14px;
}

/* Thumbnails */
.product-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-thumbnail {
  width: 96px;
  height: 80px;
  min-width: 96px;
  background-color: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-thumbnail i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #94a3b8;
  font-size: 24px;
}
.product-thumbnail.active {
  border-color: #2563eb;
  border-width: 2px;
}

/* ===========================
   Product info
   =========================== */

.product-status-badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  background-color: #2563eb;
  color: #ffffff;
  border-radius: 6px;
  margin-bottom: 16px;
}

.product-detail-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.18;
  margin-bottom: 6px;
}

@media (min-width: 1024px) {
  .product-detail-title {
    font-size: 38px;
  }
}

.product-detail-category {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 4px;
}

.product-detail-price {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 16px;
  margin-bottom: 26px;
}

/* Highlights */
.product-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #475569;
}
.product-highlight-item i {
  color: #2563eb;
  font-size: 18px;
  flex-shrink: 0;
}

/* Actions */
.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

@media (max-width: 639px) {
  .product-actions {
    flex-direction: column;
  }
}

.product-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  height: 52px;
}

.qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 100%;
  font-size: 18px;
  color: #64748b;
  background-color: #f8fafc;
  cursor: pointer;
  user-select: none;
}

.qty-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

.product-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  height: 52px;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.product-add-cart:hover {
  background-color: #1d4ed8;
}

.product-add-favorite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  background-color: #ffffff;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.product-add-favorite:hover {
  background-color: #f8fafc;
}

/* ===========================
   Tabs & Description
   =========================== */

.product-tabs-section {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid #e5e7eb;
}

.product-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e5e7eb;
  overflow-x: auto;
}

.product-tab {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.product-tab.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.product-description {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  margin-top: 24px;
}

/* ===========================
   Features grid
   =========================== */

.product-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

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

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

.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
}

.product-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: #eff6ff;
  border-radius: 12px;
  color: #2563eb;
  font-size: 22px;
}

.product-feature-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.product-feature-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

/* ===========================
   Related products
   =========================== */

.related-products-section {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.related-products-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 28px;
}

.related-products-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.related-carousel-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-width: 46px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #6b7280;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  align-self: center;
  margin: 0 -8px;
  z-index: 2;
  padding: 0;
}
.related-carousel-arrow:hover {
  color: #2563eb;
  border-color: #bfdbfe;
}

@media (min-width: 1024px) {
  .related-carousel-arrow {
    display: flex;
  }
}

.related-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.related-products-grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .related-products-grid {
    display: flex;
    gap: 16px;
  }
  .related-products-grid .related-product-card {
    min-width: calc(20% - 13px);
  }
}

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

@media (min-width: 768px) {
  .related-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .related-products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.related-product-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.related-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.related-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 5px;
  color: #ffffff;
  white-space: nowrap;
}

.related-product-image {
  width: 100%;
  height: 140px;
  margin-bottom: 12px;
}

.related-product-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 28px;
}

.related-product-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.related-product-category {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 10px;
}

.related-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.related-product-price {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.related-product-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.related-product-cart:hover {
  background-color: #1d4ed8;
}

/* ===========================
   Product benefits bar
   =========================== */

.product-benefits-bar {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  margin-top: 52px;
}

@media (min-width: 480px) {
  .product-benefits-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .product-benefits-bar { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .product-benefits-bar { grid-template-columns: repeat(5, 1fr); padding: 24px 22px; }
}

.product-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
}
@media (min-width: 1024px) {
  .product-benefit-item {
    border-right: 1px solid #e5e7eb;
    border-bottom: none;
  }
  .product-benefit-item:last-child { border-right: none; }
}
.product-benefit-item:nth-child(5) { border-bottom: none; }

.product-benefit-icon { font-size: 28px; color: #2563eb; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.product-benefit-content { display: flex; flex-direction: column; gap: 2px; }
.product-benefit-title { font-size: 14px; font-weight: 700; color: #0f172a; }
.product-benefit-text { font-size: 12px; color: #64748b; }

/* Mobile */
@media (max-width: 639px) {
  .product-page { padding-top: 28px; padding-bottom: 48px; }
  .product-main-image { height: 340px; border-radius: 16px; }
  .product-detail-title { font-size: 28px; }
  .product-detail-price { font-size: 34px; }
  .product-tabs-section { margin-top: 40px; padding-top: 28px; }
  .related-products-section { margin-top: 40px; padding-top: 32px; }
  .related-products-title { font-size: 24px; }
  .product-benefits-bar { margin-top: 40px; padding: 20px 14px; }
}

/* ---------- Tab panels ---------- */
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

/* ============================================================
   Delivery Page
   ============================================================ */

.delivery-page {
  padding-top: 36px;
  padding-bottom: 50px;
  background-color: #f8fafc;
}

.delivery-breadcrumb {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  margin-bottom: 28px;
}

/* ---------- Layout ---------- */
.delivery-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 1024px) {
  .delivery-layout {
    grid-template-columns: 72fr 28fr;
    gap: 28px;
  }
}

/* ===========================
   Hero
   =========================== */

.delivery-hero {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 36px 40px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
}

.delivery-hero-content {
  flex: 1;
  min-width: 0;
}

.delivery-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #eff6ff;
  border-radius: 16px;
  color: #2563eb;
  font-size: 32px;
  margin-bottom: 20px;
}

.delivery-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .delivery-title {
    font-size: 48px;
  }
}

.delivery-text {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  max-width: 460px;
}

.delivery-hero-image {
  width: 45%;
  max-width: 340px;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ===========================
   Sidebar cards
   =========================== */

.delivery-sidebar-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  margin-bottom: 24px;
}

.delivery-sidebar-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

.delivery-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.delivery-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: #eff6ff;
  border-radius: 10px;
  color: #2563eb;
  font-size: 20px;
}

.delivery-info-content {
  flex: 1;
  min-width: 0;
}

.delivery-info-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.delivery-info-text {
  display: block;
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
}

/* Contact card (questions) */
.delivery-contact-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  max-width: 320px;
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .delivery-contact-card {
    max-width: 100%;
  }
}

.delivery-contact-title {
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.delivery-contact-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #475569;
  margin-bottom: 18px;
}

.delivery-contact-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.delivery-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #0f172a;
  line-height: 1.5;
}

.delivery-contact-icon {
  color: #2563eb;
  font-size: 18px;
  flex-shrink: 0;
}

.delivery-contact-text {
  flex: 1;
}

.delivery-online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #16a34a;
  border-radius: 50%;
  margin: 0 1px;
  vertical-align: middle;
}

/* ===========================
   Delivery areas
   =========================== */

.delivery-areas-section {
  margin-top: 44px;
}

.delivery-section-title {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.delivery-section-title i {
  color: #2563eb;
}

.delivery-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.delivery-area-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.delivery-area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.delivery-area-card-highlight {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
}

.delivery-area-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.delivery-area-header i {
  font-size: 22px;
  color: #2563eb;
}
.delivery-area-card-highlight .delivery-area-header i {
  color: #15803d;
}
.delivery-area-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}

.delivery-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.delivery-price-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  font-size: 16px;
}
.delivery-price-icon.free {
  background-color: #dcfce7;
  color: #16a34a;
}
.delivery-price-icon.paid {
  background-color: #fee2e2;
  color: #dc2626;
}

.delivery-price-content {
  display: flex;
  flex-direction: column;
}

.delivery-price-main {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.delivery-price-sub {
  font-size: 12px;
}
.delivery-price-sub.free { color: #16a34a; }
.delivery-price-sub.paid { color: #dc2626; }

.delivery-area-note-list {
  margin: 8px 0 0 40px;
  padding: 0;
  list-style: disc;
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

/* ===========================
   Additional services
   =========================== */

.delivery-services-section {
  margin-top: 48px;
}

.delivery-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.delivery-service-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.delivery-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.delivery-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 26px;
  margin-bottom: 14px;
}
.delivery-service-icon.blue   { background-color: #eff6ff; color: #2563eb; }
.delivery-service-icon.green  { background-color: #ecfdf5; color: #16a34a; }
.delivery-service-icon.orange { background-color: #fff7ed; color: #f97316; }

.delivery-service-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.delivery-service-subtitle {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 22px;
}

.delivery-service-table {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.delivery-service-rows {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
}

.delivery-service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: #475569;
  padding: 13px 0;
  border-bottom: 1px solid #e5e7eb;
  line-height: 1.5;
}
.delivery-service-row:last-child {
  border-bottom: none;
}
.delivery-service-row-label {
  color: #475569;
}
.delivery-service-row-value {
  color: #0f172a;
  font-weight: 800;
  text-align: right;
}

.delivery-service-info-box {
  margin-top: 14px;
  padding: 12px 14px;
  background-color: #eff6ff;
  border-radius: 10px;
  font-size: 12px;
  color: #475569;
  line-height: 1.55;
}
.delivery-service-info-box.orange {
  background-color: #fff7ed;
}

.delivery-service-warning-box {
  margin-top: 22px;
  padding: 18px 20px;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 14px;
}

.delivery-warning-title {
  color: #dc2626;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
}

.delivery-warning-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
}

.delivery-warning-list i {
  color: #dc2626;
  font-size: 16px;
  line-height: 1.4;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .delivery-service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .delivery-service-row-value {
    text-align: left;
  }
}

/* ===========================
   Benefits bar
   =========================== */

.delivery-benefits-bar {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  margin-top: 48px;
}

@media (min-width: 480px) { .delivery-benefits-bar { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .delivery-benefits-bar { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .delivery-benefits-bar { grid-template-columns: repeat(5, 1fr); padding: 24px 22px; } }

.delivery-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
}
@media (min-width: 1024px) {
  .delivery-benefit-item { border-right: 1px solid #e5e7eb; border-bottom: none; }
  .delivery-benefit-item:last-child { border-right: none; }
}
.delivery-benefit-item:nth-child(5) { border-bottom: none; }

.delivery-benefit-icon { font-size: 28px; color: #2563eb; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.delivery-benefit-content { display: flex; flex-direction: column; gap: 2px; }
.delivery-benefit-title { font-size: 14px; font-weight: 700; color: #0f172a; }
.delivery-benefit-text { font-size: 12px; color: #64748b; }

/* Mobile */
@media (max-width: 639px) {
  .delivery-page { padding-top: 28px; padding-bottom: 40px; }
  .delivery-hero { flex-direction: column; padding: 28px 24px; border-radius: 18px; }
  .delivery-hero-image { width: 100%; max-width: 200px; max-height: 180px; }
  .delivery-title { font-size: 34px; }
  .delivery-areas-section { margin-top: 36px; }
  .delivery-section-title { font-size: 22px; }
  .delivery-services-grid { grid-template-columns: 1fr; }
  .delivery-benefits-bar { margin-top: 36px; padding: 20px 14px; }
}

/* ============================================================
   Avatar Dropdown
   ============================================================ */

.avatar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0;
  line-height: 1;
  font-family: inherit;
}
.avatar-btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.avatar-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
  overflow: hidden;
}
.avatar-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.avatar-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #dc2626;
  text-decoration: none;
  transition: background-color 0.2s;
}
.avatar-dropdown-link:hover {
  background-color: #fef2f2;
}
.avatar-dropdown-link i {
  font-size: 18px;
}
