:root {
  --ink: #2b1024;
  --ink2: #431936;
  --accent: #ef86a2;
  --accent2: #f6bdca;
  --blush: #fff4f7;
  --soft: #faf7f8;
  --text: #2f2830;
  --muted: #776a72;
  --line: #eadfe4;
  --white: #fff;
  --shadow: 0 14px 36px rgba(43, 16, 36, 0.09);
  --radius: 22px;
  --container: min(1180px, calc(100% - 32px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  
}
.cart_products img {
  height: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: var(--container);
  margin: auto;
}
.topbar {
  background: #210d1c;
  color: #f6e7ee;
  text-align: center;
  padding: 8px 12px;
  font-size: 13px;
}


.actions {
  display: flex;
  gap: 16px;
  font-size: 13px;
  align-items: center;
}
.actions a {
  color: #fff;
}
.badge {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  font-size: 10px;
  margin-left: 3px;
}

.breadcrumb {
  font-size: 13px;
  color: #8b7c84;
  padding: 18px 0;
}
.breadcrumb span {
  color: #b16d88;
}
.page-hero {
  background: linear-gradient(135deg, #2b1024, #5d2949);
  color: #fff;
  padding: 62px 0;
}
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 400;
  margin: 0 0 10px;
}
.page-hero p {
  max-width: 680px;
  color: #eadce3;
  margin: 0;
}
.section {
  padding: 58px 0;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.section-title h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0;
  color: var(--ink);
}
.section-title p {
  margin: 0;
  color: var(--muted);
}
.card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(43, 16, 36, 0.05);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 750;
  cursor: pointer;
}
.btn:hover {
  background: var(--ink2);
}
.btn.light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.pink {
  background: var(--accent);
  color: #2a1023;
}
.input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 13px;
  background: #fff;
  outline: none;
}
.input:focus {
  border-color: #cb8aa3;
  box-shadow: 0 0 0 3px rgba(239, 134, 162, 0.12);
}
label {
  font-size: 13px;
  font-weight: 700;
  color: #4d3d46;
  display: block;
  margin-bottom: 7px;
}
.muted {
  color: var(--muted);
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #b16d88;
  font-weight: 800;
}
.price {
  font-weight: 800;
  color: var(--ink);
}
.newsletter {
  background: linear-gradient(135deg, #2b1024, #421933);
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.newsletter h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 28px;
}
.newsletter p {
  margin: 4px 0 0;
  color: #d9c7d0;
}
.newsletter form {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
}
.newsletter input {
  min-width: 290px;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 13px;
  outline: none;
}
.newsletter button {
  border: 0;
  background: var(--accent);
  color: #2a1023;
  padding: 0 18px;
  font-weight: 800;
}

.product-mini {
  width: 82px;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f7f1f4);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
}
.toy {
  width: 30px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(160deg, #f5a6b9, #b94f7a);
  transform: rotate(12deg);
}
.toy.dark {
  background: linear-gradient(160deg, #281a25, #6a4056);
}
.toy.purple {
  background: linear-gradient(160deg, #7a3a74, #321534);
}
.notice {
  background: var(--blush);
  border: 1px solid #f1d6df;
  border-radius: 14px;
  padding: 13px 15px;
  color: #6f4354;
  font-size: 14px;
}
@media (max-width: 980px) {
 
  .actions .label {
    display: none;
  }
  
}
@media (max-width: 760px) {
 
  .actions {
    gap: 10px;
  }
 
  .section {
    padding: 44px 0;
  }
  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter form {
    width: 100%;
  }
  .newsletter input {
    min-width: 0;
    flex: 1;
  }
 
}
@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, 1180px);
  }
  .topbar {
    font-size: 11px;
  }
 
}

.wish-list {
  overflow: hidden;
}
.wish-list p {
    padding: 10px;
}
.wish-row {
  display: grid;
  grid-template-columns: 95px 1fr 120px 130px 130px 36px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-top: 1px solid var(--line);
}
.wish-row:first-child {
  border-top: 0;
}
.stock {
  font-size: 12px;
  background: #ecf7ef;
  color: #3f7650;
  border-radius: 999px;
  padding: 6px 9px;
  display: inline-block;
}


/*  */
.cart_product {
    background: #fefefe;
}

.cart_product .cart_products {
    width: 50px;
}
/*  */
@media (max-width: 760px) {
  .wish-row {
    grid-template-columns: 82px 1fr auto;
  }
  .wish-row .stock,
  .wish-row .price {
    grid-column: 2;
  }
  .wish-row .btn {
    grid-column: 2/-1;
  }
  .remove {
    grid-column: 3;
    grid-row: 1;
  }
}
