* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f5f7;
  color: #1f2937;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo {
  height: 72px;
  width: auto;
  display: block;
}

.header-title-wrap {
  flex: 1;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.header-title-wrap h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: #111827;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.cart-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
}

.page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

.intro {
  margin-bottom: 28px;
}

.intro h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #111827;
}

.intro p {
  margin: 0;
  color: #4b5563;
  max-width: 760px;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-image-wrap {
  position: relative;
  background: #f9fafb;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 18px;
}

.product-body {
  padding: 22px;
}

.product-title {
  margin: 0 0 10px;
  font-size: 22px;
  color: #111827;
}

.product-price {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.product-field {
  margin-bottom: 12px;
}

.product-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #374151;
}

.product-field select,
.product-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  background: #ffffff;
}

.add-to-cart {
  width: 100%;
  margin-top: 8px;
  padding: 13px 16px;
  border: 0;
  border-radius: 12px;
  background: #111827;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.add-to-cart:hover {
  background: #000000;
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .header-title-wrap {
    order: 3;
    width: 100%;
  }

  .cart-button{
    display:inline-flex;
    align-items:center;
    gap:10px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 20px 16px 40px;
  }

  .header-inner {
    padding: 16px;
  }

  .header-title-wrap h1 {
    font-size: 20px;
  }

  .intro h2 {
    font-size: 24px;
  }
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.checkout-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

.cart-total {
  margin-top: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}
.product-price{
  font-size:18px;
  font-weight:700;
}

.veil-price{
  text-decoration:line-through;
  color:#888;
  margin-right:10px;
  font-weight:400;
}
