@charset "UTF-8";
/**
 * Mircato Pro Single Product Styles - REDESIGN V3 (ThemeForest Ready)
 * 
 * Components:
 * 1. Design Tokens & Variables
 * 2. Main Layout (Grid/Flex)
 * 3. Product Gallery & Thumbnails
 * 4. Product Summary & Details
 * 5. Add to Cart & Variations
 * 6. Tabs & Additional Information
 * 7. Sticky Action Bar
 * 8. Related & Up-sell Products
 * 9. Responsive Overrides (Consolidated)
 */
/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
@import url("checkout-variables.css");
:root {
  --mp-p-title-size: 2.2rem;
  --mp-p-price-size: 1.6rem;
  --mp-p-card-radius: 12px;
  --mp-p-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  --mp-p-accent: #1a1a1a;
  --mp-p-blue-accent: #6366f1;
  --mp-color-primary: #6366f1;
  --mp-color-secondary: #ec4899;
  --mp-p-black: #1a1a1a;
  --mp-p-gray-light: #f8f9fa;
  --mp-p-border: #eeeeee;
}

body.single-product {
  background-color: var(--mp-p-gray-light);
}

/* --------------------------------------------------------------------------
   2. MAIN LAYOUT (DESKTOP)
   -------------------------------------------------------------------------- */
body.woocommerce.single-product div.product {
  display: block;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 10px;
}

body .mircato-product-widget-row {
  margin-bottom: 60px;
}

body .mircato-product-widget-row:last-child {
  margin-bottom: 0;
}

body .mircato-product-widget-row .mircato-section-title {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

body .mircato-product-widget-row .mircato-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--mp-color-primary, #6366f1);
}

body .mircato-product-main-area {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr;
  gap: 25px;
  align-items: start;
  margin-bottom: 60px;
}

/* Gallery Right — swap gallery and summary */
body.mircato-gallery-gallery-right .mircato-product-main-area {
  direction: rtl;
}

body.mircato-gallery-gallery-right .mircato-product-main-area > * {
  direction: ltr;
}

/* Full Width — stack vertically */
body.mircato-gallery-full-width .mircato-product-main-area {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   3. PRODUCT GALLERY & THUMBNAILS
   -------------------------------------------------------------------------- */
body .mircato-product-main-area .woocommerce-product-gallery {
  background: #fff;
  padding: 30px;
  border-radius: var(--mp-p-card-radius);
  box-shadow: var(--mp-p-shadow);
  border: 1px solid var(--mp-p-border);
  position: relative;
  overflow: hidden;
}

body .woocommerce-product-gallery__wrapper {
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  margin: 0;
}

body .woocommerce-product-gallery .flex-viewport {
  border-radius: var(--mp-p-card-radius);
  overflow: hidden;
}

body .woocommerce-product-gallery__image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

body .woocommerce-product-gallery__image img {
  border-radius: var(--mp-p-card-radius);
  object-fit: contain;
  max-height: 700px;
  margin: 0 auto;
}

/* Premium Navigation Arrows */
body .mircato-slider-nav,
body .swiper-button-next,
body .swiper-button-prev {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  color: var(--mp-p-black);
  z-index: 100;
  display: none;
  /* JS Controlled */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body .mircato-slider-nav:hover,
body .swiper-button-next:hover,
body .swiper-button-prev:hover {
  background: var(--mp-p-black);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

body .mircato-slider-nav.prev,
body .swiper-button-prev {
  left: 20px;
}

body .mircato-slider-nav.next,
body .swiper-button-next {
  right: 20px;
}

/* Thinner Chevron */
body .mircato-slider-nav::after,
body .swiper-button-next::after,
body .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 300;
}

/* Premium Magnifier Trigger */
body .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 52px;
  right: 70px;
  z-index: 99;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-indent: -9999px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3H5a2 2 0 0 0-2 2v3'/%3E%3Cpath d='M21 8V5a2 2 0 0 0-2-2h-3'/%3E%3Cpath d='M3 16v3a2 2 0 0 0 2 2h3'/%3E%3Cpath d='M16 21h3a2 2 0 0 0 2-2v-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

body .woocommerce-product-gallery__trigger:hover {
  transform: translateY(-3px) scale(1.08);
}

/* Premium Sale Flash */
body .woocommerce-product-gallery .onsale {
  position: absolute;
  top: 52px;
  left: 70px;
  z-index: 20;
  background: #dc3545;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Premium Thumbnails */
body .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 20px auto 0;
  padding: 15px 5px;
  list-style: none;
  overflow-x: auto;
  max-width: 408px;
  scrollbar-width: none;
}

body .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
  display: none;
}

body .woocommerce-product-gallery .flex-control-thumbs li {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #fff;
  padding: 2px;
}

body .woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  transition: all 0.3s ease;
}

body .woocommerce-product-gallery .flex-control-thumbs li.active-thumb {
  border-color: #0d6efd;
  border-width: 2px;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.15);
  transform: translateY(-3px);
}

/* Thumbnail Overflow Indicators */
body .mircato-gallery-indicator {
  position: absolute;
  bottom: 25px;
  /* Aligned with thumbnails */
  width: 60px;
  height: 90px;
  /* Match thumbnail height */
  pointer-events: none;
  z-index: 50;
  /* Above thumbnails */
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

body .mircato-gallery-indicator.left {
  left: calc(50% - 240px);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 20%, rgba(255, 255, 255, 0) 100%);
}

body .mircato-gallery-indicator.right {
  right: calc(50% - 240px);
  background: linear-gradient(to left, rgba(255, 255, 255, 0.98) 20%, rgba(255, 255, 255, 0) 100%);
}

body .has-more-left .mircato-gallery-indicator.left,
body .has-more-right .mircato-gallery-indicator.right {
  opacity: 1;
}

body .mircato-gallery-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: translateY(-50%);
}

body .mircato-gallery-indicator.left::after {
  left: 15px;
  transform: translateY(-50%) rotate(-135deg);
}

body .mircato-gallery-indicator.right::after {
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

/* --------------------------------------------------------------------------
   4. PRODUCT SUMMARY & DETAILS
   -------------------------------------------------------------------------- */
/* Base layout for entry-summary without !important */
html body.single-product div.product .summary.entry-summary {
  position: sticky;
  margin-top: 0;
  background: #fff;
  padding: 30px;
  border-radius: var(--mp-p-card-radius);
  box-shadow: var(--mp-p-shadow);
  border: 1px solid var(--mp-p-border);
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 10;
}

/* High specificity title targeting */
html body.single-product div.product .product_title,
html body.single-product div.product h1.product_title {
  font-family: "Playfair Display", serif;
  font-size: var(--mp-p-title-size);
  font-weight: 700;
  margin-top: -15px;
  color: var(--mp-p-black);
  line-height: 1.1;
  letter-spacing: -1px;
}

body .summary .price {
  font-size: var(--mp-p-price-size);
  color: var(--mp-p-black);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

body .summary .price ins {
  color: var(--mp-p-blue-accent);
  text-decoration: none;
}

body .summary .star-rating {
  font-size: 1rem;
  margin-bottom: -5px;
}

body .mircato-rating-text-only {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffc107;
  /* Orange/Yellow from star color */
  display: inline-block;
  vertical-align: middle;
}

body .mircato-rating-text-only .rating,
body .mircato-rating-text-only .count {
  font-weight: 700;
}

/* Ensure review link is blue and stands out */
body .woocommerce-review-link {
  color: var(--color-primary, #6366f1);
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 10px;
  text-decoration: none;
}

body .woocommerce-review-link:hover {
  text-decoration: underline;
}

/* Global Star Rating Moved to mircato-woocommerce-bundle.css for cross-page compatibility */
body .woocommerce-product-details__short-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  border-bottom: 1px solid var(--mp-p-border);
  padding-bottom: 20px;
}

/* Premium USPs (Trust Badges) */
body .mircato-p-usps {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--mp-p-border);
}

body .mircato-p-usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
  transition: all 0.3s ease;
}

body .mircato-p-usp-item i {
  font-size: 20px;
  color: #999;
}

body .mircato-p-usp-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #777;
}

body .mircato-p-usp-item:hover {
  transform: translateY(-2px);
}

body .mircato-p-usp-item:hover i,
body .mircato-p-usp-item:hover span {
  color: var(--mp-p-black);
}

/* --------------------------------------------------------------------------
   5. ADD TO CART & VARIATIONS
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   5. ADD TO CART & VARIATIONS
   -------------------------------------------------------------------------- */
html body.single-product {
  /* --- VERTICAL (STACKED) LAYOUT --- */
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary {
  display: grid;
  grid-template-columns: 160px auto;
  gap: 15px 15px;
  align-items: center;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .product_title {
  order: 1;
  grid-column: 1/-1;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .woocommerce-product-rating {
  order: 2;
  grid-column: 1/-1;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .price {
  order: 3;
  grid-column: 1/-1;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .woocommerce-product-details__short-description {
  order: 4;
  grid-column: 1/-1;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .variations {
  order: 10;
  grid-column: 1/-1;
  width: 100%;
  margin-bottom: 5px;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary form.cart {
  display: contents;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary form.cart .single_variation_wrap,
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary form.cart .woocommerce-variation,
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary form.cart .woocommerce-variation-add-to-cart {
  display: contents;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary form.cart .woocommerce-variation-price {
  order: 3;
  grid-column: 1/-1;
  margin-bottom: 5px;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary form.cart .woocommerce-variation-price:empty {
  display: none;
  margin: 0;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary form.cart .woocommerce-variation-description {
  order: 4;
  grid-column: 1/-1;
  margin-bottom: 5px;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary form.cart .woocommerce-variation-description:empty {
  display: none;
  margin: 0;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary form.cart .quantity {
  grid-column: 1;
  order: 20;
  margin: 0;
  width: 160px;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .stock,
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .out-of-stock,
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .woocommerce-variation-availability,
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .availability,
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary > div:not(.product_title):not(.price):not(.woocommerce-product-rating):not(.woocommerce-product-details__short-description):not(form):not(.product_meta):not(.mircato-p-usps):not(.elementor):not(.mircato-reviews-section),
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary > p:not(.price):not(.is-active):not(.product_title):not(.woocommerce-product-details__short-description) {
  grid-column: 2;
  order: 21;
  margin: 0;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 50px;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .woocommerce-variation-availability {
  margin: 0;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .woocommerce-variation-availability .stock {
  margin: 0;
  min-height: auto;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .single_add_to_cart_button {
  grid-column: 1/-1;
  order: 30;
  width: 100%;
  margin-top: 5px;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .mircato-wishlist-btn {
  grid-column: 1/-1;
  order: 31;
  justify-self: center;
  margin-top: 10px;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .mircato-p-usps {
  grid-column: 1/-1;
  order: 50;
  margin-top: 20px;
}
html body.single-product.mircato-atc-layout-vertical div.product div.summary.entry-summary .product_meta {
  grid-column: 1/-1;
  order: 60;
  margin-top: 20px;
  border-top: 1px solid var(--mp-color-light-dark);
  padding-top: 15px;
}
html body.single-product {
  /* --- HORIZONTAL (SINGLE ROW) LAYOUT --- */
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary {
  display: flex;
  flex-direction: column;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary .product_title {
  order: 1;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary .woocommerce-product-rating {
  order: 2;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary .price {
  order: 3;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary .woocommerce-product-details__short-description {
  order: 4;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary .stock,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary .out-of-stock,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary .woocommerce-variation-availability,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary .availability,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary > div:not(.product_title):not(.price):not(.woocommerce-product-rating):not(.woocommerce-product-details__short-description):not(form):not(.product_meta):not(.mircato-p-usps):not(.elementor):not(.mircato-reviews-section),
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary > p:not(.price):not(.is-active):not(.product_title):not(.woocommerce-product-details__short-description) {
  order: 19;
  width: 100%;
  display: flex;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart {
  order: 20;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: 100%;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .variations {
  flex: 0 0 100%;
  order: 1;
  margin-bottom: 10px;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .single_variation_wrap,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .woocommerce-variation,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .woocommerce-variation-add-to-cart {
  display: contents;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .woocommerce-variation-description,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .woocommerce-variation-price,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .woocommerce-variation-availability,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .stock,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .out-of-stock {
  order: 2;
  flex: 0 0 100%;
  width: 100%;
  margin: 0 0 10px 0;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .woocommerce-variation-description:empty,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .woocommerce-variation-price:empty,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .woocommerce-variation-availability:empty,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .stock:empty,
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .out-of-stock:empty {
  display: none;
  margin: 0;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .woocommerce-variation-availability .stock {
  margin: 0;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .woocommerce-variation-availability .stock:empty {
  display: none;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .quantity {
  order: 3;
  flex: 0 0 auto;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .single_add_to_cart_button {
  order: 4;
  flex: 1 1 auto;
  width: auto;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .mircato-wishlist-btn {
  order: 10;
  flex: 0 0 100%;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .mircato-wishlist-btn i {
  font-size: 20px;
  color: #555;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary form.cart .mircato-wishlist-btn:hover i {
  color: var(--mp-color-primary);
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary .mircato-p-usps {
  order: 50;
  margin-top: 20px;
}
html body.single-product.mircato-atc-layout-horizontal div.product div.summary.entry-summary .product_meta {
  order: 60;
  margin-top: 20px;
  border-top: 1px solid var(--mp-color-light-dark);
  padding-top: 15px;
}

body .variations tbody {
  display: flex;
  flex-direction: column;
}

body .variations tr {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 20px;
}

body .variations tr:last-child {
  border-bottom: none;
}

/* Explicit Ordering: Color (1) -> Size (2) -> Others (default 10) */
body .variations tr {
  order: 10;
}

body .variations tr[class*=attribute-pa_color],
body .variations tr[class*=attribute_color] {
  order: 1;
}

body .variations tr[class*=attribute-pa_size],
body .variations tr[class*=attribute_size] {
  order: 2;
}

body .variations td {
  padding: 0;
  display: flex;
  align-items: center;
}

body .variations td.label {
  flex: 0 0 100px;
  max-width: 100px;
  min-width: 100px;
}

body .variations td.value {
  flex: 1;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}

body .variations .label {
  width: auto;
  font-weight: 700;
  color: var(--mp-p-black);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 0;
  padding-right: 0;
}

body .variations select {
  width: auto;
  min-width: 200px;
  border-radius: 8px;
  border: 1.5px solid var(--mp-p-border);
  padding: 10px 15px;
  background-color: #fff;
  cursor: pointer;
  vertical-align: middle;
}

/* Premium Reset Link */
body .reset_variations {
  display: inline-block;
  margin-left: 10px;
  color: var(--mp-p-black);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  vertical-align: middle;
  visibility: visible;
  padding-bottom: 1px;
  white-space: nowrap;
}

body .reset_variations:hover {
  color: var(--mp-p-black);
  border-bottom-color: var(--mp-p-black);
}

body .mircato-swatches-wrapper,
body .mircato-swatches {
  display: contents;
}

/* Button wrapper should be transparent to grid in vertical mode */
body .mircato-atc-layout-horizontal .mircato-qv-atc .variations_button {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}

body .mircato-qv-atc .variations_button .quantity {
  margin-bottom: 0;
}

/* Primary ATC Button */
body .summary form.cart .single_add_to_cart_button {
  width: 100%;
  height: 52px;
  background-color: var(--mp-color-primary, #6366f1);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-md, 8px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}

body .summary form.cart .single_add_to_cart_button:hover {
  background-color: var(--mp-color-accent, var(--mp-color-accent, #f59e0b));
  background-image: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Stock Indicator */
body .stock.in-stock {
  display: inline-flex;
  align-items: center;
  background: #f0fff4;
  color: #22543d;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: -15px;
}

body .stock.in-stock::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #38a169;
  border-radius: 50%;
  margin-right: 10px;
}

/* --------------------------------------------------------------------------
   6. TABS & ADDITIONAL INFORMATION
   -------------------------------------------------------------------------- */
.woocommerce-tabs {
  grid-column: 1/-1;
  margin-top: 60px;
  margin-bottom: 80px;
  background: #fff;
  padding: 50px;
  border-radius: var(--mp-p-card-radius);
  border: 1px solid var(--mp-p-border);
}

.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 40px;
  padding: 0;
  margin: 0 0 40px 0;
  list-style: none;
  border-bottom: 2px solid var(--mp-p-gray-light);
}

.woocommerce-tabs ul.tabs li {
  padding-bottom: 15px;
  position: relative;
}

.woocommerce-tabs ul.tabs li a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #999;
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--mp-p-black);
}

.woocommerce-tabs ul.tabs li.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--mp-p-black);
}

/* Hide Redundant Tab Headings */
.woocommerce-tabs #tab-description h2,
.woocommerce-tabs #tab-additional_information h2 {
  display: none;
}

/* Additional Information Table */
.woocommerce-product-attributes.shop_attributes {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--mp-p-border);
}

.woocommerce-product-attributes.shop_attributes th,
.woocommerce-product-attributes.shop_attributes td {
  padding: 15px 25px;
  border-bottom: 1px solid var(--mp-p-gray-light);
  vertical-align: middle;
}

.woocommerce-product-attributes.shop_attributes tr:last-child th,
.woocommerce-product-attributes.shop_attributes tr:last-child td {
  border-bottom: none;
}

.woocommerce-product-attributes.shop_attributes th {
  width: 200px;
  font-weight: 700;
  color: var(--mp-p-black);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  background: #fafafa;
  border-right: 1px solid var(--mp-p-border);
}

.woocommerce-product-attributes.shop_attributes td {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.woocommerce-product-attributes.shop_attributes td p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   7. STICKY ACTION BAR
   -------------------------------------------------------------------------- */
body .mircato-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--mp-p-border);
  padding: 10px 0;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: none;
  /* JS Controlled */
}

body .mircato-sticky-atc.visible {
  transform: translateY(0);
  display: block;
}

body .mircato-sticky-atc-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

body .mircato-sticky-product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

body .mircato-sticky-img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

body .mircato-sticky-title h4 {
  margin: 0 0 2px 0;
  line-height: 1.2;
}

body .mircato-sticky-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   8. RELATED & UP-SELL PRODUCTS
   -------------------------------------------------------------------------- */
body .mircato-related-slider,
body .up-sells.products,
body .related.products {
  grid-column: 1/-1;
  margin-top: 60px;
  padding-bottom: 60px;
}

body .mircato-related-slider h2,
body .up-sells.products > h2,
body .related.products > h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}

body .related.products > h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #f59e0b;
  margin: 15px auto 0;
}

/* Related card polish */
body .mircato-related-slider .product {
  padding: 12px;
  text-align: center;
}

body .mircato-related-slider .product h2 {
  font-size: 1rem;
  height: 2.6em;
  overflow: hidden;
}

body.single-product .mircato-related-slider .button {
  height: auto;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  background-color: var(--mp-color-primary, #6366f1);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

body.single-product .mircato-related-slider .button:hover {
  background-color: var(--mp-color-text-main, #111);
  transform: translateY(-2px);
}

/* Related Hiding Logic */
body .mircato-related-slider.arrows-hidden .swiper-button-next,
body .mircato-related-slider.arrows-hidden .swiper-button-prev,
body .mircato-related-slider.arrows-hidden .mircato-slider-nav {
  display: none;
}

/* --------------------------------------------------------------------------
   9. RESPONSIVE OVERRIDES (CONSOLIDATED)
   -------------------------------------------------------------------------- */
/* TABLET & MOBILE (991px) */
@media (max-width: 991px) {
  body .mircato-product-main-area {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  body .mircato-product-main-area .woocommerce-product-gallery {
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0 15px;
    /* Added side padding to reduce width further */
  }
  body .woocommerce-product-gallery__image img {
    border-radius: 0;
    max-height: 400px;
    /* Reduced from 450px */
  }
  body .summary.entry-summary {
    margin: 30px 0 0;
    padding: 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  body .product_title {
    font-size: 1.6rem;
  }
  body .woocommerce-tabs {
    margin-top: 30px;
    padding: 25px;
  }
}
/* MOBILE (767px) */
@media (max-width: 767px) {
  body.woocommerce.single-product div.product {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  body .container {
    padding: 0 8px;
  }
  /* Header sync */
  body.single-product .site-header .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  /* Gallery repositioning */
  body .woocommerce-product-gallery .onsale {
    top: 55px;
    left: 55px;
  }
  body .woocommerce-product-gallery__trigger {
    top: 55px;
    right: 55px;
  }
  /* Thumbnails mobile */
  body .woocommerce-product-gallery .flex-control-thumbs {
    max-width: calc(100% - 100px);
    /* Constrain to leave space for arrows */
    padding: 10px 5px;
    margin: 20px auto 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15px, black calc(100% - 15px), transparent);
    mask-image: linear-gradient(to right, transparent, black 15px, black calc(100% - 15px), transparent);
  }
  body .woocommerce-product-gallery .flex-control-thumbs li {
    width: 60px;
    height: 60px;
  }
  body .mircato-gallery-indicator {
    width: 45px;
    background: none;
    height: 60px;
    bottom: 10px;
    /* Centered: (80px container height - 60px arrow height) / 2 */
  }
  body .mircato-gallery-indicator.left {
    left: 0px;
    /* Reset center-calculation for mobile */
  }
  body .mircato-gallery-indicator.right {
    right: 0px;
    /* Reset center-calculation for mobile */
  }
  body .mircato-gallery-indicator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: translateY(-50%);
  }
  /* Thumbnails mobile */
  body .woocommerce-product-gallery .flex-control-thumbs {
    max-width: calc(100% - 60px);
    padding: 5px;
    margin: 20px auto 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15px, black calc(100% - 15px), transparent);
    mask-image: linear-gradient(to right, transparent, black 15px, black calc(100% - 15px), transparent);
  }
  body .woocommerce-product-gallery .flex-control-thumbs li {
    width: 60px;
    height: 60px;
  }
  body .mircato-gallery-indicator {
    width: 45px;
    background: none;
    height: 60px;
    bottom: 5px;
    /* Aligned with 60px thumbs + 5px padding */
  }
  body .mircato-gallery-indicator.left {
    left: 0px;
  }
  body .mircato-gallery-indicator.right {
    right: 0px;
  }
  /* Mobile ATC Layout */
  body.mircato-atc-layout-horizontal .summary form.cart {
    gap: 8px;
  }
  body.mircato-atc-layout-horizontal .summary form.cart .quantity {
    width: 130px;
    height: 38px;
    padding: 5px;
  }
  body.mircato-atc-layout-horizontal .summary form.cart .single_add_to_cart_button {
    height: 36px;
    font-size: 0.85rem;
  }
  /* Sticky Bar Mobile - Enforce Horizontal Layout */
  body .mircato-sticky-actions form.cart {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    width: 100%;
    justify-content: flex-end;
  }
  body .mircato-sticky-img {
    display: none;
  }
  body .mircato-sticky-title h4 {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.85rem;
  }
  body .mircato-sticky-actions .quantity {
    width: 110px;
    height: 36px;
    min-width: 90px;
    flex: 0 0 110px;
  }
  body .mircato-sticky-actions .quantity .minus,
  body .mircato-sticky-actions .quantity .plus {
    background: var(--color-primary, #6366f1);
    color: #fff;
    width: 28px;
    height: 100%;
    flex: 0 0 23px;
  }
  body .mircato-sticky-actions .quantity input.qty {
    width: 34px;
    font-size: 0.9rem;
    height: 30px;
    margin: 2px;
  }
  body .mircato-sticky-actions .button,
  body .mircato-sticky-actions .mircato-button {
    flex: 1 1 auto;
    width: auto;
    height: 36px;
    padding: 0 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Related Products Mobile */
  body .up-sells.products,
  body .related.products {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    margin-top: 40px;
  }
  body .up-sells.products > h2,
  body .related.products > h2 {
    font-size: 1.4rem;
  }
  body .mircato-related-slider .swiper-slide {
    width: calc(50% - 13px);
    margin-right: 20px;
  }
  body .mircato-related-slider .swiper-wrapper {
    margin-bottom: 35px;
    padding-left: 15px;
  }
  /* Swiper Lock jointly hiding */
  body .elementor-element.elementor-widget .swiper-button-next.swiper-button-lock,
  body .elementor-element.elementor-widget .swiper-button-prev.swiper-button-lock {
    display: none;
  }
}
/* --------------------------------------------------------------------------
   10. PREMIUM REVIEWS SECTION
   -------------------------------------------------------------------------- */
body .mircato-reviews-section {
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 60px 40px;
  background: #fff;
  border-radius: var(--mp-p-card-radius);
  border: 1px solid var(--mp-p-border);
  box-shadow: var(--mp-p-shadow);
}

body .mircato-reviews-section .mircato-section-title {
  margin-bottom: 50px;
  text-align: center;
}

body .mircato-reviews-section #reviews #comments {
  margin-bottom: 50px;
}

body .mircato-reviews-section .commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

body .mircato-reviews-section .commentlist li.review {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--mp-p-border);
}

body .mircato-reviews-section .commentlist li.review:last-child {
  border-bottom: none;
}

body .mircato-reviews-section .commentlist li.review img.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #f8f9fa;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

body .mircato-reviews-section .comment-text {
  flex: 1;
}

body .mircato-reviews-section .star-rating {
  float: right;
  font-size: 0.85rem;
  color: #ffc107;
  margin-bottom: 5px;
}

body .mircato-reviews-section .meta {
  margin-bottom: 12px;
}

body .mircato-reviews-section .woocommerce-review__author {
  font-weight: 700;
  color: var(--mp-p-black);
  font-size: 1.1rem;
  display: block;
}

body .mircato-reviews-section .woocommerce-review__published-date {
  font-size: 0.8rem;
  color: #999;
}

body .mircato-reviews-section .description {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Review Form */
body .mircato-reviews-section #review_form_wrapper {
  background: #fbfbfb;
  padding: 40px;
  border-radius: 12px;
  border-color: var(--color-primary, #6366f1);
}

.mircato-product-summary .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary, #6366f1);
  margin-bottom: 25px;
  display: block;
}

body .mircato-reviews-section #reply-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: block;
}

body .mircato-reviews-section .comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

body .mircato-reviews-section .comment-form-comment,
body .mircato-reviews-section .comment-form-rating,
body .mircato-reviews-section .comment-notes,
body .mircato-reviews-section .comment-form-cookies-consent,
body .mircato-reviews-section .form-submit {
  grid-column: 1/-1;
}

body .mircato-reviews-section .comment-notes {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666;
}

body .mircato-reviews-section .comment-notes span {
  display: inline-block;
  margin-right: 15px;
}

body .mircato-reviews-section .required-field-message {
  display: block;
  margin-top: 5px;
  font-weight: normal;
}

body .mircato-reviews-section .comment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

body .mircato-reviews-section .comment-form input[type=text],
body .mircato-reviews-section .comment-form input[type=email],
body .mircato-reviews-section .comment-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

body .mircato-reviews-section .comment-form input:focus,
body .mircato-reviews-section .comment-form textarea:focus {
  border-color: var(--mp-color-primary, #6366f1);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

body .mircato-reviews-section .form-submit input#submit {
  height: 52px;
  padding: 0 40px;
  background: var(--mp-p-black);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

body .mircato-reviews-section .form-submit input#submit:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Robust star-rating styles moved to global section above */
body .mircato-reviews-section .star-rating {
  font-size: 1rem;
}

/* Rating Stars Interaction (Using Dashicons for compatibility) */
body .mircato-reviews-section .comment-form-rating .stars a {
  position: relative;
  height: 1.5em;
  width: 1.5em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  box-shadow: none;
}

body .mircato-reviews-section .comment-form-rating .stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  line-height: 1;
  font-family: dashicons;
  content: "\f154";
  /* dashicons-star-empty */
  text-indent: 0;
  color: #ddd;
  transition: all 0.2s ease;
}

body .mircato-reviews-section .comment-form-rating .stars a:hover::before,
body .mircato-reviews-section .comment-form-rating .stars a.active::before {
  content: "\f155";
  /* dashicons-star-filled */
  color: #ffc107;
}

body .mircato-reviews-section .comment-form-rating .stars:hover a::before {
  content: "\f155";
  color: #ffc107;
}

body .mircato-reviews-section .comment-form-rating .stars a:hover ~ a::before {
  content: "\f154";
  color: #ddd;
}

/* Hide Review Form via Theme Option */
body .mircato-hide-review-form .mircato-reviews-section #review_form_wrapper,
body .mircato-hide-review-form .mircato-reviews-section #respond {
  display: none;
}

/* Cookies Consent Alignment */
body .mircato-reviews-section .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  grid-column: 1/-1;
  margin: 10px 0 20px;
}

body .mircato-reviews-section .comment-form-cookies-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

body .mircato-reviews-section .comment-form-cookies-consent label {
  display: inline;
  margin: 0;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}

/* Review List Styling */
body .mircato-reviews-section .woocommerce-Reviews-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--mp-p-black);
  display: block;
}

body .mircato-reviews-section .commentlist {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}

body .mircato-reviews-section .commentlist li.review {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #f0f0f0;
}

body .mircato-reviews-section .commentlist li.review:last-child {
  border-bottom: none;
}

body .mircato-reviews-section .commentlist .avatar {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

body .mircato-reviews-section .comment-text {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Ensure stars are top-right or correctly spaced */
body .mircato-reviews-section .comment-text .star-rating {
  margin-bottom: 10px;
}

body .mircato-reviews-section .comment-text .meta {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body .mircato-reviews-section .comment-author {
  font-weight: 700;
  color: var(--mp-p-black);
  font-size: 1.05rem;
  margin: 0;
}

body .mircato-reviews-section .comment-metadata a {
  font-size: 0.85rem;
  color: #999;
  text-decoration: none;
}

body .mircato-reviews-section .description p {
  line-height: 1.7;
  color: #444;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 767px) {
  body .mircato-reviews-section {
    padding: 40px 20px;
    margin-top: 40px;
  }
  body .mircato-reviews-section .comment-form {
    grid-template-columns: 1fr;
  }
  body .mircato-reviews-section .commentlist li.review {
    flex-direction: column;
    gap: 15px;
  }
}
/* Verified Owner & Verification Required Styling */
body .mircato-reviews-section .woocommerce-review__verified {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

body .mircato-reviews-section .woocommerce-verification-required {
  background: #fff8f1;
  border: 1px dashed #ffd8b1;
  padding: 40px 30px;
  margin: 30px 0;
  text-align: center;
  font-size: 1.1rem;
  color: #8c5a2b;
  border-radius: 12px;
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

body .mircato-reviews-section .mircato-login-btn {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
}

body .mircato-reviews-section .mircato-login-btn:hover {
  background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 84, 0, 0.2);
}

body .mircato-reviews-section .must-log-in {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  font-size: 1.1rem;
  color: #475569;
  margin: 30px 0;
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

body .mircato-reviews-section .must-log-in a {
  display: inline-block;
  background: var(--mp-color-primary, #000);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

body .mircato-reviews-section .must-log-in a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body .mircato-reviews-section .comment-form-rating {
  margin-bottom: 25px;
  grid-column: 1/-1;
}

body .mircato-reviews-section .comment-form-rating label {
  margin-bottom: 12px;
}

/* 
 * CLEANUP: Premium Product Page Styles 
 * 
 * NOTE: Most styles have been moved to mircato-single-product.css 
 * to ensure a self-contained premium experience. This file now only 
 * contains base WooCommerce overrides needed for global consistency.
 */
/* Global Container (Shared with Grid) */
.product-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hide default buttons that might conflict with our premium items */
.single-product .woocommerce-product-gallery .flex-direction-nav {
  display: none;
}

.single-product .quantity input::-webkit-outer-spin-button,
.single-product .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.single-product .quantity input[type=number] {
  -moz-appearance: textfield;
}

/* Review Form Specifics (Kept separate for modularity) */
#review_form_wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comment-form-comment,
.comment-form-rating,
.comment-notes,
.comment-form-cookies-consent,
.form-submit {
  grid-column: 1/-1;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 6px;
}

.form-submit input#submit {
  background: #1a1a1a;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}
