/*
 * WooCommerce UI layer for Astra Child.
 * Mirrors the blue, clean, card-based style used on the Home page.
 */

.pc-woo-theme {
  --pcw-primary: #1e5eff;
  --pcw-primary-dark: #0f4cd6;
  --pcw-accent: #31a8ff;
  --pcw-bg: #eef3fb;
  --pcw-surface: #ffffff;
  --pcw-border: #e2e9f7;
  --pcw-text: #132340;
  --pcw-muted: #5e7197;
  --pcw-success: #0f9d58;
  --pcw-danger: #be3348;
  --pcw-radius: 20px;
  --pcw-shadow: 0 18px 44px rgba(16, 48, 108, 0.08);
}

.pc-woo-theme.woocommerce,
.pc-woo-theme.woocommerce-page {
  font-family: "Inter", sans-serif;
  color: var(--pcw-text);
}

.pc-woo-theme .ast-woocommerce-container {
  width: min(1320px, calc(100% - 28px));
  margin: 32px auto 50px;
  padding: 0 !important;
}

.pc-woo-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 102% -14%, rgba(30, 94, 255, 0.1) 0, rgba(30, 94, 255, 0) 46%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e3eaf8;
  border-radius: 24px;
  box-shadow: var(--pcw-shadow);
  padding: clamp(18px, 2vw, 30px);
}

.pc-woo-theme .woocommerce-breadcrumb {
  margin: 0 0 14px;
  color: #5b719c;
  font-size: 13px;
}

.pc-woo-theme .woocommerce-breadcrumb a {
  color: var(--pcw-primary);
}

.pc-woo-hero {
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #cfe0ff;
  border-radius: 14px;
  background: linear-gradient(135deg, #edf4ff 0%, #dbe9ff 100%);
}

.pc-woo-hero.is-compact {
  padding: 16px 18px;
}

.pc-woo-kicker {
  margin: 0 0 6px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pcw-primary);
}

.pc-woo-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.06;
  color: #0f1e38;
}

.pc-woo-subtitle,
.pc-woo-subtitle p {
  margin: 10px 0 0;
  color: #42557b;
  font-size: 15px;
  line-height: 1.55;
}

.pc-woo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: #f2f7ff;
  border: 1px solid #d9e8ff;
  border-radius: 12px;
}

.pc-woo-result-count {
  margin: 0;
  color: #324a74;
  font-weight: 600;
  font-size: 13px;
}

.pc-woo-ordering {
  margin: 0;
}

.pc-woo-ordering .orderby {
  border: 1px solid #bfd4ff;
  border-radius: 10px;
  background: #fff;
  color: #1a2e52;
  min-height: 42px;
  padding: 0 36px 0 12px;
  font-weight: 500;
}

.pc-woo-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
}

.pc-woo-products-grid.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-woo-products-grid.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pc-woo-product-card {
  margin: 0;
}

.pc-woo-card {
  height: 100%;
  border: 1px solid #e5ecfa;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(17, 54, 124, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.pc-woo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(18, 57, 133, 0.14);
}

.pc-woo-thumb {
  position: relative;
  display: block;
  background: linear-gradient(180deg, #f9fcff 0%, #f2f7ff 100%);
  padding: 18px 18px 12px;
  border-bottom: 1px solid #edf3ff;
}

.pc-woo-thumb img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  margin: 0 auto;
}

.pc-woo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border-radius: 999px;
  background: #f7476f;
  color: #fff;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pc-woo-badge.is-muted {
  top: 42px;
  background: #7685a8;
}

.pc-woo-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 16px;
  flex: 1;
}

.pc-woo-brand {
  margin: 0;
  color: #6b7ca0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pc-woo-name {
  margin: 0;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  min-height: 48px;
}

.pc-woo-name a {
  color: #132847;
  text-decoration: none;
}

.pc-woo-name a:hover {
  color: var(--pcw-primary);
}

.pc-woo-excerpt {
  margin: 0;
  color: #65799f;
  font-size: 13px;
  line-height: 1.5;
}

.pc-woo-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pc-woo-rating .star-rating {
  margin: 0;
  color: #ffb200;
  font-size: 13px;
}

.pc-woo-reviews {
  color: #7586aa;
  font-size: 12px;
}

.pc-woo-price {
  font-size: 25px;
  line-height: 1.15;
  font-weight: 700;
  color: #111f3a;
}

.pc-woo-price del {
  color: #8ea0c4;
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
}

.pc-woo-price ins {
  background: transparent;
  text-decoration: none;
}

.pc-woo-actions {
  margin-top: auto;
}

.pc-woo-actions .button,
.pc-woo-actions .added_to_cart {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #8eb2ff;
  background: #fff;
  color: var(--pcw-primary);
  text-align: center;
  font-weight: 700;
  padding: 10px 12px;
  line-height: 1.3;
}

.pc-woo-actions .button:hover,
.pc-woo-actions .button:focus,
.pc-woo-actions .added_to_cart:hover,
.pc-woo-actions .added_to_cart:focus {
  background: var(--pcw-primary);
  border-color: var(--pcw-primary);
  color: #fff;
}

/* Shop + category cards: match single product related card design */
.pc-woo-theme.woocommerce:not(.single-product) ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
}

.pc-woo-theme.woocommerce:not(.single-product) ul.products li.product.sp-shop-item {
  float: none;
  width: 100%;
  margin: 0;
  display: block;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-card:hover {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-card-img {
  padding: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  position: relative;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-card-img img {
  width: auto;
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-body {
  padding: 14px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-name {
  margin: 0 0 6px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  color: #1a1a1a;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-name a {
  color: inherit;
  text-decoration: none;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-name a:hover {
  color: #1e5eff;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 56px;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-stars {
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 4px;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-stars .star-rating {
  margin: 0;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-price .now {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-rel-price .old {
  font-size: 14px;
  color: #6b7280;
  text-decoration: line-through;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-shop-cart {
  margin-top: auto;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-shop-cart .button,
.pc-woo-theme.woocommerce:not(.single-product) .sp-shop-cart .added_to_cart {
  width: 100%;
  min-height: 38px;
  border: 1px solid #1e5eff;
  border-radius: 6px;
  background: #1e5eff;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1.2;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-shop-cart .button:hover,
.pc-woo-theme.woocommerce:not(.single-product) .sp-shop-cart .added_to_cart:hover {
  background: #1558b8;
  border-color: #1558b8;
}

.pc-woo-theme.woocommerce:not(.single-product) .sp-shop-cart .added_to_cart {
  margin-top: 8px;
  background: #fff;
  color: #1e5eff;
}

.pc-woo-pagination {
  margin-top: 18px;
}

.pc-woo-pagination ul.page-numbers {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: 0;
  margin: 0;
  padding: 0;
}

.pc-woo-pagination .page-numbers li {
  border: 0;
}

.pc-woo-pagination .page-numbers a,
.pc-woo-pagination .page-numbers span {
  border-radius: 9px;
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c4d9ff;
  color: #274272;
  background: #fff;
  font-weight: 600;
}

.pc-woo-pagination .page-numbers a:hover,
.pc-woo-pagination .page-numbers span.current {
  border-color: var(--pcw-primary);
  background: var(--pcw-primary);
  color: #fff;
}

.pc-woo-single-shell .product {
  margin: 0;
  display: grid;
  gap: 24px;
}

.pc-woo-single-hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
  margin: 0;
  padding: clamp(14px, 2vw, 24px);
  border-radius: 22px;
  border: 1px solid #e2eaf9;
  background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 10px 28px rgba(16, 55, 126, 0.06);
}

.pc-woo-single-media,
.pc-woo-single-summary,
.pc-woo-single-extras {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pc-woo-single-media {
  padding: 0;
}

.pc-woo-single-summary {
  position: sticky;
  top: 26px;
  padding: 18px 20px;
  border: 1px solid #e4ebf9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(19, 54, 118, 0.08);
}

.pc-woo-single-extras {
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid #e3eaf8;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.pc-woo-theme.woocommerce.single-product .site-content > .ast-container {
  max-width: 1320px;
  width: min(1320px, calc(100% - 28px));
}

.pc-woo-theme.woocommerce.single-product .ast-woocommerce-container div.product div.images,
.pc-woo-theme.woocommerce.single-product .ast-woocommerce-container div.product div.summary,
.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .images,
.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-summary.summary {
  float: none !important;
  width: 100% !important;
  clear: none !important;
  margin: 0 !important;
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .woocommerce-product-gallery {
  margin: 0;
  border: 1px solid #e2eaf8;
  border-radius: 20px;
  background: #fff;
  padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 14px 30px rgba(18, 52, 112, 0.06);
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .woocommerce-product-gallery__image {
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .woocommerce-product-gallery__image img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .woocommerce-product-gallery__trigger {
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #d7e4ff;
  background: #fff;
  color: var(--pcw-primary);
  box-shadow: 0 8px 16px rgba(19, 58, 126, 0.14);
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .woocommerce-product-gallery__trigger:hover {
  color: #fff;
  background: var(--pcw-primary);
  border-color: var(--pcw-primary);
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .flex-control-thumbs li {
  width: 100%;
  margin: 0;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid #dce8fb;
  background: #f7fbff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .flex-control-thumbs li img {
  opacity: 0.78;
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .flex-control-thumbs li:hover,
.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .flex-control-thumbs li:focus-within {
  border-color: #9abbff;
  background: #fff;
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .flex-control-thumbs li img.flex-active {
  opacity: 1;
  border-radius: 8px;
  outline: 2px solid var(--pcw-primary);
  outline-offset: -1px;
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-media .flex-control-thumbs li:has(img.flex-active) {
  border-color: var(--pcw-primary);
  background: #fff;
  box-shadow: 0 8px 16px rgba(24, 79, 183, 0.16);
}

.pc-woo-theme.woocommerce div.product .woocommerce-product-gallery__image a {
  border-radius: 14px;
  overflow: hidden;
  padding: 10px;
}

.pc-woo-theme.woocommerce div.product div.summary .product_title {
  margin: 0 0 12px;
  color: #0f1f3f;
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 2.3vw, 44px);
  line-height: 1.06;
}

.pc-woo-theme.woocommerce div.product p.price,
.pc-woo-theme.woocommerce div.product span.price {
  color: var(--pcw-primary);
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 2.2vw, 40px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.pc-woo-theme.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #dfe9fb;
  background: #f6f9ff;
}

.pc-woo-theme.woocommerce div.product form.cart .quantity .qty {
  min-height: 46px;
  min-width: 74px;
  border-radius: 12px;
  border-color: #c8d8fb;
}

.pc-woo-theme.woocommerce div.product form.cart .button {
  min-height: 46px;
  border-radius: 12px;
  background: var(--pcw-primary);
  border-color: var(--pcw-primary);
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  box-shadow: 0 10px 20px rgba(30, 94, 255, 0.24);
}

.pc-woo-theme.woocommerce div.product form.cart .button:hover,
.pc-woo-theme.woocommerce div.product form.cart .button:focus {
  background: var(--pcw-primary-dark);
  border-color: var(--pcw-primary-dark);
}

.pc-woo-theme.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 10px;
  border: 0;
  margin-bottom: 4px;
  padding: 0;
}

.pc-woo-theme.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid #d8e5fb;
  border-radius: 999px;
  background: #f3f8ff;
  margin: 0;
  padding: 0;
}

.pc-woo-theme.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.pc-woo-theme.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.pc-woo-theme.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: #1d3768;
  font-weight: 700;
  padding: 10px 18px;
}

.pc-woo-theme.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--pcw-primary);
  border-color: var(--pcw-primary);
}

.pc-woo-theme.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff;
}

.pc-woo-theme.woocommerce div.product .related h2,
.pc-woo-theme.woocommerce div.product .upsells h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  color: #10203d;
  margin-bottom: 16px;
}

.pc-woo-theme.woocommerce .related .pc-woo-name,
.pc-woo-theme.woocommerce .upsells .pc-woo-name {
  font-size: 17px;
  line-height: 1.35;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-woo-theme.woocommerce .related .pc-woo-excerpt,
.pc-woo-theme.woocommerce .upsells .pc-woo-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-woo-theme.woocommerce .related .pc-woo-meta-row,
.pc-woo-theme.woocommerce .upsells .pc-woo-meta-row {
  display: none;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-summary .woocommerce-breadcrumb {
  margin: 0 0 14px;
  color: #6f83a8;
  font-size: 12px;
  font-weight: 600;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-summary .woocommerce-product-details__short-description {
  color: #304b75;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-summary .product_meta {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e4ebf8;
  color: #405a84;
  display: grid;
  gap: 6px;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-summary .product_meta a {
  color: var(--pcw-primary);
}

.pc-woo-single-extras > * + * {
  margin-top: 24px;
}

.pc-woo-theme.woocommerce.single-product div.product .woocommerce-tabs {
  margin: 0;
  padding: 0 0 22px;
  border-bottom: 1px solid #e5edfb;
}

.pc-woo-theme.woocommerce.single-product div.product .woocommerce-tabs .panel {
  margin: 0;
  padding-top: 16px;
}

.pc-woo-theme.woocommerce.single-product div.product .woocommerce-tabs .panel h2 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: #10203d;
}

.pc-woo-theme.woocommerce.single-product div.product .woocommerce-tabs .panel > :last-child {
  margin-bottom: 0;
}

.pc-woo-theme.woocommerce.single-product div.product .related .pc-woo-card,
.pc-woo-theme.woocommerce.single-product div.product .upsells .pc-woo-card {
  box-shadow: none;
}

.pc-woo-theme.woocommerce.single-product div.product .related .pc-woo-thumb img,
.pc-woo-theme.woocommerce.single-product div.product .upsells .pc-woo-thumb img {
  height: 190px;
}

.pc-woo-theme.woocommerce.single-product div.product .related .pc-woo-actions .button,
.pc-woo-theme.woocommerce.single-product div.product .upsells .pc-woo-actions .button {
  border-radius: 10px;
  border-color: var(--pcw-primary);
  background: var(--pcw-primary);
  color: #fff;
}

.pc-woo-theme.woocommerce.single-product div.product .related .pc-woo-actions .button:hover,
.pc-woo-theme.woocommerce.single-product div.product .upsells .pc-woo-actions .button:hover {
  background: var(--pcw-primary-dark);
  border-color: var(--pcw-primary-dark);
}

.pc-woo-theme.woocommerce .cart-collaterals,
.pc-woo-theme.woocommerce .woocommerce-checkout-review-order,
.pc-woo-theme.woocommerce .woocommerce-MyAccount-content,
.pc-woo-theme.woocommerce .woocommerce-MyAccount-navigation,
.pc-woo-theme.woocommerce table.shop_table,
.pc-woo-theme.woocommerce .woocommerce-form,
.pc-woo-theme.woocommerce .woocommerce-address-fields,
.pc-woo-theme.woocommerce .woocommerce-checkout #customer_details > div,
.pc-woo-theme.woocommerce .woocommerce-additional-fields,
.pc-woo-theme.woocommerce .woocommerce-billing-fields {
  background: #fff;
  border: 1px solid var(--pcw-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(17, 54, 124, 0.08);
}

.pc-woo-theme.woocommerce table.shop_table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.pc-woo-theme.woocommerce table.shop_table th,
.pc-woo-theme.woocommerce table.shop_table td {
  border-color: #e4edff;
}

.pc-woo-theme.woocommerce table.shop_table thead th {
  font-family: "Poppins", sans-serif;
  color: #0f2750;
  background: #f4f8ff;
}

.pc-woo-theme.woocommerce .actions .input-text,
.pc-woo-theme.woocommerce .actions button,
.pc-woo-theme.woocommerce form .form-row input.input-text,
.pc-woo-theme.woocommerce form .form-row textarea,
.pc-woo-theme.woocommerce form .form-row select,
.pc-woo-theme .wc-block-components-text-input input,
.pc-woo-theme .wc-block-components-textarea,
.pc-woo-theme .wc-block-components-combobox .wc-block-components-combobox-control {
  border-radius: 10px;
  border: 1px solid #c5d8ff;
  min-height: 44px;
  background: #fff;
}

.pc-woo-theme.woocommerce form .form-row input.input-text:focus,
.pc-woo-theme.woocommerce form .form-row textarea:focus,
.pc-woo-theme.woocommerce form .form-row select:focus,
.pc-woo-theme .wc-block-components-text-input input:focus,
.pc-woo-theme .wc-block-components-textarea:focus,
.pc-woo-theme .wc-block-components-combobox .wc-block-components-combobox-control:focus {
  outline: none;
  border-color: #5f92ff;
  box-shadow: 0 0 0 3px rgba(41, 109, 255, 0.14);
}

.pc-woo-theme.woocommerce button.button,
.pc-woo-theme.woocommerce a.button,
.pc-woo-theme.woocommerce input.button,
.pc-woo-theme .wc-block-components-button,
.pc-woo-theme .wc-block-cart__submit-button,
.pc-woo-theme .wc-block-components-checkout-place-order-button {
  border-radius: 10px;
  border: 1px solid var(--pcw-primary);
  background: var(--pcw-primary);
  color: #fff;
  font-weight: 700;
  min-height: 42px;
}

.pc-woo-theme.woocommerce button.button:hover,
.pc-woo-theme.woocommerce a.button:hover,
.pc-woo-theme.woocommerce input.button:hover,
.pc-woo-theme .wc-block-components-button:hover,
.pc-woo-theme .wc-block-cart__submit-button:hover,
.pc-woo-theme .wc-block-components-checkout-place-order-button:hover {
  background: var(--pcw-primary-dark);
  border-color: var(--pcw-primary-dark);
}

.pc-woo-account-wrap {
  width: 100%;
}

.pc-woo-account-grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 16px;
}

.pc-woo-account-nav {
  padding: 18px;
}

.pc-woo-account-nav-kicker {
  margin: 0 0 4px;
  color: var(--pcw-primary);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.pc-woo-account-nav-title {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  color: #122446;
}

.pc-woo-account-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.pc-woo-account-nav ul li a {
  display: block;
  border-radius: 10px;
  border: 1px solid #d5e4ff;
  background: #f8fbff;
  color: #264678;
  text-decoration: none;
  padding: 10px 12px;
  font-weight: 600;
}

.pc-woo-account-nav ul li.is-active a,
.pc-woo-account-nav ul li a:hover {
  border-color: var(--pcw-primary);
  background: var(--pcw-primary);
  color: #fff;
}

.pc-woo-account-content {
  padding: 20px;
}

.pc-woo-theme .wp-block-woocommerce-cart,
.pc-woo-theme .wp-block-woocommerce-checkout {
  border-radius: 14px;
  border: 1px solid var(--pcw-border);
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 54, 124, 0.08);
  padding: 16px;
}

.pc-woo-theme .wc-block-components-product-badge,
.pc-woo-theme .wc-block-components-sale-badge {
  border-radius: 999px;
  background: #edf3ff;
  color: var(--pcw-primary);
  border: 1px solid #bfceee;
}

.pc-woo-theme .wc-block-components-totals-wrapper,
.pc-woo-theme .wc-block-checkout__sidebar,
.pc-woo-theme .wc-block-cart__sidebar {
  border-radius: 12px;
  border: 1px solid #d7e3ff;
  background: #f8fbff;
  padding: 14px;
}

.pc-woo-theme .wc-block-components-checkout-step,
.pc-woo-theme .wc-block-checkout__payment-method,
.pc-woo-theme .wc-block-checkout__shipping-option {
  border: 1px solid #d9e6ff;
  border-radius: 12px;
  background: #fff;
}

.pc-woo-theme .wc-block-components-checkout-step__heading,
.pc-woo-theme .wc-block-components-checkout-step__title {
  font-family: "Poppins", sans-serif;
  color: #153160;
}

.pc-woo-theme .woocommerce-message,
.pc-woo-theme .woocommerce-info,
.pc-woo-theme .woocommerce-error {
  border-radius: 12px;
  border: 1px solid #d2e0ff;
  background: #f6faff;
  color: #16305c;
}

.pc-woo-theme .woocommerce-error {
  border-color: #ffc6ce;
  background: #fff6f7;
  color: #8f1c2e;
}

.pc-woo-theme .woocommerce-message {
  border-color: #bee7c8;
  background: #f4fff6;
  color: #1d5f31;
}

@media (max-width: 1200px) {
  .pc-woo-theme.woocommerce:not(.single-product) ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .pc-woo-products-grid,
  .pc-woo-products-grid.columns-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pc-woo-single-hero {
    grid-template-columns: 1fr;
  }

  .pc-woo-single-summary {
    position: static;
  }
}

@media (max-width: 920px) {
  .pc-woo-theme.woocommerce:not(.single-product) ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-woo-theme.woocommerce.single-product .site-content > .ast-container {
    width: min(1320px, calc(100% - 20px));
  }

  .pc-woo-theme .ast-woocommerce-container {
    width: min(1320px, calc(100% - 20px));
    margin-top: 18px;
  }

  .pc-woo-shell {
    padding: 16px;
  }

  .pc-woo-single-hero {
    padding: 14px;
  }

  .pc-woo-single-extras {
    padding: 16px;
  }

  .pc-woo-hero {
    padding: 14px;
  }

  .pc-woo-title {
    font-size: clamp(26px, 7.2vw, 34px);
  }

  .pc-woo-products-grid,
  .pc-woo-products-grid.columns-4,
  .pc-woo-products-grid.columns-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-woo-account-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pc-woo-theme.woocommerce:not(.single-product) ul.products {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pc-woo-theme.woocommerce:not(.single-product) .sp-rel-card-img {
    min-height: 150px;
    padding: 14px;
  }

  .pc-woo-theme.woocommerce:not(.single-product) .sp-rel-card-img img {
    max-height: 120px;
  }

  .pc-woo-theme.woocommerce:not(.single-product) .sp-rel-name {
    font-size: 13.5px;
  }

  .pc-woo-theme.woocommerce:not(.single-product) .sp-rel-price .now {
    font-size: 15px;
  }

  .pc-woo-theme.woocommerce.single-product .site-content > .ast-container {
    width: calc(100% - 16px);
  }

  .pc-woo-theme.woocommerce div.product div.summary .product_title {
    font-size: clamp(28px, 8.2vw, 34px);
  }

  .pc-woo-theme.woocommerce div.product p.price,
  .pc-woo-theme.woocommerce div.product span.price {
    font-size: clamp(28px, 8.6vw, 34px);
  }

  .pc-woo-theme.woocommerce div.product form.cart {
    padding: 12px;
  }

  .pc-woo-theme.woocommerce div.product form.cart .button {
    width: 100%;
  }

  .pc-woo-toolbar {
    align-items: stretch;
  }

  .pc-woo-ordering,
  .pc-woo-ordering .orderby {
    width: 100%;
  }

  .pc-woo-products-grid,
  .pc-woo-products-grid.columns-4,
  .pc-woo-products-grid.columns-3,
  .pc-woo-products-grid.columns-2 {
    grid-template-columns: 1fr;
  }

  .pc-woo-thumb img {
    height: 180px;
  }

.pc-woo-theme.woocommerce table.shop_table_responsive tr td {
    text-align: left;
  }
}

/* Single Product Reference Layout */
.pc-woo-theme.woocommerce.single-product .site-content {
  background: #f4f7fc;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-main-card {
  border: 1px solid #e1e8f5;
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(16, 49, 114, 0.06);
}

.pc-woo-theme.woocommerce.single-product .pc-sp-breadcrumb-wrap {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8eef8;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-breadcrumb-wrap .woocommerce-breadcrumb {
  margin: 0;
  font-size: 13px;
  color: #7082a6;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-breadcrumb-wrap .woocommerce-breadcrumb a {
  color: #5f759d;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-breadcrumb-sep {
  margin: 0 8px;
  color: #a2b1cc;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-main-card .pc-woo-single-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-media {
  position: relative;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-media-tools {
  position: absolute;
  left: -10px;
  top: 56px;
  z-index: 5;
  display: grid;
  gap: 10px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-media-tool {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #dce5f6;
  background: #fff;
  color: #5d769f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 14px rgba(24, 58, 124, 0.08);
  cursor: default;
  padding: 0;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-media-tool .dashicons {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-media .woocommerce-product-gallery {
  border: 1px solid #e3e9f6;
  border-radius: 14px;
  background: #fff;
  padding: 20px 18px 14px;
  box-shadow: none;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-media .woocommerce-product-gallery__image {
  background: #fff;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-media .woocommerce-product-gallery__image img {
  max-height: 440px;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-media .onsale {
  left: 16px;
  top: 16px;
  min-height: 0;
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: #f33f67;
  margin: 0;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-media .woocommerce-product-gallery__trigger {
  right: 16px;
  top: 16px;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-media .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-media .flex-control-thumbs li {
  border: 1px solid #e0e8f6;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-media .flex-control-thumbs li img {
  border-radius: 6px;
  opacity: 1;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-media .flex-control-thumbs li img.flex-active {
  outline: 2px solid #1e5eff;
  outline-offset: -2px;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-summary {
  position: static;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 8px 0 0;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-stock {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: #18a45c;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-stock.is-out {
  color: #d4475b;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-summary .product_title {
  margin: 0 0 10px;
  color: #12284d;
  font-size: clamp(38px, 2.8vw, 56px);
  line-height: 1.05;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-rating-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6a7ea4;
  font-size: 14px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-rating .star-rating {
  margin: 0;
  color: #ffb300;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-rating-value {
  font-weight: 700;
  color: #1d355f;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-review-link,
.pc-woo-theme.woocommerce.single-product .pc-sp-no-rating {
  color: #6a7ea4;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-sold {
  color: #6a7ea4;
  font-size: 14px;
  padding-left: 12px;
  border-left: 1px solid #dbe5f6;
}

.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-summary p.price,
.pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-summary span.price {
  margin-bottom: 8px;
  color: #1e5eff;
  font-size: clamp(42px, 3vw, 62px);
  line-height: 1.02;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-tax-note {
  margin: 0;
  color: #6d82a7;
  font-size: 14px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-emi-note {
  margin: 4px 0 14px;
  color: #6d82a7;
  font-size: 14px;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-summary .woocommerce-product-details__short-description {
  color: #2c4772;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-feature-chips {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-feature-chips li {
  border: 1px solid #d8e5fb;
  border-radius: 999px;
  background: #f6faff;
  color: #385581;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
}

.pc-woo-theme.woocommerce.single-product .product-type-simple form.cart {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.pc-woo-theme.woocommerce.single-product .product-type-simple form.cart .quantity {
  margin: 0;
}

.pc-woo-theme.woocommerce.single-product .product-type-simple form.cart .quantity .qty {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  border-color: #ccd9f3;
  color: #19345e;
}

.pc-woo-theme.woocommerce.single-product .product-type-simple form.cart .single_add_to_cart_button,
.pc-woo-theme.woocommerce.single-product .product-type-simple form.cart .pc-buy-now-button {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
}

.pc-woo-theme.woocommerce.single-product .product-type-simple form.cart .single_add_to_cart_button {
  background: #1e5eff;
  border-color: #1e5eff;
  color: #fff;
  box-shadow: none;
}

.pc-woo-theme.woocommerce.single-product .product-type-simple form.cart .pc-buy-now-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1e5eff;
  background: #fff;
  color: #1e5eff;
  font-weight: 700;
  text-decoration: none;
}

.pc-woo-theme.woocommerce.single-product .product-type-simple form.cart .pc-buy-now-button:hover {
  background: #edf3ff;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-service-points {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid #e5edf9;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-service-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-service-item .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
  color: #1e5eff;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-service-item strong {
  display: block;
  color: #1b365f;
  font-size: 13px;
  line-height: 1.3;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-service-item small {
  display: block;
  color: #7a8fac;
  font-size: 12px;
  line-height: 1.4;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-summary .product_meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e6edf9;
  color: #5f7499;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-summary .product_meta a {
  color: #1e5eff;
}

.pc-woo-theme.woocommerce.single-product .pc-woo-single-extras {
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-shell,
.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell {
  border: 1px solid #e1e8f5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 50, 112, 0.05);
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-shell {
  padding: 20px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-shell .woocommerce-tabs {
  border: 0;
  padding: 0 0 16px;
  margin: 0;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-shell .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid #e6edf8;
  margin: 0 0 12px;
  padding: 0;
  gap: 24px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-shell .woocommerce-tabs ul.tabs li {
  border: 0;
  border-radius: 0;
  background: transparent;
  margin: 0;
  padding: 0;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-shell .woocommerce-tabs ul.tabs li a {
  color: #5f759d;
  font-weight: 700;
  padding: 0 0 10px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-shell .woocommerce-tabs ul.tabs li.active a {
  color: #1e5eff;
  border-bottom: 2px solid #1e5eff;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-shell .woocommerce-tabs .panel {
  padding-top: 0;
  margin: 0;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-shell .woocommerce-tabs .panel p {
  color: #304971;
  font-size: 17px;
  line-height: 1.7;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 18px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-highlight-card {
  border: 1px solid #e6edf9;
  border-radius: 12px;
  background: #f8fbff;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-highlight-card .dashicons {
  width: 21px;
  height: 21px;
  font-size: 21px;
  color: #1e5eff;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-highlight-card h3 {
  margin: 0 0 3px;
  color: #1f3962;
  font-size: 18px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-highlight-card p {
  margin: 0;
  color: #677da3;
  font-size: 13px;
  line-height: 1.5;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid #e7edf8;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-col {
  padding-right: 12px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-col:not(:last-child) {
  border-right: 1px solid #e7edf8;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-col h3 {
  margin: 0 0 12px;
  color: #142d55;
  font-family: "Poppins", sans-serif;
  font-size: 33px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-col ul li {
  color: #2b436d;
  font-size: 15px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-col ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1e5eff;
  position: absolute;
  left: 0;
  top: 8px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-overview-col .pc-sp-muted {
  margin: 0;
  color: #6c82a8;
  font-size: 14px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-spec-table .shop_attributes {
  margin: 0;
  border: 0;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-spec-table .shop_attributes th,
.pc-woo-theme.woocommerce.single-product .pc-sp-spec-table .shop_attributes td {
  border: 0;
  border-bottom: 1px solid #edf2fa;
  padding: 9px 0;
  font-size: 14px;
  vertical-align: top;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-spec-table .shop_attributes th {
  color: #5f759d;
  font-weight: 600;
  width: 42%;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-spec-table .shop_attributes td {
  color: #1f3a64;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell {
  margin-top: 16px;
  padding: 18px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-head h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  color: #142d55;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-head a {
  color: #1e5eff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .related.products {
  margin: 0;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .related.products > h2 {
  display: none;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-products-grid {
  gap: 12px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-card {
  border-radius: 10px;
  border: 1px solid #e3e9f6;
  box-shadow: none;
  background: #fff;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-thumb {
  background: #fff;
  border-bottom: 1px solid #ecf1f9;
  padding: 12px 12px 10px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-thumb img {
  height: 150px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-badge {
  top: 8px;
  left: 8px;
  background: #f33f67;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-card-body {
  gap: 7px;
  padding: 10px 10px 12px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-brand {
  display: none;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-name {
  min-height: 0;
  font-size: 15px;
  line-height: 1.35;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-excerpt {
  display: none;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-meta-row {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-rating .star-rating {
  font-size: 12px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-reviews {
  font-size: 12px;
  color: #7e91b0;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-price {
  font-size: 28px;
  color: #11284d;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-actions .button,
.pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-actions .added_to_cart {
  border-radius: 8px;
  border: 1px solid #1e5eff;
  background: #1e5eff;
  color: #fff;
  font-size: 16px;
  min-height: 40px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-shell {
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto 34px;
  border: 1px solid #e1e8f5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 50, 112, 0.05);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid #dbe6fb;
  background: #f3f8ff;
  color: #1e5eff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-icon .dashicons {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-content h3 {
  margin: 0 0 3px;
  color: #1a345f;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-content p {
  margin: 0;
  color: #6a7fa4;
  font-size: 14px;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-form input[type="email"] {
  width: min(340px, 38vw);
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid #d0dcf3;
  padding: 0 14px;
  color: #1f3a63;
}

.pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-form button {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid #1e5eff;
  background: #1e5eff;
  color: #fff;
  font-weight: 700;
  padding: 0 18px;
}

@media (max-width: 1200px) {
  .pc-woo-theme.woocommerce.single-product .pc-sp-main-card .pc-woo-single-hero {
    grid-template-columns: 1fr;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-media-tools {
    left: 8px;
    top: 52px;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-overview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-overview-col:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #e7edf8;
    padding-bottom: 12px;
  }
}

@media (max-width: 920px) {
  .pc-woo-theme.woocommerce.single-product .pc-sp-main-card {
    padding: 14px;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-feature-chips {
    gap: 8px;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-service-points {
    grid-template-columns: 1fr;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-highlight-row {
    grid-template-columns: 1fr;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-shell {
    width: min(1320px, calc(100% - 20px));
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-form {
    width: 100%;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-form input[type="email"] {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .pc-woo-theme.woocommerce.single-product .pc-sp-main-card .pc-woo-single-hero {
    gap: 16px;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-media-tools {
    display: none;
  }

  .pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-summary .product_title {
    font-size: clamp(30px, 9vw, 38px);
  }

  .pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-summary p.price,
  .pc-woo-theme.woocommerce.single-product div.product .pc-woo-single-summary span.price {
    font-size: clamp(34px, 10vw, 42px);
  }

  .pc-woo-theme.woocommerce.single-product .product-type-simple form.cart {
    grid-template-columns: 1fr;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-related-shell .pc-woo-products-grid {
    grid-template-columns: 1fr;
  }

  .pc-woo-theme.woocommerce.single-product .pc-sp-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
}
