:root {
  --navy: #071c43;
  --blue: #1599dc;
  --coral: #ff725f;
  --aqua: #16b9b5;
  --ink: #14213d;
  --muted: #667085;
  --line: #e8edf4;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font:
    15px/1.5 Arial,
    sans-serif;
  color: var(--ink);
}
a {
  text-decoration: none;
  color: inherit;
}
.top {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 8px;
}
.wrap {
  width: min(1180px, 92%);
  margin: auto;
}
.header {
  border-bottom: 1px solid var(--line);
  background: white;
}
.header-in {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.logo {
  width: 145px;
  height: 76px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 25px;
  align-items: center;
  flex: 1;
  justify-content: center;
  font-weight: 700;
}
.nav a:hover {
  color: var(--blue);
}
.cart {
  background: var(--coral);
  color: white;
  border-radius: 99px;
  padding: 11px 17px;
  font-weight: 800;
}
.crumb {
  padding: 25px 0;
  color: var(--muted);
}
.hero {
  padding: 45px 0;
  background: linear-gradient(120deg, #ecfaff, #fff7f0);
}
h1,
h2 {
  color: var(--navy);
}
h1 {
  font-size: 44px;
  margin: 0 0 10px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 45px 0 80px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.photo {
  height: 285px;
  background: #f8fafc;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.tag {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.body h2 {
  font-size: 18px;
  line-height: 1.3;
  margin: 7px 0 10px;
  min-height: 47px;
  overflow-wrap: anywhere;
}
.desc {
  color: var(--muted);
  flex: 1;
}
.price {
  font-size: 25px;
  font-weight: 900;
  color: var(--navy);
}
.price-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.price-pair > div {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 9px 10px;
}
.price-pair small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.price-pair strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  margin-top: 2px;
}
.price-pair .wholesale-price {
  background: #dff8f6;
  border-color: #a9e5df;
}
.price-pair .wholesale-price small,
.price-pair .wholesale-price strong {
  color: #087c78;
}
.unavailable {
  border-radius: 11px;
  background: #f1f3f5;
  color: #667085;
  font-weight: 800;
  padding: 12px;
}
.wholesale-progress {
  margin: 14px 0;
  padding: 12px 13px;
  border-radius: 12px;
  background: #fff5d6;
  color: #7c5700;
  font-weight: 700;
}
.wholesale-progress.active {
  background: #dff8f6;
  color: #087c78;
}
.variant-select {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}
.variant-select span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.variant-select select {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  padding: 10px;
  min-width: 190px;
}
.btn {
  display: block;
  background: var(--navy);
  color: white;
  text-align: center;
  border: 0;
  border-radius: 11px;
  padding: 12px;
  margin-top: 13px;
  font-weight: 800;
  width: 100%;
}
.wholesale-box {
  margin-top: 12px;
  padding: 10px 11px;
  border-radius: 11px;
  background: #dff8f6;
  color: #087c78;
  font-size: 13px;
}
.wholesale-box.detail {
  padding: 14px;
  font-size: 14px;
}
.whatsapp-btn {
  background: #25a85a;
  margin-top: 7px;
}
.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
  gap: 28px;
  padding: 48px 0 80px;
  align-items: start;
}
.checkout-card,
.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  padding: 24px;
}
.checkout-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.checkout-title h2,
.checkout-summary h2 {
  margin: 0;
}
.checkout-title a {
  color: var(--blue);
  font-weight: 800;
}
.checkout-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-item:last-child {
  border-bottom: 0;
}
.checkout-item > img {
  width: 110px;
  height: 100px;
  object-fit: contain;
  border-radius: 14px;
  background: #f8fafc;
}
.checkout-item-info h3 {
  margin: 4px 0 8px;
  color: var(--navy);
  line-height: 1.3;
}
.checkout-actions {
  display: grid;
  justify-items: end;
  gap: 9px;
}
.quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px;
}
.quantity button,
.remove-item {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}
.quantity button {
  width: 30px;
  height: 30px;
  font-size: 20px;
}
.remove-item {
  color: #d04437;
}
.checkout-summary {
  position: sticky;
  top: 20px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.total-line {
  font-size: 22px;
  color: var(--navy);
}
.shipping-note {
  color: var(--muted);
  font-size: 14px;
}
.pay-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.checkout-error {
  color: #b42318;
  background: #fef3f2;
  border-radius: 10px;
  padding: 10px;
}
.secure-note {
  display: block;
  color: var(--muted);
  text-align: center;
  margin-top: 13px;
}
.delivery-section {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.delivery-title {
  border: 0;
  padding-bottom: 16px;
}
.delivery-title h2 {
  margin: 2px 0 0;
}
.required-note {
  color: var(--muted);
  font-size: 12px;
}
.customer-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.field {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #344054;
  font-weight: 700;
  font-size: 13px;
}
.field-wide {
  grid-column: 1 / -1;
}
.field-uf {
  max-width: 110px;
}
.field input {
  width: 100%;
  min-height: 45px;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  background: white;
  font: inherit;
  outline: none;
}
.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #1599dc1c;
}
.input-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.input-action button {
  border: 0;
  border-radius: 10px;
  padding: 0 15px;
  background: var(--aqua);
  color: white;
  font-weight: 800;
  cursor: pointer;
}
.input-action button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.address-feedback {
  min-height: 17px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.address-feedback.loading {
  color: #475467;
}
.address-feedback.success {
  color: #087c78;
}
.address-feedback.error {
  color: #b42318;
}
.shipping-feedback {
  margin-top: 18px;
  border-radius: 11px;
  padding: 11px 13px;
  font-weight: 700;
}
.shipping-feedback.success {
  background: #e9f9f7;
  color: #087c78;
}
.shipping-feedback.error {
  background: #fef3f2;
  color: #b42318;
}
.shipping-options {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.shipping-option {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: white;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.shipping-option:hover,
.shipping-option.selected {
  border-color: var(--aqua);
  background: #f0fbfa;
}
.shipping-option.selected {
  box-shadow: 0 0 0 2px #16b9b522;
}
.shipping-option span {
  display: grid;
  gap: 3px;
}
.shipping-option small {
  color: var(--muted);
}
.shipping-option strong {
  color: var(--navy);
  white-space: nowrap;
}
.checkout-empty {
  text-align: center;
  padding: 52px 20px;
}
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  padding: 45px 0 65px;
}
.product-gallery {
  min-width: 0;
}
.product-image {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.thumb {
  width: 78px;
  height: 78px;
  padding: 4px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.thumb.active {
  border-color: var(--coral);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.product h1 {
  font-size: 36px;
}
.product-intro {
  font-size: 17px;
  color: #475467;
}
.product .price {
  font-size: 36px;
  margin: 20px 0;
}
.variant-box {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff8f6;
}
.variant-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 9px 0;
}
.variant-list span {
  padding: 7px 13px;
  border: 1px solid var(--coral);
  border-radius: 99px;
  background: white;
  color: var(--navy);
  font-weight: 700;
}
.variant-box small {
  color: var(--muted);
}
.features {
  color: var(--muted);
  padding-left: 20px;
}
.details-section {
  padding: 65px 0 85px;
  background: #f7fafc;
}
.details-section h2 {
  font-size: 32px;
  margin: 6px 0 25px;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.details-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}
.details-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 19px;
}
.details-grid ul {
  margin: 0;
  padding-left: 20px;
  color: #475467;
}
.details-grid li + li {
  margin-top: 7px;
}
.details-grid .attention {
  background: #fff8f6;
  border-color: #ffd8d1;
}
.details-grid .attention p {
  margin: 0;
  color: #5d4650;
}
.footer {
  background: var(--navy);
  color: #dce8f7;
  padding: 35px 0;
}
.footer-in {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.footer-links {
  display: grid;
  gap: 5px;
}
.legal {
  padding: 42px 0 80px;
}
.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 50px #071c4310;
}
.legal-card h1 {
  font-size: clamp(32px, 5vw, 46px);
}
.legal-card h2 {
  margin-top: 32px;
  font-size: 23px;
}
.legal-card p,
.legal-card li {
  color: #475467;
}
.legal-card a {
  color: var(--blue);
  font-weight: 700;
}
.legal-card .updated {
  color: var(--muted);
  font-size: 13px;
}
.company-box {
  margin-top: 28px;
  padding: 18px;
  border-radius: 14px;
  background: #eef7ff;
}
.content {
  padding: 50px 0 80px;
  max-width: 850px;
}
.content p {
  font-size: 17px;
  color: #475467;
}
.about-hero {
  background: linear-gradient(120deg, #ecfaff, #fff7f0);
  overflow: hidden;
}
.about-hero-in {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}
.about-hero h1 {
  font-size: 52px;
  line-height: 1.05;
  margin: 10px 0 18px;
}
.about-hero p {
  font-size: 20px;
  color: #475467;
  max-width: 650px;
}
.about-hero img {
  width: 100%;
  height: 470px;
  object-fit: contain;
  object-position: center bottom;
}
.story {
  padding: 80px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: start;
}
.story h2 {
  font-size: 36px;
  line-height: 1.15;
  margin: 8px 0 22px;
}
.story p {
  font-size: 17px;
  color: #475467;
}
.story-card {
  background: var(--navy);
  color: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px #071c4322;
}
.story-card h3 {
  font-size: 24px;
  margin: 0 0 18px;
}
.story-card div {
  padding: 15px 0;
  border-top: 1px solid #ffffff26;
}
.story-card b,
.story-card span {
  display: block;
}
.story-card span {
  color: #cbd9ee;
  margin-top: 4px;
}
.dream {
  padding: 75px 0;
  background: #effafa;
  text-align: center;
}
.dream .wrap {
  max-width: 850px;
}
.dream span {
  color: var(--aqua);
  font-weight: 900;
}
.dream h2 {
  font-size: 38px;
  margin: 8px 0 15px;
}
.dream p {
  font-size: 18px;
  color: #475467;
}
.dream .btn {
  display: inline-block;
  width: auto;
  min-width: 220px;
  margin: 16px 5px 0;
  padding: 13px 22px;
}
@media (max-width: 760px) {
  .nav {
    display: none;
  }
  .grid,
  .details-grid {
    grid-template-columns: 1fr;
  }
  .product {
    grid-template-columns: 1fr;
  }
  .footer-in {
    flex-direction: column;
  }
  .about-hero-in,
  .story-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-in {
    padding-top: 50px;
  }
  .about-hero h1 {
    font-size: 40px;
  }
  .about-hero img {
    height: 360px;
  }
  .story {
    padding: 55px 0;
  }
  .dream h2 {
    font-size: 31px;
  }
  .body h2 {
    min-height: 0;
  }
  .checkout-page {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }
  .checkout-summary {
    position: static;
  }
  .checkout-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }
  .checkout-item > img {
    width: 82px;
    height: 82px;
  }
  .checkout-actions {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .checkout-title {
    align-items: flex-start;
  }
  .checkout-card,
  .checkout-summary {
    padding: 18px;
  }
  .customer-form {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .field-uf {
    max-width: none;
  }
  .input-action {
    grid-template-columns: 1fr;
  }
  .input-action button {
    min-height: 44px;
  }
  .shipping-option {
    align-items: flex-start;
  }
}
