:root {
  --blue: #034ea2;
  --blue-dark: #02397a;
  --blue-light: #0a6fd9;
  --navy: #0a1628;
  --gold: #c8a96e;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ed;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --heading: "Montserrat", sans-serif;
  --body: "Inter", sans-serif;
  --content: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--gray-800);
  font-family: var(--body);
  line-height: 1.6;
}

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

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

.site-header {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 3px 18px rgba(10, 22, 40, 0.08);
  color: var(--gray-800);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  z-index: 20;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.1);
  color: var(--gray-800);
  backdrop-filter: saturate(180%) blur(18px);
}

.header-inner {
  align-items: center;
  display: flex;
  height: 76px;
  justify-content: space-between;
  margin: auto;
  max-width: var(--content);
  padding: 0 24px;
}

.brand img {
  filter: none;
  height: 62px;
  object-fit: contain;
  transition: filter 0.3s ease;
  width: auto;
}

.site-header.scrolled .brand img {
  filter: none;
}

.home-page .site-header:not(.scrolled) {
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.home-page .site-header:not(.scrolled) .brand img {
  filter: brightness(0) invert(1);
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 34px;
}

.main-nav > a,
.nav-item > a {
  align-items: center;
  color: inherit;
  display: flex;
  gap: 5px;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 27px 0 23px;
  position: relative;
  text-transform: uppercase;
}

.main-nav > a svg,
.nav-item > a svg {
  fill: none;
  height: 10px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
  width: 10px;
}

.main-nav > a::after,
.nav-item > a::after {
  background: currentColor;
  bottom: 17px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  width: 100%;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-item:hover > a svg,
.nav-item:focus-within > a svg {
  transform: rotate(180deg);
}

.nav-item > a svg {
  transition: transform 0.25s ease;
}

.dropdown-menu,
.products-mega-menu {
  color: var(--gray-800);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
  visibility: hidden;
}

.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu,
.nav-item:hover > .products-mega-menu,
.nav-item:focus-within > .products-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
  visibility: visible;
}

.dropdown-menu {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(10, 22, 40, 0.16);
  left: 50%;
  min-width: 220px;
  padding: 12px 0;
  position: absolute;
  top: 68px;
  transform: translateX(-50%) translateY(10px);
}

.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu {
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  color: var(--gray-800);
  display: block;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 24px;
  text-transform: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--gray-100);
  color: var(--blue);
}

.support-menu {
  min-width: 235px;
}

.products-mega-menu {
  background: var(--white);
  border-radius: 0 0 16px 16px;
  border-top: 3px solid var(--blue);
  box-shadow: 0 25px 65px rgba(10, 22, 40, 0.2);
  left: 50%;
  max-width: 1285px;
  overflow: hidden;
  position: fixed;
  top: 76px;
  transform: translateX(-50%) translateY(10px);
  width: calc(100vw - 64px);
}

.nav-item:hover > .products-mega-menu,
.nav-item:focus-within > .products-mega-menu {
  transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr 1.15fr 0.95fr;
  padding: 32px 38px;
}

.brand-catalog-menu .mega-menu-content {
  grid-template-columns: 1fr 1.15fr 0.9fr;
}

.mega-column {
  border-right: 1px solid var(--gray-100);
  padding: 0 30px;
}

.mega-column:first-child {
  padding-left: 0;
}

.mega-column h3 {
  border-bottom: 2px solid var(--gold);
  color: var(--blue);
  font-family: var(--heading);
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding-bottom: 9px;
  text-transform: uppercase;
}

.mega-column > a:not(.skyworth-card) {
  color: #475569;
  display: flex;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 0;
  text-transform: none;
}

.mega-column > a:not(.skyworth-card):hover {
  color: var(--blue);
  transform: translateX(3px);
}

.mega-more > a {
  align-items: center;
  gap: 11px;
  padding: 7px 0 !important;
}

.mini-icon {
  align-items: center;
  background: var(--blue);
  border-radius: 5px;
  color: var(--white);
  display: inline-flex;
  font-size: 11px;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.mega-column .explore-title {
  margin-top: 15px;
}

.mega-empty-message {
  color: #7a8494;
  font-size: 13px;
  margin: 20px 0 0;
}

.compare-icon {
  color: var(--gray-800);
  font-size: 17px;
  text-align: center;
  width: 22px;
}

.skyworth-card {
  align-items: center;
  background: linear-gradient(135deg, #07376e, #0877d4);
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(3, 78, 162, 0.25);
  color: var(--white);
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 11px 12px;
  position: relative;
  text-transform: none;
}

.skyworth-icon {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 7px;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.skyworth-icon svg {
  fill: none;
  height: 23px !important;
  stroke: var(--white) !important;
  width: 23px !important;
}

.skyworth-card strong,
.skyworth-card small {
  display: block;
}

.skyworth-card strong {
  font-size: 13px;
}

.skyworth-card small {
  font-size: 9px;
  margin-top: 2px;
}

.skyworth-card b {
  background: #ffcc4d;
  border-radius: 0 8px 0 8px;
  color: var(--navy);
  font-size: 7px;
  padding: 4px 8px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
}

.featured-menu-product {
  background: linear-gradient(145deg, #082242, #0758a8);
  border-radius: 13px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 30px;
  min-height: 315px;
  overflow: hidden;
  padding: 17px 20px 22px;
  position: relative;
}

.featured-menu-product > span {
  align-self: flex-start;
  background: var(--gold);
  border-radius: 999px;
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  text-transform: uppercase;
}

.featured-menu-product img {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
  height: 135px;
  margin: 5px auto;
  object-fit: contain;
  width: 100%;
}

.featured-menu-product h3 {
  font-family: var(--heading);
  font-size: 16px;
  margin-bottom: 4px;
}

.featured-menu-product p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  margin-bottom: 13px;
}

.featured-menu-product a {
  align-self: flex-start;
  background: var(--gold);
  border-radius: 6px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 9px 14px;
  text-transform: uppercase;
}

.mega-menu-footer {
  align-items: center;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 15px 38px;
}

.mega-menu-footer strong {
  color: var(--gold);
}

.mega-menu-footer a {
  background: var(--gold);
  border-radius: 6px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  padding: 9px 16px;
  text-transform: uppercase;
}

.header-button,
.button {
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.header-button {
  background: linear-gradient(135deg, #d2b06d, #b58d47);
  color: var(--white);
  box-shadow: 0 7px 18px rgba(181, 141, 71, 0.32);
  padding: 11px 20px;
}

.header-button:hover {
  background: linear-gradient(135deg, #ddbd7c, #c19a54);
  transform: translateY(-2px);
}

.button-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.header-icon {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 34px;
}

.header-icon svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 22px;
}

.cart-count {
  align-items: center;
  background: var(--blue);
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 8px;
  font-weight: 700;
  height: 16px;
  justify-content: center;
  position: absolute;
  right: -1px;
  top: 1px;
  width: 16px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 32px;
  padding: 5px 2px;
  width: 32px;
}

.menu-toggle span {
  background: currentColor;
  border-radius: 2px;
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 27px;
}

.menu-lock {
  overflow: hidden;
}

.hero {
  background: #dce6ee;
  color: var(--white);
  height: 100vh;
  max-height: none;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.65s ease;
  visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide::after {
  background: linear-gradient(
    90deg,
    rgba(3, 55, 105, 0.72) 0%,
    rgba(3, 78, 162, 0.43) 43%,
    rgba(10, 22, 40, 0.09) 78%,
    rgba(10, 22, 40, 0.02) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-slide.image-only::after {
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.18) 0, transparent 24%);
}

.hero-background {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero-slide.image-only .hero-background {
  object-fit: cover;
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: auto;
  max-width: var(--content);
  padding: 60px 24px 105px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--blue);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  font-family: var(--heading);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 23px;
  text-transform: uppercase;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.77);
  font-size: 17px;
  max-width: 560px;
}

.hero-dots {
  bottom: 43px;
  display: flex;
  gap: 12px;
  left: max(24px, calc((100% - var(--content)) / 2 + 24px));
  position: absolute;
  z-index: 5;
}

.hero-dot {
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  height: 3px;
  padding: 0;
  transition: 0.25s ease;
  width: 39px;
}

.hero-dot.active {
  background: var(--white);
  width: 55px;
}

.hero-controls {
  bottom: 29px;
  display: flex;
  gap: 9px;
  position: absolute;
  right: max(24px, calc((100% - var(--content)) / 2 + 24px));
  z-index: 5;
}

.hero-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 31px;
  height: 54px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 4px;
  transition: 0.25s ease;
  width: 54px;
}

.hero-arrow:hover {
  background: var(--white);
  color: var(--blue);
}

.button {
  padding: 14px 25px;
}

.button-light {
  background: var(--white);
  color: var(--blue);
}

.button-light:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.button-blue {
  background: var(--blue);
  color: var(--white);
}

.products-section {
  background: var(--white);
  padding: 96px 24px 100px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  margin: 0 auto 64px;
  max-width: var(--content);
  text-align: center;
}

.section-heading h2,
.about-strip h2 {
  color: var(--navy);
  font-family: var(--heading);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -1.2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-heading .eyebrow {
  margin-bottom: 15px;
}

.section-description {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.65;
  margin: 18px auto 0;
  max-width: 620px;
}

.product-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
  max-width: var(--content);
}

.brand-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 880px;
}

.collaborating-brand-card .product-image {
  background: #f4f7fa;
  height: 310px;
  padding: 24px;
}

.collaborating-brand-card .product-image img {
  object-fit: contain;
}

.collaborating-brand-card .product-info {
  min-height: 230px;
  padding: 23px 24px 26px;
}

.product-card {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
}

.category-card {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(10, 22, 40, 0.05);
}

.product-card:hover {
  border-color: rgba(3, 78, 162, 0.22);
  box-shadow: 0 24px 50px rgba(3, 78, 162, 0.1);
  transform: translateY(-6px);
}

.product-image {
  align-items: center;
  display: flex;
  height: 300px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.category-card .product-image {
  background: var(--gray-100);
  height: 310px;
}

.product-image-blue {
  background: linear-gradient(145deg, #eef6ff, #dcecff);
}

.product-image-gold {
  background: #f5f0e7;
}

.product-image-dark {
  background: #111827;
}

.product-image-soft {
  background: #edf2f5;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}

.category-slider img {
  transition: opacity 0.32s ease, transform 0.45s ease;
}

.category-slider img.changing {
  opacity: 0.25;
}

.category-dots {
  bottom: 18px;
  display: flex;
  gap: 6px;
  justify-content: center;
  left: 18px;
  position: absolute;
  right: 18px;
  z-index: 3;
}

.category-dot {
  background: rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  height: 8px;
  transition: 0.2s ease;
  width: 8px;
}

.category-dot.active {
  background: var(--white);
  transform: scale(1.25);
}

.product-image-blue img {
  object-fit: contain;
  padding: 28px;
}

.product-card:hover .product-image img {
  transform: scale(1.045);
}

.product-badge {
  background: var(--blue);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 9px;
  font-weight: 800;
  left: 18px;
  letter-spacing: 0.7px;
  padding: 7px 11px;
  position: absolute;
  text-transform: uppercase;
  top: 18px;
  z-index: 3;
}

.product-info {
  padding: 26px;
}

.category-card .product-info {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 27px 28px 30px;
}

.category-card .product-badge,
.category-card .product-category,
.category-card .product-bottom {
  display: none;
}

.product-category {
  color: var(--blue);
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.product-info h3 {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 9px;
}

.product-info > p:not(.product-category) {
  color: var(--gray-600);
  font-size: 14px;
}

.category-card .product-info > p {
  line-height: 1.65;
  min-height: 70px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 22px;
}

.category-tags span {
  background: var(--gray-100);
  border-radius: 999px;
  color: var(--gray-600);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
}

.category-link {
  align-items: center;
  color: var(--blue);
  display: inline-flex;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  letter-spacing: 0.3px;
  margin-top: auto;
}

.category-link span {
  font-size: 19px;
  transition: transform 0.2s ease;
}

.category-link:hover span {
  transform: translateX(4px);
}

.product-bottom {
  align-items: center;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
}

.product-bottom strong {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 14px;
}

.product-bottom a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.trust-section {
  background: var(--white);
  padding: 95px 24px 100px;
}

.trust-heading {
  margin: 0 auto 58px;
  max-width: 1300px;
  text-align: center;
}

.trust-heading h2 {
  color: var(--gray-800);
  font-family: var(--heading);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.08;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.2fr 0.85fr;
  margin: auto;
  max-width: 1295px;
}

.trust-card {
  background: linear-gradient(145deg, #ffffff, #f8faff);
  border: 1px solid #dce2ec;
  border-radius: 18px;
  padding: 33px 32px;
}

.trust-card h3 {
  color: var(--gray-800);
  font-family: var(--heading);
  font-size: 14px;
  letter-spacing: 0.2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.review {
  border-bottom: 1px solid var(--gray-200);
  padding: 15px 0 17px;
}

.review:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.review blockquote {
  color: var(--gray-600);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 8px;
}

.review p {
  color: var(--gray-800);
  font-size: 12px;
  font-weight: 600;
}

.award {
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  display: flex;
  font-size: 13px;
  gap: 14px;
  padding: 12px 0;
}

.award:last-child {
  border-bottom: 0;
}

.award svg {
  fill: none;
  flex: 0 0 22px;
  height: 22px;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 22px;
}

.latest-news {
  background: var(--off-white);
  padding: 72px 24px 80px;
}

.latest-news-inner {
  margin: auto;
  max-width: 1295px;
}

.latest-news-header {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}

.latest-news-header > div {
  align-items: baseline;
  display: flex;
  gap: 22px;
}

.latest-news-eyebrow {
  color: var(--blue);
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.latest-news-header h2 {
  color: var(--gray-800);
  font-family: var(--heading);
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -1px;
  line-height: 1;
}

.latest-news-view {
  color: var(--blue);
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.latest-news-view span {
  font-size: 17px;
  margin-left: 5px;
}

.latest-news-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}

.news-item {
  background: var(--white);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-item:hover {
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.12);
  transform: translateY(-5px);
}

.news-item > img {
  height: 135px;
  object-fit: cover;
  width: 100%;
}

.news-item-body {
  min-height: 144px;
  padding: 15px 16px 19px;
}

.featured-week {
  background: var(--white);
  padding: 72px 24px 76px;
}

.featured-week-inner {
  margin: auto;
  max-width: 1245px;
}

.featured-week h2 {
  color: var(--gray-800);
  font-family: var(--heading);
  font-size: clamp(34px, 3.4vw, 46px);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 58px;
  text-align: center;
}

.featured-week-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-product {
  border: 1px solid #dce5ef;
  border-radius: 16px;
  color: var(--gray-800);
  display: flex;
  flex-direction: column;
  min-height: 345px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.featured-product:hover {
  border-color: rgba(0, 83, 166, 0.35);
  box-shadow: 0 16px 36px rgba(10, 31, 58, 0.09);
  transform: translateY(-4px);
}

.featured-product-image {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  min-height: 245px;
  padding: 38px 24px 18px;
}

.featured-product-image img {
  height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
  width: 100%;
}

.featured-product:hover .featured-product-image img {
  transform: scale(1.035);
}

.featured-product-copy {
  padding: 0 19px 20px;
}

.featured-product-copy p {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.featured-product-copy h3 {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.news-item time {
  color: #9aa3b2;
  display: block;
  font-family: var(--heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.news-item h3 {
  color: var(--gray-800);
  font-family: var(--heading);
  font-size: 14px;
  line-height: 1.35;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.68);
  padding: 70px 24px 25px;
}

.footer-main {
  display: grid;
  gap: 55px;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  margin: auto;
  max-width: var(--content);
}

.footer-brand img {
  filter: brightness(0) invert(1);
  height: 76px;
  margin-bottom: 21px;
  object-fit: contain;
  width: auto;
}

.footer-brand p {
  font-size: 14px;
  max-width: 285px;
}

.footer-main h2 {
  color: var(--white);
  font-family: var(--heading);
  font-size: 11px;
  letter-spacing: 1.6px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-main a {
  display: block;
  font-size: 13px;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-main a:hover {
  color: var(--white);
}

.helpline {
  color: var(--gold);
  display: block;
  font-family: var(--heading);
  font-size: 16px;
  margin-top: 18px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  margin: 55px auto 0;
  max-width: var(--content);
  padding-top: 22px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

@media (max-width: 900px) {
  .main-nav {
    align-items: stretch;
    background: var(--white);
    box-shadow: 0 18px 35px rgba(10, 22, 40, 0.14);
    color: var(--gray-800);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    max-height: calc(100vh - 76px);
    opacity: 0;
    overflow-y: auto;
    padding: 16px 28px 28px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 76px;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
    visibility: hidden;
  }

  .main-nav > a,
  .nav-item > a {
    border-bottom: 1px solid var(--gray-200);
    font-size: 12px;
    justify-content: space-between;
    padding: 16px 2px;
    width: 100%;
  }

  .main-nav > a::after,
  .nav-item > a::after {
    display: none;
  }

  .site-header.menu-open {
    background: var(--white);
    color: var(--gray-800);
  }

  .site-header.menu-open .brand img {
    filter: none;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
    visibility: visible;
  }

  .menu-toggle {
    color: inherit;
    display: block;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .dropdown-menu,
  .products-mega-menu {
    display: none !important;
  }

  .hero {
    height: 100vh;
    max-height: none;
    min-height: 100vh;
  }

  .hero-content {
    padding-left: 42px;
    padding-right: 42px;
  }

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

  .trust-heading h2 {
    white-space: normal;
  }

  .latest-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-week-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .header-inner {
    height: auto;
    min-height: 68px;
  }

  .brand img {
    height: 52px;
  }

  .header-button {
    font-size: 10px;
    padding: 9px 14px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-icon {
    width: 30px;
  }

  .cart-icon {
    display: none;
  }

  .hero {
    height: 100vh;
    max-height: none;
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 39px;
    letter-spacing: -1px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-background {
    object-position: 58% center;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 70px 20px 110px;
  }

  .hero-dots {
    bottom: 30px;
    gap: 7px;
    left: 20px;
  }

  .hero-dot {
    width: 22px;
  }

  .hero-dot.active {
    width: 32px;
  }

  .hero-controls {
    bottom: 20px;
    right: 20px;
  }

  .hero-arrow {
    height: 43px;
    width: 43px;
  }

  .product-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 45px;
    text-align: center;
  }

  .products-section {
    padding-top: 90px;
  }

  .product-image {
    height: 245px;
  }

  .trust-section {
    padding: 70px 18px;
  }

  .trust-heading {
    margin-bottom: 38px;
  }

  .trust-card {
    padding: 27px 22px;
  }

  .latest-news {
    padding: 60px 18px;
  }

  .latest-news-header,
  .latest-news-header > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .latest-news-header {
    gap: 18px;
  }

  .latest-news-header > div {
    gap: 10px;
  }

  .latest-news-grid {
    grid-template-columns: 1fr;
  }

  .featured-week {
    padding: 58px 18px 64px;
  }

  .featured-week h2 {
    margin-bottom: 38px;
  }

  .featured-week-grid {
    grid-template-columns: 1fr;
  }

  .featured-product {
    min-height: 330px;
  }

  .footer-main {
    gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .header-button,
  .header-icon:not(.cart-icon) {
    display: none;
  }

  .cart-icon {
    display: flex;
  }
}
