:root {
  --sv-text: #0c1730;
  --sv-muted: #627089;
  --sv-line: rgba(12, 23, 48, 0.1);
  --sv-blue: #153fb8;
  --sv-blue-deep: #0d2f86;
  --sv-red: #c91f36;
  --sv-red-deep: #aa1528;
  --sv-soft: #f6f8fc;
  --sv-shadow: 0 20px 60px rgba(21, 63, 184, 0.09), 0 16px 40px rgba(201, 31, 54, 0.07);
}

body {
  color: var(--sv-text);
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 48%, #ffffff 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

main {
  min-height: 70vh;
  padding-top: 88px;
}

.navbar {
  height: 84px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--sv-line);
  backdrop-filter: blur(16px);
  box-shadow: none;
}

.nav-container {
  width: min(calc(100% - 40px), 1360px);
  margin: 0 auto;
  padding: 0;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sv-text);
  text-decoration: none;
}

.logo img {
  width: 54px;
  height: 54px;
  max-height: none;
  object-fit: contain;
}

.logo span {
  display: grid;
  gap: 2px;
}

.logo strong {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo small {
  color: var(--sv-muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  gap: 10px;
}

.nav-links li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--sv-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.nav-links li a:hover {
  color: var(--sv-text);
  border-color: rgba(21, 63, 184, 0.12);
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.05), rgba(201, 31, 54, 0.05));
  transform: translateY(-1px);
}

.customer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.customer-nav__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--sv-blue), var(--sv-red));
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.customer-nav__link--ghost {
  color: var(--sv-text);
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.06), rgba(201, 31, 54, 0.06));
  border: 1px solid rgba(21, 63, 184, 0.12);
}

#nav-icon4 {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(21, 63, 184, 0.1);
  border-radius: 999px;
  background: #fff;
}

#nav-icon4 span {
  width: 20px;
  left: 13px;
  background: var(--sv-text);
}

#nav-icon4 span:nth-child(1) {
  top: 15px;
}

#nav-icon4 span:nth-child(2) {
  top: 22px;
}

#nav-icon4 span:nth-child(3) {
  top: 29px;
}

.hero-slider,
.mega-menu,
.mobile-search,
.search-bar,
.nav-actions {
  display: none !important;
}

.shop,
.product-details,
.contact-page,
.checkout,
.auth-container,
.wholesale-hero,
.wholesale-auth,
.admin-products {
  background: transparent;
}

.shop,
.contact-page,
.auth-container,
.wholesale-auth,
.admin-products {
  padding-left: max(20px, calc((100vw - 1360px) / 2));
  padding-right: max(20px, calc((100vw - 1360px) / 2));
}

.shop-title,
.contact-title,
.checkout-title,
.auth-box h2,
.wholesale-hero h1,
.wholesale-auth__panel h1 {
  color: var(--sv-text);
  letter-spacing: -0.03em;
}

.shop-sub,
.contact-subtitle,
.auth-sub,
.wholesale-hero p,
.wholesale-auth__panel > p {
  color: var(--sv-muted);
}

.card,
.product-card,
.contact-container,
.auth-box,
.checkout-left,
.checkout-right,
.order-box,
.wholesale-auth__panel,
.wholesale-info__item,
.wholesale-modal__panel {
  border: 1px solid var(--sv-line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.98));
  box-shadow: var(--sv-shadow);
}

.filter-btn,
.cart-btn,
.load-more,
.auth-btn,
.pay-now,
.wholesale-hero__button,
.wholesale-form__submit,
.admin-add-btn,
.btn-submit {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sv-blue), var(--sv-red));
  color: #fff;
  font-weight: 800;
  box-shadow:
    0 16px 34px rgba(21, 63, 184, 0.16),
    0 12px 26px rgba(201, 31, 54, 0.14);
}

.filter-btn.active,
.filter-btn:hover,
.load-more:hover,
.auth-btn:hover,
.pay-now:hover,
.wholesale-hero__button:hover,
.wholesale-form__submit:hover {
  transform: translateY(-2px);
}

.checkout-inp,
.input-group input,
.contact-form input,
.contact-form textarea,
.wholesale-form input,
.wholesale-form select,
.wholesale-form textarea,
.wholesale-auth__form input {
  border: 1px solid rgba(21, 63, 184, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--sv-text);
}

.cookie-banner {
  border: 1px solid var(--sv-line);
  border-radius: 18px;
  box-shadow: var(--sv-shadow);
}

#acceptCookies {
  background: var(--sv-red);
}

.footer {
  background: transparent;
}

.about-page {
  width: min(calc(100% - 40px), 1360px);
  margin: 0 auto;
  padding: 34px 0 70px;
}

.about-hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  border: 1px solid var(--sv-line);
  border-radius: 32px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(10, 18, 37, 0.84)),
    linear-gradient(135deg, rgba(21, 63, 184, 0.26), rgba(201, 31, 54, 0.2)),
    url("/images/header/h-2.jpeg") center/cover;
  box-shadow: var(--sv-shadow);
}

.about-eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.about-hero p {
  max-width: 650px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sv-blue), var(--sv-red));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.about-grid article {
  padding: 24px;
  border: 1px solid var(--sv-line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.98));
  box-shadow: var(--sv-shadow);
}

.about-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.06), rgba(201, 31, 54, 0.06));
  color: var(--sv-blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-grid h2 {
  margin: 0 0 10px;
  color: var(--sv-text);
  letter-spacing: -0.02em;
}

.about-grid p {
  margin: 0;
  color: var(--sv-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  main {
    padding-top: 84px;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--sv-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--sv-shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    justify-content: center;
  }

  .customer-nav {
    margin-left: auto;
  }

  .customer-nav__link {
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .logo small {
    display: none;
  }

  .about-hero {
    min-height: 460px;
    padding: 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .customer-nav__link--ghost {
    display: none;
  }

  .customer-nav__link {
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .customer-nav__link i {
    font-size: 15px;
  }
}

/* ===== HEADER LOGO SIZE CONTROL ===== */
.header .navbar .nav-container .logo {
  flex: 0 0 144px !important;
  max-width: 144px !important;
}

.header .navbar .nav-container .logo a {
  width: 144px !important;
  min-width: 144px !important;
}

.header .navbar .nav-container .logo img,
.navbar .nav-container .logo img,
.navbar .logo img,
.logo img {
  width: 124px !important;
  max-width: 124px !important;
  height: 124px !important;
  max-height: 124px !important;
  object-fit: contain !important;
}

.header .navbar,
.navbar,
.header .navbar .nav-container,
.nav-container {
  min-height: 138px !important;
}

.nav-links {
  gap: 18px !important;
}

.nav-links li a {
  font-size: 15px !important;
}

@media (max-width: 1100px) {
  .header .navbar .nav-container .logo {
    flex-basis: 128px !important;
    max-width: 128px !important;
  }

  .header .navbar .nav-container .logo a {
    width: 128px !important;
    min-width: 128px !important;
  }

  .header .navbar .nav-container .logo img,
  .navbar .nav-container .logo img,
  .navbar .logo img,
  .logo img {
    width: 108px !important;
    max-width: 108px !important;
    height: 108px !important;
    max-height: 108px !important;
  }
}

@media (max-width: 900px) {
  .header .navbar .nav-container .logo {
    flex-basis: 104px !important;
    max-width: 104px !important;
  }

  .header .navbar .nav-container .logo a {
    width: 104px !important;
    min-width: 104px !important;
  }

  .header .navbar .nav-container .logo img,
  .navbar .nav-container .logo img,
  .navbar .logo img,
  .logo img {
    width: 88px !important;
    max-width: 88px !important;
    height: 88px !important;
    max-height: 88px !important;
  }

  .header .navbar,
  .navbar,
  .header .navbar .nav-container,
  .nav-container {
    min-height: 104px !important;
  }

  .nav-links {
    top: 104px !important;
    height: calc(100vh - 104px) !important;
  }
}

/* ===== CENTERED HEADER REDESIGN ===== */
main {
  padding-top: 132px;
}

.header .navbar,
.navbar {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: auto !important;
  min-height: 118px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid var(--sv-line) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(12, 23, 48, 0.08) !important;
}

.header .nav-container,
.nav-container {
  width: min(calc(100% - 40px), 1360px) !important;
  min-height: 118px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 20px !important;
}

.header .nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.header .nav-links li a {
  min-height: 38px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  color: var(--sv-muted) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.header .nav-links li a:hover {
  color: var(--sv-text) !important;
  background: linear-gradient(90deg, rgba(21, 63, 184, 0.06), rgba(201, 31, 54, 0.06)) !important;
}

.header .logo {
  justify-self: center !important;
  flex: none !important;
  max-width: none !important;
}

.header .logo a {
  width: auto !important;
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  color: var(--sv-text) !important;
  text-decoration: none !important;
}

.header .logo img,
.navbar .logo img,
.logo img {
  width: 92px !important;
  max-width: 92px !important;
  height: 92px !important;
  max-height: 92px !important;
  object-fit: contain !important;
}

.header .logo span {
  display: grid !important;
  gap: 3px !important;
  min-width: 112px !important;
  line-height: 1 !important;
  text-align: left !important;
}

.header .logo strong {
  color: var(--sv-text) !important;
  font-size: 17px !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.header .logo small {
  color: var(--sv-red) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

.header .header-tools {
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 9px !important;
  min-width: 0 !important;
}

.header .header-search {
  width: clamp(190px, 18vw, 280px) !important;
  height: 42px !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  overflow: hidden !important;
  border: 1px solid rgba(21, 63, 184, 0.14) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  box-shadow: 0 10px 26px rgba(12, 23, 48, 0.06) !important;
}

.header .header-search label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.header .header-search input {
  min-width: 0 !important;
  height: 100% !important;
  padding: 0 12px !important;
  border: 0 !important;
  outline: 0 !important;
  color: var(--sv-text) !important;
  background: transparent !important;
  font-size: 13px !important;
}

.header .header-search button {
  height: 34px !important;
  margin-right: 4px !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--sv-blue), var(--sv-red)) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
}

.header .header-cart,
.header .customer-nav__link {
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--sv-blue), var(--sv-red)) !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

#nav-icon4 {
  display: none !important;
}

@media (max-width: 1180px) {
  .header .nav-container,
  .nav-container {
    grid-template-columns: auto 1fr auto !important;
    gap: 14px !important;
  }

  .header .logo {
    justify-self: start !important;
    order: 1 !important;
  }

  .header .nav-links {
    order: 3 !important;
    grid-column: 1 / -1 !important;
    justify-content: center !important;
    padding-bottom: 12px !important;
  }

  .header .header-tools {
    order: 2 !important;
  }

  .header .logo img,
  .navbar .logo img,
  .logo img {
    width: 78px !important;
    max-width: 78px !important;
    height: 78px !important;
    max-height: 78px !important;
  }
}

@media (max-width: 760px) {
  main {
    padding-top: 104px;
  }

  .header .navbar,
  .navbar,
  .header .nav-container,
  .nav-container {
    min-height: 96px !important;
  }

  .header .nav-container,
  .nav-container {
    width: min(calc(100% - 24px), 1360px) !important;
    grid-template-columns: auto 1fr auto !important;
  }

  .header .logo img,
  .navbar .logo img,
  .logo img {
    width: 64px !important;
    max-width: 64px !important;
    height: 64px !important;
    max-height: 64px !important;
  }

  .header .logo span {
    min-width: 0 !important;
  }

  .header .logo strong {
    font-size: 13px !important;
  }

  .header .logo small {
    font-size: 9px !important;
  }

  .header .header-search {
    display: none !important;
  }

  .header .nav-links {
    position: fixed !important;
    top: 96px !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 1001 !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 14px !important;
    border: 1px solid var(--sv-line) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--sv-shadow) !important;
  }

  .header .nav-links.active,
  .header .nav-links.is-open {
    display: flex !important;
  }

  .header .nav-links li a {
    justify-content: center !important;
  }

  .header .header-cart {
    display: none !important;
  }

  .header .customer-nav__link {
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
  }

  #nav-icon4 {
    display: block !important;
    width: 30px !important;
    height: 24px !important;
    position: relative !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
  }
}

/* ===== LEFT LOGO / CENTER NAV HEADER START ===== */

@media (min-width: 1181px) {
  .header .nav-container,
  .nav-container {
    grid-template-columns: minmax(250px, auto) minmax(0, 1fr) minmax(360px, auto) !important;
  }

  .header .logo {
    order: 1 !important;
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .header .nav-links {
    order: 2 !important;
    grid-column: 2 !important;
    justify-self: center !important;
    justify-content: center !important;
  }

  .header .header-tools {
    order: 3 !important;
    grid-column: 3 !important;
    justify-self: end !important;
  }
}

/* ===== LEFT LOGO / CENTER NAV HEADER END ===== */

/* ===== HEADER LOGO SIZE TUNE START ===== */

.header .logo img,
.navbar .logo img,
.logo img {
  width: 108px !important;
  max-width: 108px !important;
  height: 108px !important;
  max-height: 108px !important;
}

@media (max-width: 1180px) {
  .header .logo img,
  .navbar .logo img,
  .logo img {
    width: 86px !important;
    max-width: 86px !important;
    height: 86px !important;
    max-height: 86px !important;
  }
}

@media (max-width: 760px) {
  .header .logo img,
  .navbar .logo img,
  .logo img {
    width: 68px !important;
    max-width: 68px !important;
    height: 68px !important;
    max-height: 68px !important;
  }
}

/* ===== HEADER LOGO SIZE TUNE END ===== */

/* ===== PREMIUM STANDARD FOOTER START ===== */

.sv-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 31, 54, 0.28), transparent 30%),
    linear-gradient(135deg, #07142f 0%, #0d1e48 55%, #151830 100%) !important;
  color: #ffffff !important;
}

.sv-footer .footer-container,
.sv-footer .footer-strip,
.sv-footer .footer-bottom {
  max-width: 1180px !important;
}

.sv-footer .footer-col h4 {
  color: #ffffff !important;
}

.sv-footer .footer-col p,
.sv-footer .footer-col a,
.sv-footer .footer-bottom {
  color: rgba(255, 255, 255, 0.68) !important;
}

.sv-footer .footer-col a:hover {
  color: #ffffff !important;
}

/* ===== PREMIUM STANDARD FOOTER END ===== */

/* ===== LEGAL PAGES START ===== */
.legal-page {
  width: min(100% - 40px, 1180px);
  margin: 34px auto 80px;
}

.legal-hero {
  padding: 44px;
  border: 1px solid var(--sv-line);
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 20, 47, 0.88), rgba(13, 30, 72, 0.84)),
    radial-gradient(circle at 90% 0%, rgba(201, 31, 54, 0.34), transparent 36%);
  box-shadow: var(--sv-shadow);
}

.legal-hero span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.legal-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

.legal-summary,
.legal-content {
  border: 1px solid var(--sv-line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(13, 30, 72, 0.06);
}

.legal-summary {
  position: sticky;
  top: 110px;
  padding: 22px;
}

.legal-summary img {
  width: 72px;
  height: auto;
  margin-bottom: 14px;
}

.legal-summary dl,
.legal-summary dd {
  margin: 0;
}

.legal-summary div {
  padding: 12px 0;
  border-top: 1px solid var(--sv-line);
}

.legal-summary dt {
  margin-bottom: 4px;
  color: var(--sv-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-summary dd,
.legal-summary a {
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.legal-content {
  padding: 34px;
}

.legal-section + .legal-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--sv-line);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--sv-text);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section li {
  color: var(--sv-muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section ul {
  display: grid;
  gap: 9px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  padding-left: 22px;
}

.legal-section li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sv-red), var(--sv-blue));
  content: "";
}

@media (max-width: 900px) {
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }
}

@media (max-width: 620px) {
  .legal-page {
    width: min(100% - 24px, 1180px);
    margin-top: 22px;
  }

  .legal-hero,
  .legal-content {
    padding: 24px;
  }
}
/* ===== LEGAL PAGES END ===== */

/* ===== CUSTOMER SERVICE FAQ START ===== */
.customer-service-page {
  width: min(100% - 40px, 1180px);
  margin: 34px auto 80px;
}

.customer-service-hero {
  padding: 44px;
  border: 1px solid var(--sv-line);
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 20, 47, 0.9), rgba(13, 30, 72, 0.84)),
    radial-gradient(circle at 88% 0%, rgba(201, 31, 54, 0.34), transparent 36%);
  box-shadow: var(--sv-shadow);
}

.customer-service-hero > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.customer-service-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.customer-service-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.customer-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.customer-service-actions a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 900;
  text-decoration: none;
}

.customer-service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.customer-service-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--sv-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(13, 30, 72, 0.06);
  text-decoration: none;
}

.customer-service-card i {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sv-red), var(--sv-blue));
}

.customer-service-card strong {
  color: var(--sv-text);
  font-size: 17px;
}

.customer-service-card span {
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.5;
}

.customer-service-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

.customer-service-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--sv-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(13, 30, 72, 0.06);
}

.customer-service-nav strong {
  margin-bottom: 6px;
  color: var(--sv-text);
}

.customer-service-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--sv-muted);
  background: #f7f9ff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.faq-group {
  padding: 24px;
  border: 1px solid var(--sv-line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(13, 30, 72, 0.06);
}

.faq-group + .faq-group {
  margin-top: 18px;
}

.faq-group h2 {
  margin: 0 0 14px;
  color: var(--sv-text);
  font-size: 26px;
  letter-spacing: -0.02em;
}

.faq-item {
  border-top: 1px solid var(--sv-line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  color: var(--sv-text);
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  transition: transform 160ms ease;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--sv-muted);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .customer-service-cards,
  .customer-service-layout {
    grid-template-columns: 1fr 1fr;
  }

  .customer-service-nav {
    position: static;
  }
}

@media (max-width: 680px) {
  .customer-service-page {
    width: min(100% - 24px, 1180px);
    margin-top: 22px;
  }

  .customer-service-hero,
  .faq-group {
    padding: 24px;
  }

  .customer-service-cards,
  .customer-service-layout {
    grid-template-columns: 1fr;
  }
}
/* ===== CUSTOMER SERVICE FAQ END ===== */

/* ===== PRODUCT DETAIL REDESIGN START ===== */
.product-detail-redesign {
  width: min(100% - 40px, 1240px) !important;
  max-width: 1240px !important;
  margin: 34px auto 72px !important;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--sv-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-breadcrumb a {
  color: var(--sv-blue);
  text-decoration: none;
}

.product-breadcrumb strong {
  min-width: 0;
  overflow: hidden;
  color: var(--sv-text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-detail-redesign .product-detail-card {
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: stretch;
  padding: 30px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 0%, rgba(180, 18, 50, 0.08), transparent 34%),
    radial-gradient(circle at 95% 12%, rgba(35, 63, 140, 0.1), transparent 32%),
    #ffffff;
  border: 1px solid var(--sv-line);
  box-shadow: var(--sv-shadow);
}

.product-detail-redesign .product-gallery {
  display: grid;
  align-content: start;
  gap: 14px;
}

.product-detail-redesign .product-main-image {
  min-height: 520px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(13, 30, 72, 0.04), rgba(180, 18, 50, 0.04)),
    #f8faff;
  border: 1px solid rgba(13, 30, 72, 0.08);
}

.product-detail-redesign .product-main-image img {
  width: min(92%, 500px);
  max-height: 500px;
}

.product-detail-redesign .product-thumbnails {
  justify-content: flex-start;
  margin: 0;
}

.product-detail-redesign .product-thumbnails img {
  width: 74px;
  height: 74px;
  border-color: rgba(13, 30, 72, 0.14);
}

.product-detail-redesign .product-info-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 8px 6px;
}

.product-kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.product-detail-redesign .product-brand {
  margin: 0;
  color: var(--sv-blue);
  background: rgba(35, 63, 140, 0.09);
}

.product-detail-redesign .product-info-panel h1 {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--sv-text);
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.035em;
}

.product-detail-redesign .product-description {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--sv-muted);
  font-size: 16px;
}

.product-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.product-spec-list div {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--sv-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.product-spec-list dt {
  margin-bottom: 5px;
  color: var(--sv-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-spec-list dd {
  margin: 0;
  overflow: hidden;
  color: var(--sv-text);
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-detail-redesign .product-buy-box {
  margin-top: 0;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(35, 63, 140, 0.08), rgba(180, 18, 50, 0.08));
  border: 1px solid rgba(35, 63, 140, 0.12);
}

.product-detail-redesign .product-price-row {
  margin-bottom: 14px;
}

.product-detail-redesign .product-price-row small {
  color: var(--sv-muted);
  font-size: 13px;
  font-weight: 900;
}

.product-detail-redesign .add-cart-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
}

.product-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-service-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--sv-line);
  border-radius: 16px;
  background: #ffffff;
}

.product-service-grid i {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sv-red), var(--sv-blue));
}

.product-service-grid strong {
  color: var(--sv-text);
  font-size: 15px;
}

.product-service-grid span {
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-detail-sections {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-detail-sections > section {
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--sv-line);
  box-shadow: 0 16px 42px rgba(13, 30, 72, 0.06);
}

.product-detail-sections h2 {
  margin: 0 0 14px;
  color: var(--sv-text);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.product-organised-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-organised-list li {
  position: relative;
  padding-left: 20px;
  color: var(--sv-muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-organised-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sv-red), var(--sv-blue));
  content: "";
}

.product-organised-list strong {
  color: var(--sv-text);
}

@media (max-width: 980px) {
  .product-detail-redesign .product-detail-card,
  .product-detail-sections {
    grid-template-columns: 1fr;
  }

  .product-detail-redesign .product-main-image {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .product-detail-redesign {
    width: min(100% - 24px, 1240px) !important;
    margin-top: 22px !important;
  }

  .product-detail-redesign .product-detail-card {
    padding: 18px;
    border-radius: 18px;
  }

  .product-detail-redesign .product-info-panel h1 {
    font-size: 36px;
  }

  .product-spec-list,
  .product-service-grid {
    grid-template-columns: 1fr;
  }

  .product-breadcrumb {
    font-size: 11px;
  }
}
/* ===== PRODUCT DETAIL REDESIGN END ===== */
