:root {
  --tdgpd-ink: #171326;
  --tdgpd-muted: #706a80;
  --tdgpd-muted-custom: var(--tdgpd-muted);
  --tdgpd-line: rgba(111, 74, 226, .16);
  --tdgpd-border-custom: var(--tdgpd-line);
  --tdgpd-purple: #6f49dc;
  --tdgpd-cyan: #22b8d6;
  --tdgpd-green: #10a66f;
  --tdgpd-red: #ef4444;
  --tdgpd-glass: rgba(255,255,255,.76);
  --tdgpd-card-bg: rgba(255,255,255,.94);
  --tdgpd-price-color: var(--tdgpd-purple);
  --tdgpd-sale-color: var(--tdgpd-green);
  --tdgpd-heading-weight: 850;
  --tdgpd-body-weight: 500;
  --tdgpd-button-radius: 18px;
  --tdgpd-shadow: 0 26px 76px rgba(30,16,67,.13);
  --tdgpd-soft-shadow: 0 14px 38px rgba(30,16,67,.09);
}

.single-product .summary.entry-summary {
  display: none !important;
}

body.single-product .product-image-summary,
body.single-product .product-image-summary-inner {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.single-product .product-images {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  --wd-col-lg: 12 !important;
  --wd-col-md: 12 !important;
  --wd-col-sm: 12 !important;
}

body.single-product .product-image-summary-wrap {
  overflow: visible;
}

body.single-product .whb-header .current_page_parent > .woodmart-nav-link,
body.single-product .wd-header-nav .current_page_parent > .woodmart-nav-link {
  color: #6c50a2 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  background: transparent !important;
}

.tdgpd-hero,
.tdgpd-section {
  color: var(--tdgpd-ink);
  direction: rtl;
}

.tdgpd-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  grid-template-areas:
    "breadcrumb breadcrumb"
    "media buy"
    "cart cart";
  gap: 22px;
  align-items: stretch;
  margin: 24px 0;
}

.tdgpd-breadcrumb {
  grid-area: breadcrumb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(111,73,220,.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(250,248,255,.62)),
    radial-gradient(circle at 92% 10%, rgba(111,73,220,.1), transparent 34%);
  color: var(--tdgpd-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.9;
  box-shadow: 0 14px 32px rgba(30,16,67,.06);
}

.tdgpd-breadcrumb a,
.tdgpd-breadcrumb span {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.tdgpd-breadcrumb a:hover,
.tdgpd-breadcrumb span:last-child {
  color: var(--tdgpd-purple);
}

.tdgpd-breadcrumb a:after {
  content: "/";
  margin-inline-start: 8px;
  color: rgba(112,106,128,.42);
  font-weight: 700;
}

.tdgpd-media-card,
.tdgpd-buy-card,
.tdgpd-section {
  border: 1px solid var(--tdgpd-border-custom);
  border-radius: 28px;
  background:
    linear-gradient(145deg, var(--tdgpd-card-bg), rgba(255,255,255,.64)),
    radial-gradient(circle at 12% 0, rgba(34,184,214,.09), transparent 34%),
    radial-gradient(circle at 94% 0, rgba(111,73,220,.12), transparent 38%);
  box-shadow: var(--tdgpd-shadow);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.tdgpd-media-card {
  grid-area: media;
  padding: 16px;
  overflow: hidden;
}

.tdgpd-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
  border: 1px solid rgba(111,73,220,.13);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(246,243,255,.62)),
    radial-gradient(circle at 52% 45%, rgba(34,184,214,.16), transparent 28%),
    repeating-linear-gradient(135deg, rgba(111,73,220,.035) 0 1px, transparent 1px 14px);
  transform-style: preserve-3d;
  transition: transform .25s ease;
}

.tdgpd-orbit {
  position: absolute;
  width: min(72%, 410px);
  aspect-ratio: 1;
  border: 1px dashed rgba(111,73,220,.23);
  border-radius: 50%;
  animation: tdgpd-spin 22s linear infinite;
}

.tdgpd-orbit.is-small {
  width: min(52%, 300px);
  animation-duration: 30s;
  animation-direction: reverse;
}

@keyframes tdgpd-spin {
  to { transform: rotate(360deg); }
}

.tdgpd-main-image {
  position: relative;
  z-index: 2;
  width: min(62%, 360px);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(18,9,40,.3));
  transform: rotate(-5deg);
  transition: opacity .16s ease, transform .3s ease, filter .3s ease;
}

.tdgpd-stage:hover .tdgpd-main-image {
  transform: rotate(-2deg) translateY(-7px) scale(1.03);
  filter: drop-shadow(0 42px 50px rgba(18,9,40,.36));
}

.tdgpd-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid rgba(111,73,220,.11);
  border-radius: 20px;
  background: rgba(255,255,255,.58);
}

.tdgpd-thumb {
  display: grid;
  place-items: center;
  min-height: 66px;
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.82);
  cursor: pointer;
  transition: .22s ease;
}

.tdgpd-thumb:hover,
.tdgpd-thumb.is-active {
  transform: translateY(-3px);
  border-color: rgba(111,73,220,.36);
  box-shadow: var(--tdgpd-soft-shadow);
}

.tdgpd-thumb img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.tdgpd-buy-card {
  grid-area: buy;
  padding: clamp(20px, 3vw, 32px);
}

.tdgpd-cart-panel {
  grid-area: cart;
  border: 1px solid var(--tdgpd-line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.68)),
    radial-gradient(circle at 18% 8%, rgba(34,184,214,.08), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(111,73,220,.12), transparent 36%);
  box-shadow: var(--tdgpd-shadow);
  padding: clamp(16px, 2vw, 24px);
}

.tdgpd-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: var(--tdgpd-purple);
  font-size: 13px;
  font-weight: 900;
}

.tdgpd-kicker:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tdgpd-purple), var(--tdgpd-cyan));
  box-shadow: 0 0 0 7px rgba(111,73,220,.1);
}

.tdgpd-buy-card h1 {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.7vw, 39px);
  line-height: 1.42;
  letter-spacing: 0;
  font-weight: var(--tdgpd-heading-weight);
}

.tdgpd-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0;
  direction: rtl;
}

.tdgpd-rating .star-rating {
  float: none;
  position: relative;
  width: 5.7em;
  height: 1.1em;
  margin: 0;
  color: #f7b500;
  direction: ltr;
  letter-spacing: 0;
  line-height: 1;
  overflow: hidden;
  font-size: 16px;
}

.tdgpd-rating .star-rating:before {
  color: #d9d4e6;
}

.tdgpd-rating .star-rating span:before {
  color: #f7b500;
}

.tdgpd-rating span {
  color: var(--tdgpd-muted);
  font-size: 13px;
}

.tdgpd-price {
  margin: 12px 0;
  font-size: 25px;
  font-weight: 950;
}

.tdgpd-current-price,
.tdgpd-price ins {
  color: var(--tdgpd-price-color);
  text-decoration: none;
}

.tdgpd-regular-price,
.tdgpd-price del {
  color: #b9b2c5;
  font-size: 18px;
  font-weight: 700;
  margin-left: 10px;
  text-decoration-thickness: 2px;
}

.tdgpd-short-desc {
  margin: 14px 0 18px;
  padding: 16px;
  border: 1px solid rgba(111,73,220,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  color: var(--tdgpd-muted-custom);
  font-weight: var(--tdgpd-body-weight);
  line-height: 2;
}

.tdgpd-cart-wrap form.cart {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "variations variations"
    "warranty accessories"
    "pricing pricing"
    "actions actions";
  gap: 16px;
  align-items: start;
}

.tdgpd-cart-wrap table.variations {
  grid-area: variations;
  margin: 0;
  border: 1px solid rgba(111,73,220,.13);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(248,246,255,.68)),
    radial-gradient(circle at 10% 18%, rgba(34,184,214,.06), transparent 34%);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 16px 34px rgba(30,16,67,.06);
}

.tdgpd-cart-wrap table.variations th,
.tdgpd-cart-wrap table.variations td {
  display: block;
  padding: 0;
  text-align: right;
}

.tdgpd-cart-wrap table.variations tr {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
}

.tdgpd-cart-wrap table.variations th.label label {
  margin: 0;
  color: var(--tdgpd-ink);
  font-weight: 950;
  font-size: 17px;
}

.tdgpd-cart-wrap table.variations td.value {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "swatches reset"
    "note note";
  align-items: center;
  gap: 13px;
}

.tdgpd-cart-wrap .wd-swatches-product,
.tdgpd-cart-wrap .wd-swatches-single {
  grid-area: swatches;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  width: auto !important;
  padding: 2px 0 0;
}

.tdgpd-cart-wrap .wd-swatch,
.tdgpd-cart-wrap .swatch,
.tdgpd-cart-wrap .variable-item {
  border: 1px solid rgba(111,73,220,.16) !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 24px rgba(30,16,67,.08) !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tdgpd-cart-wrap .wd-swatch:hover,
.tdgpd-cart-wrap .wd-swatch.wd-active,
.tdgpd-cart-wrap .variable-item:hover,
.tdgpd-cart-wrap .variable-item.selected {
  transform: translateY(-2px);
  border-color: rgba(111,73,220,.42) !important;
  box-shadow: 0 14px 30px rgba(111,73,220,.18) !important;
}

.tdgpd-cart-wrap .reset_variations {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-inline-start: 0;
  margin-right: 0;
  margin-left: auto;
  min-height: 38px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(111,73,220,.11);
  color: var(--tdgpd-purple) !important;
  font-weight: 800;
  order: 99;
}

.tdgpd-cart-wrap table.variations .wd-reset-var {
  grid-area: reset;
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
}

.tdgpd-cart-wrap table.variations .wd-reset-var .reset_variations {
  margin: 0 !important;
}

.tdgpd-cart-wrap .woocommerce-variation.single_variation {
  display: none !important;
  margin: 0;
}

.tdgpd-cart-wrap .woocommerce-variation-description,
.tdgpd-cart-wrap .tdgpd-variation-note {
  display: block;
  width: 100%;
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(111,73,220,.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(250,248,255,.62)),
    radial-gradient(circle at 8% 50%, rgba(111,73,220,.08), transparent 34%);
  color: var(--tdgpd-ink);
  font-weight: 800;
  line-height: 1.9;
  text-align: center;
  grid-area: note;
  order: 100;
}

.tdgpd-cart-wrap .single_variation .woocommerce-variation-description {
  display: none !important;
}

.tdgpd-cart-wrap .woocommerce-variation-description p {
  margin: 0;
}

.tdgpd-cart-wrap table.variations select,
.tdgpd-cart-wrap .quantity input.qty {
  border: 1px solid rgba(111,73,220,.16);
  border-radius: 16px;
  background: #fff;
}

.tdgpd-cart-wrap .single_add_to_cart_button {
  min-height: 48px;
  padding-inline: 26px !important;
  border-radius: var(--tdgpd-button-radius) !important;
  background: linear-gradient(135deg, var(--tdgpd-purple), var(--tdgpd-cyan)) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(111,73,220,.16);
}

.tdgpd-wwa-group:not(.tdgpd-wwa-accessories) {
  grid-area: warranty;
}

.tdgpd-wwa-accessories {
  grid-area: accessories;
}

.tdgpd-wwa-group:not(.tdgpd-wwa-accessories),
.tdgpd-wwa-accessories {
  min-width: 0;
}

.tdgpd-wwa-group > strong {
  display: block;
  margin-bottom: 9px;
}

.tdgpd-wwa-hint {
  margin: -3px 0 10px;
  color: var(--tdgpd-muted);
  font-size: 12px;
  font-weight: 750;
}

.tdgpd-wwa-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid rgba(111,73,220,.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(248,246,255,.65)),
    radial-gradient(circle at 12% 20%, rgba(34,184,214,.08), transparent 38%);
}

.tdgpd-wwa-accessories .tdgpd-wwa-title {
  margin-bottom: 9px;
  padding: 12px;
}

.tdgpd-wwa-title strong {
  font-weight: 950;
}

.tdgpd-wwa-title span {
  color: var(--tdgpd-muted);
  font-size: 12px;
  font-weight: 700;
}

.tdgpd-clear-accessories:focus,
.tdgpd-clear-accessories:focus-visible {
  outline: 0 !important;
  box-shadow: 0 0 0 3px rgba(111,73,220,.08) !important;
}

.tdgpd-clear-accessories:hover,
.tdgpd-clear-accessories.is-selected {
  transform: translateY(-2px);
  border-color: rgba(16,166,111,.48);
  background:
    linear-gradient(145deg, rgba(245,255,250,.96), rgba(255,255,255,.82)),
    radial-gradient(circle at 88% 20%, rgba(16,166,111,.1), transparent 34%) !important;
  box-shadow: 0 16px 32px rgba(16,166,111,.1);
}

.tdgpd-clear-accessories.is-selected:after {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--tdgpd-green);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.tdgpd-wwa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.tdgpd-wwa-option {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(111,73,220,.13);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(250,248,255,.62));
  cursor: pointer;
  transition: .22s ease;
}

.tdgpd-wwa-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.tdgpd-wwa-option:hover {
  transform: translateY(-2px);
  border-color: rgba(111,73,220,.4);
  box-shadow: var(--tdgpd-soft-shadow);
}

.tdgpd-wwa-option:has(input:checked) {
  transform: translateY(-2px);
  border-color: rgba(16,166,111,.48);
  background:
    linear-gradient(145deg, rgba(245,255,250,.96), rgba(255,255,255,.82)),
    radial-gradient(circle at 88% 20%, rgba(16,166,111,.1), transparent 34%);
  box-shadow: 0 16px 32px rgba(16,166,111,.1);
}

.tdgpd-wwa-option:has(input:checked):after {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 10px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--tdgpd-green);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.tdgpd-wwa-accessories .tdgpd-wwa-option:has(input:checked) {
  border-color: rgba(16,166,111,.38);
}

.tdgpd-wwa-accessories .tdgpd-wwa-option:has(input:checked):after {
  content: "×";
  background: #ef4444;
  font-size: 18px;
}

.tdgpd-wwa-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(111,73,220,.13), rgba(34,184,214,.14));
  color: var(--tdgpd-purple);
}

.tdgpd-wwa-icon svg,
.tdgpd-wwa-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.tdgpd-wwa-option b,
.tdgpd-wwa-option small,
.tdgpd-wwa-option em {
  display: block;
}

.tdgpd-wwa-accessories .tdgpd-wwa-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tdgpd-wwa-option small {
  color: var(--tdgpd-muted);
  font-size: 12px;
}

.tdgpd-wwa-option em {
  color: var(--tdgpd-green);
  font-style: normal;
  font-weight: 900;
}

.tdgpd-price-breakdown {
  grid-area: pricing;
  justify-self: stretch;
  display: grid;
  gap: 8px;
  padding: 13px 16px;
  border: 1px solid rgba(111,73,220,.13);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(250,248,255,.58)),
    radial-gradient(circle at 92% 20%, rgba(16,166,111,.06), transparent 32%);
}

.tdgpd-price-breakdown [hidden] {
  display: none !important;
}

.tdgpd-price-breakdown > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 26px;
}

.tdgpd-price-breakdown span {
  color: var(--tdgpd-muted);
  font-size: 13px;
  font-weight: 850;
}

.tdgpd-price-breakdown strong {
  color: var(--tdgpd-ink);
  font-size: 14px;
  font-weight: 950;
}

.tdgpd-pb-extra strong {
  color: var(--tdgpd-sale-color);
}

.tdgpd-pb-final {
  padding-top: 7px;
  border-top: 1px solid rgba(111,73,220,.1);
}

.tdgpd-pb-final strong {
  color: var(--tdgpd-purple);
  font-size: 17px;
}

.tdgpd-cart-wrap .single_variation_wrap {
  grid-area: actions;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: auto;
}

.tdgpd-cart-wrap .woocommerce-variation-add-to-cart {
  display: contents;
}

.tdgpd-cart-wrap .quantity {
  position: relative;
  display: inline-grid !important;
  grid-template-columns: 45px 30px 38px 30px !important;
  align-items: center;
  width: 143px !important;
  min-height: 44px;
  border: 1px solid rgba(111,73,220,.17);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 20px rgba(30,16,67,.06);
  overflow: hidden;
}

.tdgpd-cart-wrap .quantity:before {
  content: "تعداد:";
  position: static;
  grid-column: 1;
  grid-row: 1;
  padding-inline-start: 10px;
  color: var(--tdgpd-ink);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.tdgpd-cart-wrap .quantity :is(.plus, .minus, .wd-plus, .wd-minus) {
  width: 30px !important;
  height: 44px !important;
  display: grid !important;
  place-items: center;
  border: 0 !important;
  background: transparent !important;
  color: var(--tdgpd-ink) !important;
  font-size: 16px !important;
  font-weight: 950 !important;
}

.tdgpd-cart-wrap .quantity input.qty {
  width: 38px !important;
  min-height: 44px;
  border-width: 0 1px !important;
  border-color: rgba(111,73,220,.14) !important;
  border-radius: 0 !important;
  background: rgba(255,255,255,.78);
  color: var(--tdgpd-ink);
  font-size: 17px;
  font-weight: 900;
}

.tdgpd-sections {
  clear: both;
}

.tdgpd-section {
  margin: 24px 0;
  padding: clamp(20px, 3vw, 38px);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

.tdgpd-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 94px rgba(30,16,67,.15);
}

.tdgpd-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.tdgpd-section-head h2 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 33px);
  line-height: 1.45;
  font-weight: var(--tdgpd-heading-weight);
}

.tdgpd-section-head p {
  max-width: 580px;
  margin: 0;
  color: var(--tdgpd-muted-custom);
  font-weight: var(--tdgpd-body-weight);
  line-height: 2;
}

.tdgpd-split,
.tdgpd-app-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 22px;
  align-items: center;
}

.tdgpd-richtext {
  color: var(--tdgpd-muted-custom);
  font-size: 15px;
  line-height: 2.08;
  font-weight: var(--tdgpd-body-weight);
}

.tdgpd-device-card {
  display: grid;
  place-items: center;
  min-height: 340px;
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.62);
  overflow: hidden;
}

.tdgpd-device-card img {
  width: min(66%, 280px);
  object-fit: contain;
  filter: drop-shadow(0 28px 32px rgba(18,9,40,.25));
  transition: .3s ease;
}

.tdgpd-device-card:hover img {
  transform: translateY(-7px) scale(1.04);
}

.tdgpd-device-card span {
  color: var(--tdgpd-purple);
  font-weight: 900;
}

.tdgpd-spec-grid,
.tdgpd-platform-grid,
.tdgpd-box-grid,
.tdgpd-card-grid {
  display: grid;
  gap: 13px;
}

.tdgpd-spec-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.tdgpd-platform-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.tdgpd-box-grid,
.tdgpd-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tdgpd-spec,
.tdgpd-platform,
.tdgpd-box-grid > div,
.tdgpd-article,
.tdgpd-product-card {
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--tdgpd-soft-shadow);
  transition: .23s ease;
}

.tdgpd-spec:hover,
.tdgpd-platform:hover,
.tdgpd-box-grid > div:hover,
.tdgpd-article:hover,
.tdgpd-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(111,73,220,.28);
}

.tdgpd-spec {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px 12px;
  align-items: center;
  min-height: 104px;
  padding: 15px;
}

.tdgpd-spec i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(111,73,220,.13), rgba(34,184,214,.12));
  color: var(--tdgpd-purple);
}

.tdgpd-spec svg,
.tdgpd-spec img,
.tdgpd-box-grid svg,
.tdgpd-box-grid img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tdgpd-spec span {
  color: var(--tdgpd-purple);
  font-size: 13px;
  font-weight: 900;
}

.tdgpd-platform,
.tdgpd-box-grid > div {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px 12px;
  text-align: center;
  min-height: 126px;
}

.tdgpd-platform svg,
.tdgpd-platform img,
.tdgpd-platform .tdgpd-os-generic {
  width: 42px;
  height: 42px;
  color: var(--tdgpd-purple);
  object-fit: contain;
}

.tdgpd-platform .is-android { color: #3ddc84; }
.tdgpd-platform .is-windows { color: #0078d4; }
.tdgpd-platform .is-apple { color: #111827; }

.tdgpd-platform span {
  color: var(--tdgpd-muted);
  font-size: 13px;
}

.tdgpd-app-panel {
  grid-template-columns: 220px 1fr;
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.62);
  padding: 22px;
}

.tdgpd-phone svg,
.tdgpd-app-image {
  max-width: 180px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 36px rgba(18,9,40,.22));
}

.tdgpd-app-image {
  max-height: 230px;
  object-fit: contain;
}

.tdgpd-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 9px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tdgpd-purple), var(--tdgpd-cyan));
  color: #fff !important;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(111,73,220,.22);
}

.tdgpd-network-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.tdgpd-network-list > div {
  padding: 15px 17px;
  border: 1px solid rgba(111,73,220,.11);
  border-radius: 19px;
  background: rgba(255,255,255,.68);
}

.tdgpd-network-list p {
  margin: 7px 0 0;
  color: var(--tdgpd-muted);
  line-height: 2;
}

.tdgpd-center {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.tdgpd-coin-cta {
  min-height: 54px;
  padding-inline: 28px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.tdgpd-coin-cta:after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.36), transparent);
  transform: translateX(120%);
  animation: tdgpd-shine 2.8s ease-in-out infinite;
  z-index: -1;
}

@keyframes tdgpd-shine {
  0%, 45% { transform: translateX(120%); }
  80%, 100% { transform: translateX(-120%); }
}

.tdgpd-coin-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.tdgpd-coin {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 100px;
  padding: 11px 7px;
  border: 1px solid rgba(111,73,220,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  transition: .22s ease;
}

.tdgpd-coin:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--tdgpd-soft-shadow);
}

.tdgpd-coin svg,
.tdgpd-coin img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.tdgpd-coin strong {
  font-size: 13px;
}

.tdgpd-coin span {
  color: var(--tdgpd-muted);
  font-size: 11px;
}

.tdgpd-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
}

.tdgpd-table-wrap table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
}

.tdgpd-table-wrap th,
.tdgpd-table-wrap td {
  padding: 14px;
  border-bottom: 1px solid rgba(111,73,220,.1);
  border-left: 1px solid rgba(111,73,220,.1);
  text-align: center;
  line-height: 1.75;
  font-size: 14px;
}

.tdgpd-table-wrap th:first-child,
.tdgpd-table-wrap td:first-child {
  position: sticky;
  right: 0;
  z-index: 2;
  background: rgba(255,255,255,.96);
  width: 116px;
  min-width: 116px;
  max-width: 116px;
}

.tdgpd-table-wrap th img {
  display: block;
  width: 110px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.tdgpd-compare-price,
.tdgpd-bool.is-yes {
  color: var(--tdgpd-sale-color);
  font-weight: 950;
}

.tdgpd-bool.is-no {
  color: var(--tdgpd-red);
  font-weight: 950;
}

.tdgpd-bool {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tdgpd-bool svg {
  width: 22px;
  height: 22px;
}

.tdgpd-box-grid > div {
  min-height: 140px;
}

.tdgpd-box-grid i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(111,73,220,.14), rgba(34,184,214,.13));
  color: var(--tdgpd-purple);
}

.tdgpd-accordion {
  display: grid;
  gap: 11px;
}

.tdgpd-accordion details {
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 19px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--tdgpd-soft-shadow);
  overflow: hidden;
}

.tdgpd-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 19px;
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.tdgpd-accordion summary::-webkit-details-marker {
  display: none;
}

.tdgpd-accordion summary i {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tdgpd-purple), var(--tdgpd-cyan));
  flex: 0 0 auto;
}

.tdgpd-accordion summary i:before,
.tdgpd-accordion summary i:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.tdgpd-accordion summary i:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.tdgpd-accordion details[open] summary i:after {
  opacity: 0;
}

.tdgpd-accordion p {
  margin: 0;
  padding: 0 19px 17px;
  color: var(--tdgpd-muted);
  line-height: 2;
}

.tdgpd-article,
.tdgpd-product-card {
  display: grid;
  padding: 13px;
  min-height: 280px;
}

.tdgpd-article img,
.tdgpd-product-card img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  margin-bottom: 12px;
}

.tdgpd-article img {
  object-fit: cover;
  border-radius: 15px;
}

.tdgpd-article strong,
.tdgpd-product-card strong {
  color: var(--tdgpd-ink);
  line-height: 1.8;
}

.tdgpd-product-card span {
  margin-top: 8px;
  color: var(--tdgpd-sale-color);
  font-weight: 950;
}

.tdgpd-product-card em,
.tdgpd-article span {
  margin-top: auto;
  color: var(--tdgpd-purple);
  font-style: normal;
  font-weight: 900;
}

.tdgpd-review-box {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.68);
}

.tdgpd-review-stars {
  color: #f7b500;
  font-size: 30px;
  direction: ltr;
}

.tdgpd-review-box strong {
  margin: 0;
  color: var(--tdgpd-ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 2;
}

body.single-product .related-and-upsells,
body.single-product .wd-carousel-container.related-products,
body.single-product .related.products {
  display: none !important;
}

body.single-product .wd-single-reviews {
  direction: rtl;
  margin-top: 16px;
  padding: clamp(12px, 1.8vw, 20px);
  border: 1px solid var(--tdgpd-line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.66)),
    radial-gradient(circle at 10% 0, rgba(16,166,111,.08), transparent 34%),
    radial-gradient(circle at 92% 0, rgba(111,73,220,.12), transparent 36%);
  box-shadow: var(--tdgpd-shadow);
  overflow: hidden;
}

body.single-product #reviews,
body.single-product .woocommerce-Reviews {
  direction: rtl;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "summary"
    "form"
    "comments";
  gap: 12px;
  align-items: start;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.single-product .wd-single-reviews.wd-layout-two-column {
  display: block;
}

body.single-product .wd-rating-summary-wrap,
body.single-product .wd-reviews-content,
body.single-product #comments,
body.single-product #review_form_wrapper {
  min-width: 0;
}

body.single-product .wd-rating-summary-wrap {
  grid-area: summary;
  padding: 12px 14px;
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.7);
  box-shadow: var(--tdgpd-soft-shadow);
}

body.single-product #comments {
  grid-area: comments;
  width: 100%;
}

body.single-product .wd-reviews-content {
  width: 100%;
}

body.single-product #review_form_wrapper {
  grid-area: form;
  padding: 12px;
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.7);
  box-shadow: var(--tdgpd-soft-shadow);
}

body.single-product .wd-rating-summary {
  display: grid;
  grid-template-columns: minmax(140px, 190px) minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
}

body.single-product .wd-rating-summary-heading {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(111,73,220,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.7);
}

body.single-product .wd-rating-summary-main {
  color: var(--tdgpd-ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

body.single-product .wd-rating-summary-cont {
  display: grid;
  gap: 6px;
}

body.single-product .wd-rating-summary-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 24px;
  gap: 8px;
  align-items: center;
}

body.single-product .wd-rating-progress-bar .progress-area {
  height: 7px;
  border-radius: 999px;
  background: rgba(23,19,38,.07);
  overflow: hidden;
}

body.single-product .wd-rating-progress-bar .progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--tdgpd-purple), var(--tdgpd-cyan));
}

body.single-product #review_form {
  max-width: none;
}

body.single-product #commentform {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}

body.single-product #commentform:before {
  display: none;
}

body.single-product #commentform .comment-form-comment,
body.single-product #commentform .form-submit,
body.single-product #commentform .comment-form-cookies-consent {
  grid-column: 1 / -1;
}

body.single-product #reply-title {
  grid-column: 1 / -1;
  grid-row: 1;
  order: 0;
}

body.single-product #commentform .comment-notes {
  display: none;
  order: 1;
}

body.single-product #commentform .comment-form-author {
  grid-column: 1;
  grid-row: 2;
  order: 3;
}

body.single-product #commentform .comment-form-email {
  grid-column: 1;
  grid-row: 3;
  order: 4;
}

body.single-product #commentform .comment-form-rating {
  grid-column: 2;
  grid-row: 2 / 4;
  order: 2;
}

body.single-product #commentform .comment-form-comment {
  grid-row: 4;
  order: 5;
}

body.single-product #commentform .comment-form-pros {
  grid-row: 5;
  order: 6;
}

body.single-product #commentform .comment-form-cons {
  grid-row: 5;
  order: 7;
}

body.single-product #commentform .comment-form-cookies-consent {
  grid-row: 6;
  order: 8;
}

body.single-product #commentform .form-submit {
  grid-row: 7;
  order: 9;
}

body.single-product #commentform .comment-form-pros,
body.single-product #commentform .comment-form-cons {
  min-height: 58px;
}

body.single-product #commentform textarea#comment {
  min-height: 82px;
}

body.single-product #commentform .comment-form-author,
body.single-product #commentform .comment-form-email {
  margin: 0;
}

body.single-product #commentform .comment-form-rating {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 146px;
  text-align: center;
}

body.single-product #commentform .comment-form-rating,
body.single-product #commentform .comment-form-author,
body.single-product #commentform .comment-form-email {
  position: relative;
  z-index: 1;
}

body.single-product #reviews h2,
body.single-product .woocommerce-Reviews-title,
body.single-product #reply-title {
  margin: 0 0 6px;
  color: var(--tdgpd-ink);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.45;
  letter-spacing: 0;
}

body.single-product .woocommerce-Reviews-title {
  font-size: clamp(18px, 1.35vw, 22px);
  text-align: right;
}

body.single-product .wd-reviews-sorting,
body.single-product .wd-reviews-sorting-select,
body.single-product .wd-reviews-sorting-clear {
  display: none !important;
}

body.single-product .commentlist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

body.single-product .commentlist li.review,
body.single-product .commentlist li.comment {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--tdgpd-soft-shadow);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

body.single-product .commentlist li.review:hover,
body.single-product .commentlist li.comment:hover {
  transform: translateY(-3px);
  border-color: rgba(111,73,220,.28);
  box-shadow: 0 22px 48px rgba(30,16,67,.12);
}

body.single-product .commentlist .comment_container {
  position: relative;
  display: block;
  padding: 14px;
}

body.single-product .commentlist .comment_container:before {
  content: "کاربر سایت";
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(111,73,220,.08);
  color: var(--tdgpd-purple);
  font-size: 12px;
  font-weight: 900;
}

body.single-product .commentlist li:has(.woocommerce-review__verified) .comment_container:before {
  content: "خریدار محصول";
  background: rgba(16,166,111,.1);
  color: var(--tdgpd-green);
}

body.single-product .commentlist li.bypostauthor .comment_container:before,
body.single-product .commentlist li[class*="comment-author-soran"] .comment_container:before {
  content: "پشتیبان سایت";
  background: rgba(34,184,214,.12);
  color: #0b8fac;
}

body.single-product .commentlist img.avatar {
  width: 46px;
  height: 46px;
  border: 3px solid #fff;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(30,16,67,.13);
}

body.single-product .commentlist .comment-text {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  width: 100%;
  max-width: none;
}

body.single-product .commentlist .meta,
body.single-product .commentlist .woocommerce-review__published-date {
  color: var(--tdgpd-muted);
  font-size: 13px;
}

body.single-product .commentlist .woocommerce-review__author {
  color: var(--tdgpd-ink);
  font-weight: 950;
}

body.single-product .commentlist .description {
  margin-top: 8px;
  color: var(--tdgpd-muted);
  line-height: 1.85;
  max-width: none;
}

body.single-product .commentlist .description p {
  max-width: none;
  margin-bottom: 0;
  word-break: normal;
  overflow-wrap: anywhere;
}

body.single-product #reviews .star-rating,
body.single-product .commentlist .star-rating {
  float: none;
  position: relative;
  width: 5.7em;
  height: 1.1em;
  color: #f7b500;
  direction: ltr;
  line-height: 1;
  overflow: hidden;
  font-size: 15px;
}

body.single-product #reviews .star-rating:before,
body.single-product .commentlist .star-rating:before {
  color: #ddd7e8;
}

body.single-product #reviews .star-rating span:before,
body.single-product .commentlist .star-rating span:before {
  color: #f7b500;
}

body.single-product .comment-form-rating,
body.single-product .comment-form-comment,
body.single-product .comment-form-pros,
body.single-product .comment-form-cons {
  padding: 8px;
  border: 1px solid rgba(111,73,220,.12);
  border-radius: 15px;
  background: rgba(255,255,255,.72);
}

body.single-product .comment-form-rating select#rating {
  display: none !important;
}

body.single-product .comment-form-rating .stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 5px;
  margin: 6px 0 0;
  direction: ltr;
}

body.single-product .comment-form-rating .stars span {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
}

body.single-product .comment-form-rating .stars a {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(23,19,38,.045);
  color: transparent !important;
  font-size: 0 !important;
  text-indent: -9999px;
  transition: transform .18s ease, background .18s ease;
}

body.single-product .comment-form-rating .stars a:before {
  content: "★";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #d9d4e6;
  font-size: 18px;
  line-height: 1;
  text-indent: 0;
}

body.single-product .comment-form-rating .stars a:hover,
body.single-product .comment-form-rating .stars a.active {
  transform: translateY(-2px);
  background: rgba(247,181,0,.12);
}

body.single-product .comment-form-rating .stars a.is-filled:before {
  color: #f7b500;
}

body.single-product .comment-form-rating .stars:has(.star-1.active) .star-1:before,
body.single-product .comment-form-rating .stars:has(.star-2.active) .star-1:before,
body.single-product .comment-form-rating .stars:has(.star-2.active) .star-2:before,
body.single-product .comment-form-rating .stars:has(.star-3.active) .star-1:before,
body.single-product .comment-form-rating .stars:has(.star-3.active) .star-2:before,
body.single-product .comment-form-rating .stars:has(.star-3.active) .star-3:before,
body.single-product .comment-form-rating .stars:has(.star-4.active) .star-1:before,
body.single-product .comment-form-rating .stars:has(.star-4.active) .star-2:before,
body.single-product .comment-form-rating .stars:has(.star-4.active) .star-3:before,
body.single-product .comment-form-rating .stars:has(.star-4.active) .star-4:before,
body.single-product .comment-form-rating .stars:has(.star-5.active) .star-1:before,
body.single-product .comment-form-rating .stars:has(.star-5.active) .star-2:before,
body.single-product .comment-form-rating .stars:has(.star-5.active) .star-3:before,
body.single-product .comment-form-rating .stars:has(.star-5.active) .star-4:before,
body.single-product .comment-form-rating .stars:has(.star-5.active) .star-5:before {
  color: #f7b500;
}

body.single-product .comment-form-pros {
  border-color: rgba(16,166,111,.22);
  background: rgba(16,166,111,.055);
}

body.single-product .comment-form-cons {
  border-color: rgba(239,68,68,.2);
  background: rgba(239,68,68,.045);
}

body.single-product .comment-form-pros label:before,
body.single-product .comment-form-cons label:before,
body.single-product .woocommerce-review__pros:before,
body.single-product .woocommerce-review__cons:before,
body.single-product .wd-review-pros:before,
body.single-product .wd-review-cons:before,
body.single-product .review-pros:before,
body.single-product .review-cons:before {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-left: 7px;
  border-radius: 50%;
  color: #fff;
  font-weight: 950;
  line-height: 1;
}

body.single-product .comment-form-pros label:before,
body.single-product .woocommerce-review__pros:before,
body.single-product .wd-review-pros:before,
body.single-product .review-pros:before {
  content: "+";
  background: var(--tdgpd-green);
}

body.single-product .comment-form-cons label:before,
body.single-product .woocommerce-review__cons:before,
body.single-product .wd-review-cons:before,
body.single-product .review-cons:before {
  content: "-";
  background: var(--tdgpd-red);
}

body.single-product #reviews textarea,
body.single-product #reviews input[type="text"],
body.single-product #reviews input[type="email"] {
  border: 1px solid rgba(111,73,220,.14);
  border-radius: 16px;
  background: #fff;
  min-height: 42px;
  padding: 9px 13px;
}

body.single-product #reviews input[type="submit"],
body.single-product #reviews button[type="submit"] {
  min-height: 44px;
  padding: 10px 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--tdgpd-purple), var(--tdgpd-cyan)) !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(111,73,220,.22);
}

@media (max-width: 1024px) {
  .tdgpd-hero,
  .tdgpd-split,
  .tdgpd-app-panel {
    grid-template-columns: 1fr;
  }

  .tdgpd-hero {
    grid-template-areas:
      "breadcrumb"
      "media"
      "buy"
      "cart";
  }

  .tdgpd-cart-wrap form.cart {
    grid-template-columns: 1fr;
    grid-template-areas:
      "variations"
      "warranty"
      "accessories"
      "pricing"
      "actions";
  }

  .tdgpd-spec-grid,
  .tdgpd-platform-grid,
  .tdgpd-box-grid,
  .tdgpd-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tdgpd-coin-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tdgpd-hero {
    gap: 12px;
    margin-top: 12px;
  }

  .tdgpd-media-card,
  .tdgpd-buy-card,
  .tdgpd-section {
    border-radius: 21px;
    padding: 14px;
  }

  .tdgpd-stage {
    min-height: 310px;
    border-radius: 19px;
  }

  .tdgpd-orbit {
    display: none;
  }

  .tdgpd-main-image {
    width: min(58%, 245px);
    max-height: 255px;
  }

  .tdgpd-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
  }

  .tdgpd-thumb {
    min-height: 58px;
    border-radius: 14px;
  }

  .tdgpd-thumb img {
    width: 46px;
    height: 46px;
  }

  .tdgpd-buy-card h1 {
    font-size: 23px;
  }

  .tdgpd-short-desc,
  .tdgpd-richtext,
  .tdgpd-section-head p {
    font-size: 13px;
    line-height: 1.9;
  }

  .tdgpd-price {
    font-size: 22px;
  }

  .tdgpd-wwa-grid,
  .tdgpd-spec-grid,
  .tdgpd-platform-grid,
  .tdgpd-box-grid,
  .tdgpd-card-grid {
    grid-template-columns: 1fr;
  }

  .tdgpd-cart-panel {
    padding: 12px;
    border-radius: 21px;
  }

  .tdgpd-cart-wrap .single_variation_wrap {
    grid-template-columns: auto auto;
    justify-content: center;
  }

  .tdgpd-cart-wrap .single_add_to_cart_button {
    padding-inline: 14px !important;
    white-space: normal;
  }

  .tdgpd-section {
    margin: 14px 0;
  }

  .tdgpd-section:hover {
    transform: none;
  }

  .tdgpd-section-head {
    display: block;
    margin-bottom: 16px;
  }

  .tdgpd-section-head h2 {
    font-size: 22px;
  }

  .tdgpd-device-card {
    min-height: 250px;
  }

  .tdgpd-app-panel {
    padding: 15px;
  }

  .tdgpd-phone {
    display: none;
  }

  .tdgpd-coin-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }

  .tdgpd-coin {
    min-height: 80px;
    padding: 8px 5px;
  }

  .tdgpd-coin svg,
  .tdgpd-coin img {
    width: 30px;
    height: 30px;
  }

  .tdgpd-coin strong {
    font-size: 11px;
  }

  .tdgpd-coin span {
    display: none;
  }

  .tdgpd-coin-cta {
    width: 100%;
  }

	  .tdgpd-table-wrap table {
	    min-width: 660px;
	  }

	  .tdgpd-table-wrap th,
	  .tdgpd-table-wrap td {
	    padding: 10px 8px;
	    font-size: 12px;
	  }

	  .tdgpd-table-wrap th:first-child,
	  .tdgpd-table-wrap td:first-child {
	    width: 88px;
	    min-width: 88px;
	    max-width: 88px;
	  }

	  .tdgpd-table-wrap th img {
	    width: 82px;
	    height: 72px;
	  }

	  .tdgpd-review-box {
	    grid-template-columns: 1fr;
	    text-align: center;
	  }

	  body.single-product .commentlist .comment_container {
	    padding: 14px;
	  }

	  body.single-product #reviews,
	  body.single-product .woocommerce-Reviews {
	    grid-template-columns: 1fr;
	    grid-template-areas:
	      "summary"
	      "form"
	      "comments"
	    ;
	  }

	  body.single-product #commentform {
	    grid-template-columns: 1fr;
	  }

	  body.single-product #commentform:before {
	    display: none;
	  }

	  body.single-product #commentform .comment-form-rating,
	  body.single-product #commentform .comment-form-author,
	  body.single-product #commentform .comment-form-email {
	    grid-column: 1 / -1;
	    grid-row: auto;
	  }

	  body.single-product #commentform .comment-form-rating {
	    min-height: auto;
	  }

	  body.single-product .commentlist img.avatar {
	    width: 46px;
	    height: 46px;
	    border-radius: 15px;
	  }

	  body.single-product .commentlist .comment-text {
	    padding-left: 0 !important;
	  }

	  body.single-product .commentlist .comment_container:before {
	    position: static;
	    grid-column: 1 / -1;
	    width: fit-content;
	    margin-bottom: -4px;
	  }
	}

@media (prefers-reduced-motion: reduce) {
  .tdgpd-hero *,
  .tdgpd-section *,
  .tdgpd-hero *:before,
  .tdgpd-section *:before,
  .tdgpd-hero *:after,
  .tdgpd-section *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
