@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --blue: #0061ff;
  --blue-dark: #0047c4;
  --blue-soft: #eaf2ff;
  --ink: #191919;
  --ink-2: #333842;
  --muted: #6d7480;
  --line: #e5e8ee;
  --surface: #f5f7fb;
  --white: #ffffff;
  --success: #0b9a68;
  --danger: #d94040;
  --shadow: 0 18px 50px rgba(18, 29, 52, 0.1);
  --shadow-blue: 0 15px 38px rgba(0, 97, 255, 0.28);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-muted {
  background: var(--surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 500px;
  color: var(--muted);
}

.section-heading.center {
  display: block;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease,
    background 0.25s ease;
}

.btn::after {
  position: absolute;
  top: -100%;
  left: -45%;
  z-index: -1;
  width: 35%;
  height: 300%;
  background: rgba(255, 255, 255, 0.28);
  content: "";
  transform: rotate(25deg);
  transition: left 0.55s ease;
}

.btn:hover::after {
  left: 115%;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--blue);
  box-shadow: var(--shadow-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-dark {
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(25, 25, 25, 0.22);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(25, 25, 25, 0.18);
  background: var(--white);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.icon-btn {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  transition: 0.25s ease;
}

.icon-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.topbar {
  padding: 8px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar strong {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(25, 25, 25, 0.06);
}

.navbar {
  display: grid;
  min-height: 78px;
  grid-template-columns: 185px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 154px;
  height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 5px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 4px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.search-panel {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 28px 0;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-110%);
  transition: 0.35s ease;
}

.search-panel.open {
  opacity: 1;
  transform: translateY(0);
}

.search-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.search-inner input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  outline: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 97, 255, 0.35), transparent 31%),
    linear-gradient(90deg, rgba(8, 10, 13, 0.98) 0%, rgba(8, 10, 13, 0.86) 46%, rgba(8, 10, 13, 0.14) 76%);
  content: "";
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  padding: 70px 0 84px;
}

.hero h1 {
  max-width: 760px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy {
  max-width: 570px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-trust i {
  color: var(--blue);
}

.brand-strip {
  border-bottom: 1px solid var(--line);
}

.brand-strip .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  padding: 24px 0;
  color: #a0a5ae;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
}

.category-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.84));
  content: "";
}

.category-card-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.category-card h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.category-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.category-card:hover img {
  transform: scale(1.08);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}

.product-card:hover {
  border-color: rgba(0, 97, 255, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.product-thumb {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--surface);
}

.product-thumb img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge.dark {
  background: var(--ink);
}

.wish-btn {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transition: 0.25s ease;
}

.wish-btn:hover,
.wish-btn.active {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}

.product-info {
  padding: 18px;
}

.product-category {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-info h3 {
  min-height: 45px;
  margin-bottom: 10px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.rating {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #f4a800;
  font-size: 0.78rem;
}

.rating small {
  color: var(--muted);
}

.product-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.price {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.old-price {
  display: block;
  color: #9a9fa8;
  font-size: 0.72rem;
  text-decoration: line-through;
}

.add-btn {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  transition: 0.25s ease;
}

.add-btn:hover {
  background: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: rotate(8deg) scale(1.08);
}

.feature-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--ink);
  color: var(--white);
}

.feature-banner img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.feature-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.96), rgba(7, 9, 12, 0.7) 48%, rgba(7, 9, 12, 0.05));
  content: "";
}

.feature-content {
  position: relative;
  z-index: 2;
  max-width: 570px;
  padding: 76px 64px;
}

.feature-content p {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.72);
}

.feature-stats {
  display: flex;
  gap: 34px;
  margin: 28px 0 36px;
}

.feature-stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
}

.feature-stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.15rem;
}

.benefit h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.benefit p {
  color: var(--muted);
  font-size: 0.85rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial-quote {
  margin: 18px 0 24px;
  color: var(--ink-2);
}

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

.customer-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.customer strong,
.customer small {
  display: block;
}

.customer small {
  color: var(--muted);
}

.newsletter {
  position: relative;
  overflow: hidden;
  padding: 55px;
  border-radius: 32px;
  background: var(--blue);
  color: var(--white);
}

.newsletter::before {
  position: absolute;
  top: -70%;
  right: -10%;
  width: 420px;
  height: 420px;
  border: 65px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.newsletter-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.newsletter p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-form {
  display: flex;
  padding: 6px;
  border-radius: 999px;
  background: var(--white);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  border: 0;
  outline: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 90px;
  background: var(--ink);
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  top: -180px;
  right: -80px;
  width: 460px;
  height: 460px;
  border: 90px solid rgba(0, 97, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 630px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: 34px;
}

.filters {
  position: sticky;
  top: 108px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.filter-head button {
  background: none;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.filter-group {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.filter-group h3 {
  margin-bottom: 13px;
  font-size: 0.92rem;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
}

.check-row input {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
}

.range-value {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.shop-toolbar p {
  color: var(--muted);
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select {
  min-height: 44px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
}

.filter-mobile-btn {
  display: none;
}

.shop-products {
  grid-template-columns: repeat(3, 1fr);
}

.product-page {
  padding: 70px 0 96px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 58px;
}

.gallery-main {
  height: 560px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
}

.gallery-main img {
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.4s ease;
}

.gallery-main:hover img {
  transform: scale(1.025);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.gallery-thumb {
  height: 96px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 15px;
  background: var(--surface);
}

.gallery-thumb.active {
  border-color: var(--blue);
}

.gallery-thumb img {
  height: 100%;
  object-fit: cover;
}

.product-detail .product-category {
  margin-bottom: 10px;
}

.product-detail h1 {
  margin-bottom: 17px;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
}

.product-detail .rating {
  margin-bottom: 25px;
}

.detail-price {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.detail-price del {
  color: #a4a9b2;
  font-size: 1rem;
  font-weight: 500;
}

.detail-price .discount {
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
}

.stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eaf9f3;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
}

.stock::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  box-shadow: 0 0 0 5px rgba(11, 154, 104, 0.12);
}

.detail-copy {
  margin-bottom: 26px;
  color: var(--muted);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 30px;
  list-style: none;
}

.spec-list li {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--surface);
  font-size: 0.82rem;
}

.spec-list i {
  color: var(--blue);
}

.purchase-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
}

.qty-control {
  display: grid;
  grid-template-columns: 35px 1fr 35px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty-control button {
  height: 100%;
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
}

.qty-control input {
  width: 100%;
  border: 0;
  outline: 0;
  text-align: center;
}

.buy-now {
  min-height: 58px;
  font-size: 1rem;
  animation: buyPulse 2.5s infinite;
}

@keyframes buyPulse {
  0%,
  100% {
    box-shadow: 0 15px 38px rgba(0, 97, 255, 0.25);
  }
  50% {
    box-shadow: 0 15px 48px rgba(0, 97, 255, 0.52);
  }
}

.secure-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.secure-row div {
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
}

.secure-row i {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 1rem;
}

.tabs {
  margin-top: 74px;
}

.tab-buttons {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}

.tab-btn {
  padding: 15px 20px;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-weight: 700;
}

.tab-btn.active {
  border-color: var(--blue);
  color: var(--blue);
}

.tab-pane {
  display: none;
  max-width: 850px;
  padding: 28px 0;
  color: var(--muted);
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.story-media {
  position: relative;
}

.story-media img {
  height: 590px;
  border-radius: 30px;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: 160px;
  padding: 24px;
  border: 8px solid var(--white);
  border-radius: 24px;
  background: var(--blue);
  color: var(--white);
}

.story-badge strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
}

.story-copy p {
  margin: 20px 0;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.3s ease;
}

.value-card span {
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.value-card h3 {
  margin: 28px 0 10px;
}

.value-card p {
  color: var(--muted);
}

.value-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 54px;
  border-radius: 30px;
  background: var(--ink);
  color: var(--white);
}

.number-item {
  text-align: center;
}

.number-item strong {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
}

.number-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.83rem;
}

.contact-grid {
  align-items: start;
}

.contact-info {
  padding: 40px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
}

.contact-info > p {
  margin: 14px 0 28px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-item {
  display: flex;
  gap: 15px;
  margin: 22px 0;
}

.contact-item i {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 97, 255, 0.18);
  color: var(--blue);
}

.contact-item span,
.contact-item strong {
  display: block;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.social-row a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.social-row a:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

.contact-form {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  transition: 0.25s ease;
}

textarea.form-control {
  min-height: 135px;
  padding-top: 13px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 97, 255, 0.09);
}

.map-card {
  min-height: 310px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(rgba(0, 97, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 97, 255, 0.12) 1px, transparent 1px),
    var(--surface);
  background-size: 28px 28px;
}

.map-inner {
  display: grid;
  height: 310px;
  place-items: center;
  text-align: center;
}

.map-pin {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: var(--blue);
  box-shadow: var(--shadow-blue);
  color: var(--white);
  font-size: 1.35rem;
  transform: rotate(-45deg);
}

.map-pin i {
  transform: rotate(45deg);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: transparent;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 160px;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.site-footer {
  padding-top: 72px;
  background: #101114;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 52px;
}

.footer-brand img {
  width: 175px;
  height: 95px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.footer-brand p {
  max-width: 340px;
  font-size: 0.88rem;
}

.footer-col h4 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin: 10px 0;
}

.footer-col a {
  font-size: 0.86rem;
  transition: 0.2s ease;
}

.footer-col a:hover {
  color: var(--blue);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.payment-tags span {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: min(420px, 100%);
  height: 100dvh;
  padding: 28px;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(25, 25, 25, 0.18);
  transform: translateX(105%);
  transition: transform 0.35s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-items {
  height: calc(100dvh - 255px);
  overflow: auto;
  padding: 18px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.cart-item h4 {
  font-size: 0.86rem;
}

.cart-item p {
  margin-top: 4px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.remove-item {
  align-self: start;
  background: none;
  color: #a4a9b2;
}

.empty-cart {
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.drawer-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.drawer-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 700;
}

.drawer-footer .btn {
  width: 100%;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 105;
  visibility: hidden;
  background: rgba(6, 8, 11, 0.58);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.overlay.open {
  visibility: visible;
  opacity: 1;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  width: min(520px, calc(100% - 32px));
  padding: 34px;
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -45%) scale(0.96);
  transition: 0.3s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.modal p {
  margin-bottom: 20px;
  color: var(--muted);
}

.checkout-summary {
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 15px;
  background: var(--surface);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast i {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-enter {
  animation: pageEnter 0.55s ease both;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@media (max-width: 1060px) {
  .nav-links {
    gap: 17px;
  }

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

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

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

  .story-grid,
  .contact-grid {
    gap: 42px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 30px, 760px);
  }

  .section {
    padding: 72px 0;
  }

  .topbar .container span:last-child {
    display: none;
  }

  .navbar {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    position: fixed;
    top: 104px;
    right: 15px;
    left: 15px;
    display: block;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    padding: 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .nav-actions .search-toggle {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 660px;
  }

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

  .hero-content {
    padding-top: 90px;
  }

  .brand-strip .container {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 14px;
  }

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

  .newsletter-grid,
  .product-layout,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 115;
    width: min(330px, 90%);
    overflow: auto;
    border-radius: 0 22px 22px 0;
    transform: translateX(-105%);
    transition: 0.3s ease;
  }

  .filters.open {
    transform: translateX(0);
  }

  .filter-mobile-btn {
    display: inline-flex;
  }

  .story-media {
    max-width: 650px;
  }

  .story-badge {
    right: 20px;
  }

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

  .numbers {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 24px);
    --radius: 18px;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .navbar {
    gap: 8px;
  }

  .brand img {
    width: 130px;
  }

  .nav-actions {
    gap: 6px;
  }

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

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 12px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p,
  .section-heading .btn {
    margin-top: 16px;
  }

  .category-cards,
  .product-grid,
  .benefits-grid,
  .shop-products,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 330px;
  }

  .product-thumb {
    height: 310px;
  }

  .feature-content {
    padding: 55px 25px;
  }

  .feature-stats {
    gap: 18px;
  }

  .newsletter {
    padding: 35px 22px;
  }

  .newsletter-form {
    display: grid;
    gap: 8px;
    border-radius: 16px;
  }

  .newsletter-form input {
    min-height: 48px;
  }

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar-actions {
    width: 100%;
  }

  .toolbar-actions .select {
    min-width: 0;
    flex: 1;
  }

  .gallery-main {
    height: 380px;
  }

  .gallery-thumb {
    height: 72px;
  }

  .purchase-row {
    grid-template-columns: 1fr;
  }

  .qty-control {
    min-height: 48px;
  }

  .secure-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .tab-buttons {
    overflow-x: auto;
  }

  .tab-btn {
    white-space: nowrap;
  }

  .story-media img {
    height: 430px;
  }

  .story-badge {
    width: 140px;
  }

  .numbers {
    padding: 38px 18px;
  }

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

  .contact-form,
  .contact-info {
    padding: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
