.product-page {
  min-height: 100vh;
  background: #fafafa;
}
.product-main {
  width: min(1280px, calc(100% - 32px));
  margin: auto;
  padding: 35px 0 88px;
}
.product-breadcrumb {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 26px;
  color: #71717a;
  font-size: 12px;
  font-weight: 600;
}
.product-breadcrumb a:hover,
.product-brand > a {
  color: #047857;
}
.product-breadcrumb b {
  color: #18181b;
}
.product-breadcrumb-skeleton {
  display: flex;
  gap: 8px;
  align-items: center;
}
.product-breadcrumb-skeleton span {
  display: block;
  width: 72px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f4f4f5 25%, #e4e4e7 50%, #f4f4f5 75%);
  background-size: 200% 100%;
  animation: product-content-skeleton-loading 1.2s infinite linear;
}
.product-breadcrumb-skeleton span:nth-child(2) { width: 104px; }
.product-breadcrumb-skeleton span:nth-child(3) { width: 88px; }
.product-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  padding: 31px;
  border: 1px solid #f4f4f5;
  border-radius: 39px;
  background: #fff;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}
.product-skeleton-block,
.product-skeleton-line,
.product-gallery-skeleton .product-thumbs span,
.product-specifications-skeleton p span,
.product-specifications-skeleton p b {
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, #f4f4f5 25%, #e4e4e7 50%, #f4f4f5 75%);
  background-size: 200% 100%;
  animation: product-content-skeleton-loading 1.2s infinite linear;
}
.product-hero-skeleton {
  min-height: 560px;
}
.product-gallery-skeleton .product-skeleton-block {
  width: 100%;
  border: 0;
}
.product-gallery-skeleton .product-thumbs span {
  aspect-ratio: 1;
}
.product-details-skeleton {
  justify-content: center;
  gap: 18px;
}
.product-skeleton-line {
  width: 100%;
  height: 16px;
}
.product-skeleton-line-short { width: 28%; height: 12px; }
.product-skeleton-line-medium { width: 68%; }
.product-skeleton-line-title { height: 38px; }
.product-skeleton-line-price { width: 42%; height: 48px; }
.product-skeleton-line-heading { width: 42%; height: 34px; }
.product-description-loading-skeleton {
  width: 100%;
  min-height: 360px;
  border-radius: 24px;
}
.product-details-loading-error {
  margin: 20px 0 0;
  color: #b91c1c;
  font-weight: 700;
}
.product-gallery {
  display: grid;
  align-self: start;
  gap: 15px;
}
.product-image {
  height: auto;
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid #f4f4f5;
  border-radius: 30px;
  background: #fafafa;
  cursor: zoom-in;
}
.product-image > img {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 30px;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}
.product-thumbs button {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #fafafa;
  overflow: hidden;
}
.product-thumbs button.active {
  border-color: #047857;
}
.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  padding: 8px;
}
.product-image-modal {
  width: min(96vw, 1200px);
  height: min(92dvh, 900px);
  padding: 24px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.product-image-modal::backdrop {
  background: rgba(9, 9, 11, 0.78);
}
.product-image-modal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-image-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #18181b;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.product-details {
  display: flex;
  flex-direction: column;
}
.product-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 800;
}
.product-import-badge {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  color: #52525b;
  font-size: 11px;
  cursor: default;
  transition: padding 0.3s ease;
}
.product-import-flag {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(24, 24, 27, 0.12));
}
.product-import-label {
  display: block;
  min-width: 0;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  font-weight: 700;
  transition: max-width 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.product-import-badge:hover {
  padding-inline-end: 12px;
}
.product-import-badge:hover .product-import-label {
  max-width: 150px;
  margin-inline-start: 8px;
  opacity: 1;
}
.product-details h1 {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.25;
}
.product-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 23px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e4e4e7;
}
.product-rating > span {
  color: #f59e0b;
  letter-spacing: 1px;
}
.product-rating b {
  color: #71717a;
  font:
    14px Outfit,
    sans-serif;
}
.product-rating > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d4d4d8;
}
.product-rating strong {
  color: #e11d48;
  font-size: 12px;
}
.product-price {
  margin-bottom: 24px;
}
.product-price-skeleton {
  width: min(210px, 58vw);
  height: 54px;
  border-radius: 12px;
}
.product-price > strong {
  font:
    900 54px Outfit,
    sans-serif;
  letter-spacing: -3px;
}
.product-price > strong small {
  vertical-align: top;
  font-size: 17px;
  letter-spacing: 0;
}
.product-price > strong em {
  font-size: 19px;
  font-style: normal;
  letter-spacing: 0;
}
.product-price > strong.product-price-unavailable {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #fecdd3;
  border-radius: 12px;
  background: #fff1f2;
  padding: 10px 14px;
  color: #be123c;
  font: 800 16px/1.45 Cairo, Arial, sans-serif;
  letter-spacing: 0;
}
.product-price-unavailable i { font-size: 20px; }
.product-price del {
  margin-right: 13px;
  color: #a1a1aa;
  font:
    15px Outfit,
    sans-serif;
}
.product-price p {
  margin: 7px 0 0;
  color: #047857;
  font-size: 12px;
  font-weight: 700;
}
.product-colors > label {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
}
.product-color-select {
  position: relative;
  width: min(100%, 290px);
}
.product-color-select select {
  width: 100%;
  appearance: none;
  padding: 13px 15px 13px 42px;
  border: 1px solid #d4d4d8;
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: #18181b;
  font:
    700 14px Cairo,
    sans-serif;
  cursor: pointer;
}
.product-color-select select:focus {
  border-color: #047857;
  box-shadow: 0 0 0 3px #d1fae5;
}
.product-color-select i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #71717a;
  pointer-events: none;
}
.product-variations {
  margin-top: 4px;
}
.product-variation-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.product-variation-field {
  display: grid;
  gap: 10px;
}
.product-variation-field label {
  font-size: 14px;
  font-weight: 800;
}
.product-variation-field select {
  width: 100%;
  padding: 13px 38px 13px 15px;
  border: 1px solid #d4d4d8;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%2352525b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 8px center;
  color: #18181b;
  font: 700 14px Cairo, sans-serif;
}
.product-variation-skeleton {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.product-variation-skeleton[hidden],
.product-variation-options[hidden],
.product-variation-error[hidden] {
  display: none;
}
.product-variation-skeleton span {
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f4f4f5 25%, #e4e4e7 50%, #f4f4f5 75%);
  background-size: 200% 100%;
  animation: product-variation-loading 1.2s infinite linear;
}
.product-variation-error {
  margin: 0;
  color: #71717a;
  font-size: 13px;
}
@keyframes product-variation-loading {
  to { background-position: -200% 0; }
}
.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.product-features > div {
  display: flex;
  gap: 9px;
  padding: 12px;
  border: 1px solid #f4f4f5;
  border-radius: 16px;
  background: #fafafa;
}
.product-features i {
  font-size: 23px;
  color: #047857;
}
.product-features span {
  display: grid;
  gap: 3px;
  font-size: 11px;
}
.product-features small {
  color: #71717a;
}
.product-actions {
  display: flex;
  gap: 8px;
  border-radius: 28px;
  background: #18181b;
  padding: 8px;
}
.product-actions > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 118px;
  border-radius: 21px;
  background: #27272a;
  color: white;
  padding: 0 6px;
}
.product-actions > div button {
  border: 0;
  background: transparent;
  color: white;
  font-size: 21px;
}
.product-actions > button {
  flex: 1;
  border: 0;
  border-radius: 21px;
  background: #047857;
  color: white;
  font:
    800 16px Cairo,
    sans-serif;
}
.product-actions > form {
  display: flex;
  flex: 1;
}
.product-actions > form > button {
  width: 100%;
  border: 0;
  border-radius: 21px;
  background: #047857;
  color: white;
  cursor: pointer;
  font:
    800 16px Cairo,
    sans-serif;
}
.product-trust {
  display: grid;
  gap: 12px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
  color: #52525b;
  font-size: 12px;
}
.product-trust li {
  display: flex;
  gap: 12px;
  align-items: center;
}
.product-trust i {
  color: #047857;
  font-size: 21px;
}
.product-deep {
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid #f4f4f5;
  border-radius: 38px;
  background: #fff;
}
.product-deep > nav {
  display: flex;
  overflow: auto;
  border-bottom: 1px solid #f4f4f5;
  background: #fafafa;
}
.product-deep > nav button {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 19px 24px;
  color: #71717a;
  font:
    800 15px Cairo,
    sans-serif;
}
.product-deep > nav button.active {
  border-color: #047857;
  color: #047857;
}
.product-deep > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  padding: 45px;
}
.product-deep h2 {
  font-size: 27px;
}
.product-deep p {
  color: #52525b;
  line-height: 1.9;
}
.product-deep ul {
  display: grid;
  gap: 11px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.product-deep li:before {
  content: "✓";
  margin-left: 9px;
  color: #047857;
  font-weight: 900;
}
.product-deep img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 24px;
}

.product-description {
  margin-top: 80px;
  border-top: 1px solid #e4e4e7;
  padding-top: 64px;
}
.product-description-inner {
  width: min(100%, 900px);
  margin: 0 auto;
}
.product-section-eyebrow {
  display: block;
  color: #047857;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.product-description-heading h2 {
  margin: 13px 0 30px;
  color: #09090b;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.product-description-content {
  color: #52525b;
  font-size: 16px;
  line-height: 2;
}
.product-description-content p {
  margin: 0 0 24px;
}
.product-description-html p {
  margin: 0 0 24px;
}
.product-a-plus-images {
  margin: 40px 0;
}
.product-a-plus-image {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(24, 24, 27, 0.1);
}
.product-a-plus-image button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.product-a-plus-image img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.product-a-plus-carousel {
  position: relative;
  margin-top: 40px;
}
.product-a-plus-carousel-viewport {
  overflow: hidden;
}
.product-a-plus-carousel .product-a-plus-image {
  display: none;
  margin: 0;
}
.product-a-plus-carousel .product-a-plus-image.is-active {
  display: flex;
  justify-content: center;
}
.product-a-plus-carousel .product-a-plus-image button {
  width: auto;
  max-width: 100%;
}
.product-a-plus-carousel .product-a-plus-image img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.product-a-plus-carousel-control {
  position: absolute;
  z-index: 1;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  background: rgba(24, 24, 27, 0.72);
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
}
.product-a-plus-carousel-control:hover,
.product-a-plus-carousel-control:focus-visible {
  background: rgba(24, 24, 27, 0.9);
}
.product-a-plus-carousel-control:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 3px;
}
.product-a-plus-carousel-control-previous {
  left: 12px;
}
.product-a-plus-carousel-control-next {
  right: 12px;
}
.product-a-plus-skeleton {
  aspect-ratio: 970 / 600;
  margin: 40px 0;
}
.product-a-plus-skeleton span {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.product-a-plus-skeleton span,
.product-reviews-skeleton span,
.product-reviews-skeleton b,
.product-reviews-skeleton i,
.product-reviews-skeleton article {
  display: block;
  border-radius: 12px;
  background: linear-gradient(90deg, #f4f4f5 25%, #e4e4e7 37%, #f4f4f5 63%);
  background-size: 400% 100%;
  animation: product-content-skeleton-loading 1.4s ease infinite;
}
@keyframes product-content-skeleton-loading {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}
.product-specifications {
  margin-top: 60px;
  padding: 32px;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  background: #fafafa;
  box-shadow: 0 2px 5px rgba(24, 24, 27, 0.03);
}
.product-specifications h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: #18181b;
  font-size: 18px;
}
.product-specifications h3 i {
  color: #047857;
  font-size: 21px;
}
.product-specification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}
.product-specification-grid p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid #e4e4e7;
  font-size: 13px;
  font-weight: 700;
}
.product-specification-grid p span {
  color: #71717a;
}
.product-specification-grid p b {
  color: #18181b;
  font-family: Outfit, Cairo, sans-serif;
  text-align: left;
}
.product-reviews {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid #e4e4e7;
}
.product-reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}
.product-reviews-heading h3 {
  margin: 10px 0 0;
  color: #09090b;
  font-size: clamp(26px, 3vw, 34px);
}
.product-reviews-skeleton .product-reviews-heading > div {
  display: grid;
  gap: 12px;
}
.product-reviews-skeleton .product-reviews-heading span {
  width: 120px;
  height: 13px;
}
.product-reviews-skeleton .product-reviews-heading b {
  width: min(260px, 55vw);
  height: 34px;
}
.product-reviews-skeleton .product-reviews-heading > i {
  width: 150px;
  height: 64px;
}
.product-reviews-skeleton .product-review-grid article {
  min-height: 190px;
}
.product-review-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  background: #fff;
}
.product-review-summary > b {
  color: #18181b;
  font:
    900 36px/1 Outfit,
    Cairo,
    sans-serif;
}
.product-review-summary div {
  display: grid;
  gap: 3px;
}
.product-review-summary span,
.product-review-card header > strong span {
  color: #f59e0b;
  direction: ltr;
  letter-spacing: 1px;
}
.product-review-summary small {
  color: #71717a;
  font-size: 11px;
  font-weight: 700;
}
.product-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.product-review-grid[hidden] {
  display: none;
}
.product-review-card {
  padding: 25px;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  background: #fff;
}
.product-review-card header {
  display: flex;
  align-items: center;
  gap: 11px;
}
.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ecfdf5;
  color: #047857;
  font-size: 13px;
  font-weight: 900;
}
.product-review-card header > div {
  display: grid;
  gap: 3px;
}
.product-review-card header b {
  color: #18181b;
  font-size: 13px;
}
.product-review-card header b i {
  color: #047857;
  vertical-align: -2px;
}
.product-review-card header small {
  color: #a1a1aa;
  font-size: 11px;
  font-weight: 700;
}
.product-review-card header > strong {
  margin-right: auto;
  color: #18181b;
  font:
    800 13px Outfit,
    Cairo,
    sans-serif;
  white-space: nowrap;
}
.product-review-card h4 {
  margin: 22px 0 8px;
  color: #18181b;
  font-size: 15px;
}
.product-review-card > p {
  min-height: 72px;
  margin: 0;
  color: #71717a;
  font-size: 13px;
  line-height: 1.9;
}
.product-review-body:not(.is-expanded) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.product-review-card button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #71717a;
  font:
    800 12px Cairo,
    sans-serif;
  cursor: pointer;
}
.product-review-card button[hidden] {
  display: none;
}
.product-review-card button:hover {
  color: #047857;
}
.product-review-modal {
  box-sizing: border-box;
  width: min(92vw, 700px);
  max-height: min(82dvh, 760px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 32px;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.product-review-modal::backdrop {
  background: rgba(9, 9, 11, 0.78);
}
.product-review-modal-toolbar {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  height: 0;
}
body.review-modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
.product-review-modal header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-right: 42px;
}
.product-review-modal header > div {
  display: grid;
  gap: 3px;
}
.product-review-modal header b,
.product-review-modal h3 {
  color: #18181b;
}
.product-review-modal header small {
  color: #71717a;
  font-size: 12px;
}
.product-review-modal h3 {
  margin: 28px 0 10px;
  font-size: 20px;
}
.product-review-modal p {
  margin: 0;
  color: #52525b;
  font-size: 15px;
  line-height: 2;
  white-space: pre-line;
}
.product-review-card .product-review-modal-close {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #18181b;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.product-reviews-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 24px;
  padding: 15px;
  border: 1px solid #d4d4d8;
  border-radius: 12px;
  background: #fff;
  color: #18181b;
  font:
    900 14px Cairo,
    sans-serif;
  cursor: pointer;
}
.product-reviews-action:hover {
  border-color: #047857;
  color: #047857;
}
.product-reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.product-reviews-pagination button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1px solid #d4d4d8;
  border-radius: 10px;
  background: #fff;
  color: #18181b;
  font: 800 13px Cairo, sans-serif;
  cursor: pointer;
}
.product-reviews-pagination button:hover:not(:disabled),
.product-reviews-pagination button:focus-visible {
  border-color: #047857;
  color: #047857;
}
.product-reviews-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.product-reviews-pagination span {
  min-width: 76px;
  color: #71717a;
  font: 800 12px Cairo, sans-serif;
  text-align: center;
}
@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-details h1 {
    font-size: 31px;
  }
}
@media (max-width: 600px) {
  .product-main {
    width: min(100% - 24px, 1280px);
    padding: 25px 0 50px;
  }
  .product-breadcrumb {
    flex-wrap: wrap;
    overflow: visible;
    white-space: normal;
  }
  .product-hero {
    padding: 13px;
    border-radius: 25px;
  }
  .product-image {
    border-radius: 20px;
  }
  .product-details {
    padding: 6px;
  }
  .product-details h1 {
    font-size: 25px;
  }
  .product-price > strong {
    font-size: 43px;
  }
  .product-features {
    grid-template-columns: 1fr;
  }
  .product-deep {
    margin-top: 40px;
    border-radius: 25px;
  }
  .product-deep > div {
    grid-template-columns: 1fr;
    padding: 23px;
  }
  .product-deep img {
    height: 210px;
  }
  .product-description {
    margin-top: 48px;
    padding-top: 43px;
  }
  .product-description-heading h2 {
    margin-bottom: 23px;
  }
  .product-description-content {
    font-size: 14px;
    line-height: 2;
  }
  .product-a-plus-images {
    margin: 28px 0;
  }
  .product-a-plus-carousel {
    margin-top: 28px;
  }
  .product-a-plus-carousel-control {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .product-a-plus-carousel-control-previous {
    left: 8px;
  }
  .product-a-plus-carousel-control-next {
    right: 8px;
  }
  .product-specifications {
    margin-top: 40px;
    padding: 22px;
    border-radius: 14px;
  }
  .product-specification-grid {
    grid-template-columns: 1fr;
  }
  .product-specification-grid p {
    font-size: 12px;
  }
  .product-reviews {
    margin-top: 60px;
    padding-top: 42px;
  }
  .product-reviews-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 27px;
  }
  .product-review-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-review-card {
    padding: 20px;
  }
  .product-review-card > p {
    min-height: 0;
  }
}
