@charset "utf-8";
/* CSS Document */

/* ===============================
   ROBE REVOLUTION – HERO GRADIENT
   Light, airy, animated overlay
   =============================== */
.rr-video-hero {
  position: relative;
  overflow: hidden;
}
.rr-video-hero::before {
  content: "";
  position: absolute;
  inset: -10%; /* allows smooth movement */
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    130deg,
    rgba(235, 150, 140, 0.58),
    /* soft coral / blush */ rgba(245, 210, 160, 0.52),
    /* warm sand / peach */ rgba(170, 215, 205, 0.52),
    /* pale sage / aqua */ rgba(205, 175, 235, 0.52),
    /* muted lavender */ rgba(235, 150, 140, 0.56) /* coral echo to close */
  );

  background-size: 300% 300%;
  animation: rrGradientFlow 28s ease-in-out infinite;

  /* THIS IS WHAT MAKES IT LIGHT / WHITE */
  mix-blend-mode: normal;
}

/* Optional soft veil to calm contrast */
.rr-video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.03);
}

/* Gradient motion */
@keyframes rrGradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* =====================================
   ELEMENTOR VIDEO – RESPONSIVE RATIOS
   ===================================== */

/* Desktop default: 21:9 */
.drc-responsive-video .elementor-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 18 / 9;
  overflow: hidden;
}

/* Make video/iframe fill the ratio */
.drc-responsive-video video,
.drc-responsive-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet + Mobile: 16:9 */
@media (max-width: 1024px) {
  .drc-responsive-video .elementor-wrapper {
    aspect-ratio: 16 / 9;
  }
}
/* =========================================
   Robe Revolution – Soft Section Gradients
   SAFE VERSION (mirrors rr-grad-rose-flow)
   ========================================= */

/* Base animation – already works */
@keyframes rrRoseFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 1. Soft Rose Veil */
.rr-grad-rose-veil {
  background: linear-gradient(120deg, #e7d0cf, #d9c7b8, #e8dfd5);
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}

/* 2. Rose Clay (slightly deeper) */
.rr-grad-rose-clay {
  background: linear-gradient(120deg, #a16d6b, #e7d0cf, #d9c7b8);
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}

/* 3. Blush Air (very soft / near-white) */
.rr-grad-blush-air {
  background: linear-gradient(120deg, #f6f3ee, #e7d0cf, #f6f3ee);
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}

/* 4. Peach Blush */
.rr-grad-peach-blush {
  background: linear-gradient(120deg, #f1c6a8, #e7d0cf, #f6f3ee);
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}

/* 5. Rose Neutral */
.rr-grad-rose-neutral {
  background: linear-gradient(120deg, #d9c7b8, #e7d0cf, #e8dfd5);
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}
/* =========================================
   Robe Revolution – SOFT SECTION GRADIENTS
   RGBA | Lightweight | Section-only
   ========================================= */

/* 1. Soft Rose Veil (PRIMARY section bg) */
.rr-grad-rose-veil {
  background: linear-gradient(
    120deg,
    rgba(231, 208, 207, 0.45),
    rgba(217, 199, 184, 0.32),
    rgba(232, 223, 213, 0.45)
  );
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}
.rr-grad-rose-veil-whisper {
  background: linear-gradient(
    120deg,
    rgba(246, 243, 238, 0.96),
    rgba(231, 208, 207, 0.12),
    rgba(246, 243, 238, 0.94)
  );
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}
/* 2. Rose Clay – softened (Lookbook intro) */
.rr-grad-rose-clay {
  background: linear-gradient(
    120deg,
    rgba(161, 109, 107, 0.28),
    rgba(231, 208, 207, 0.42),
    rgba(217, 199, 184, 0.32)
  );
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}

/* 3. Blush Air – VERY light (text-heavy sections) */
.rr-grad-blush-air {
  background: linear-gradient(
    120deg,
    rgba(246, 243, 238, 0.9),
    rgba(231, 208, 207, 0.3),
    rgba(246, 243, 238, 0.85)
  );
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}

/* 4. Peach Blush – warm but subtle */
.rr-grad-peach-blush {
  background: linear-gradient(
    120deg,
    rgba(241, 198, 168, 0.32),
    rgba(231, 208, 207, 0.38),
    rgba(246, 243, 238, 0.4)
  );
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}

/* 5. Rose Neutral – editorial separator */
.rr-grad-rose-neutral {
  background: linear-gradient(
    120deg,
    rgba(217, 199, 184, 0.3),
    rgba(231, 208, 207, 0.24),
    rgba(232, 223, 213, 0.34)
  );
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}
/* ==================================================
   Robe Revolution – Lookbook Image Ambient Drift
   ================================================== */

/* Shared base for all lookbook images */
#rr-lookbook-image-1,
#rr-lookbook-image-2,
#rr-lookbook-image-3 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 20px;
}

/* Ambient overlay */
#rr-lookbook-image-1::after,
#rr-lookbook-image-2::after,
#rr-lookbook-image-3::after {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: 5;
  pointer-events: none;
  border-radius: 20px;

  background: linear-gradient(
    130deg,
    rgba(235, 150, 140, 0.48),
    /* soft coral / blush */ rgba(245, 210, 160, 0.42),
    /* warm peach */ rgba(170, 215, 205, 0.42),
    /* pale sage / aqua */ rgba(205, 175, 235, 0.42),
    /* muted lavender */ rgba(235, 150, 140, 0.46) /* coral echo */
  );

  background-size: 300% 300%;
  animation: rrSoftDrift 26s ease-in-out infinite;
  mix-blend-mode: overlay;
}

/* Background-position drift only (no translate = no line) */
@keyframes rrSoftDrift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.rr-fabric-gallery {
  display: none;
}

.rr-fabric-set {
  display: none;
}

.rr-fabric-slide img {
  width: 100%;
  height: auto;
  display: block;
}
/* Remove bottom gap under carousel image */
.single-product .elementor-widget-image-carousel figure {
  margin: 0 !important;
}

.single-product .elementor-widget-image-carousel img {
  display: block;
}

.single-product .elementor-widget-image-carousel .swiper-slide {
  line-height: 0;
}
/* =====================================================
   WRAP ROBE (ID 433)
   Blush / Brown
===================================================== */

body.postid-433 .elementor-heading-title,
body.postid-433 h1.product_title {
  color: #6b4c3b !important;
}

body.postid-433 .product-outer-container,
body.postid-433 .product-shell {
  border-color: #6b4c3b !important;
}

body.postid-433 .single_add_to_cart_button {
  background-color: #d9c7b8 !important;
  border-color: #d9c7b8 !important;
  color: #ffffff !important;
}

body.postid-433 .woocommerce div.product form.cart .variations select,
body.postid-433 .woocommerce div.product form.cart .quantity input {
  border-color: #c46a7a !important;
}

/* =====================================================
   REVEAL ROBE (ID 531)
   Rose
===================================================== */

body.postid-561 .elementor-heading-title,
body.postid-561 h1.product_title {
  color: #c46a7a !important;
}

body.postid-561 .product-outer-container,
body.postid-561 .product-shell {
  border-color: #c46a7a !important;
}

body.postid-561 .single_add_to_cart_button {
  background-color: #c46a7a !important;
  border-color: #c46a7a !important;
  color: #ffffff !important;
}

body.postid-561 .woocommerce div.product form.cart .variations select,
body.postid-561 .woocommerce div.product form.cart .quantity input {
  border-color: #c46a7a !important;
}

/* =====================================================
   RETRO ROBE (ID 561)
   OLIVE (Correct tone)
===================================================== */

body.postid-531 .elementor-heading-title,
body.postid-531 h1.product_title {
  color: #8f977d !important;
}

body.postid-531 .product-outer-container,
body.postid-531 .product-shell {
  border-color: #8f977d !important;
}

body.postid-531 .single_add_to_cart_button {
  background-color: #8f977d !important;
  border-color: #8f977d !important;
  color: #ffffff !important;
}

body.postid-531 .woocommerce div.product form.cart .variations select,
body.postid-531 .woocommerce div.product form.cart .quantity input {
  border-color: #8f977d !important;
}

/* =========================
   ROBE REVOLUTION – NESTED TABS
   Clean variable override per product
   ========================= */

/* WRAP – ID 433 */
body.postid-433 .elementor-widget-n-tabs {
  --n-tabs-border-color: #d9c7b8;
  --n-tabs-title-background-color: #e8dfd5;
  --n-tabs-title-background-color-hover: #6b4c3b;
  --n-tabs-title-background-color-active: #6b4c3b;
  --n-tabs-title-color: #6b4c4c;
  --n-tabs-title-color-hover: #ffffff;
  --n-tabs-title-color-active: #ffffff;
}

/* REVEAL – ID 531 */
body.postid-561 .elementor-widget-n-tabs {
  --n-tabs-border-color: #e7d0cf;
  --n-tabs-title-background-color: #f6eaea;
  --n-tabs-title-background-color-hover: #c46a7a;
  --n-tabs-title-background-color-active: #c46a7a;
  --n-tabs-title-color: #6b4c4c;
  --n-tabs-title-color-hover: #ffffff;
  --n-tabs-title-color-active: #ffffff;
}

/* RETRO – ID 561 */
body.postid-531 .elementor-widget-n-tabs {
  --n-tabs-border-color: #ddd6cc;

  --n-tabs-title-background-color: #f5f1eb;

  --n-tabs-title-background-color-hover: #e8e2d9;
  --n-tabs-title-background-color-active: #e0d9cf;

  --n-tabs-title-color: #5e5448;
  --n-tabs-title-color-hover: #5e5448;
  --n-tabs-title-color-active: #5e5448;
}

/* Remove global button border inside Nested Tabs */
.elementor-widget-n-tabs button {
  border: 1px solid var(--n-tabs-border-color) !important;
}
/* Force content container border to match product */
.elementor-widget-n-tabs .e-n-tabs-content,
.elementor-widget-n-tabs .e-n-tabs-content > div {
  border: 1px solid var(--n-tabs-border-color) !important;
}
/* Wrap – Ultra Soft Peach */
body.postid-433 .rr-grad-peach-blush {
  background: linear-gradient(120deg, #f8f4ee, #efe3d8, #fdfaf6);
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}
/* Retro – Barely-There Latte */
body.postid-531 .rr-grad-peach-blush {
  background: linear-gradient(120deg, #f8f6f2, #f1ebe4, #fcfbf9);
  background-size: 300% 300%;
  animation: rrRoseFlow 22s ease-in-out infinite;
}
/* Subtle line under cart headings */
.woocommerce-cart table.shop_table thead th {
  border-bottom: 1px solid #e8dede !important;
  padding-bottom: 25px;
}

/* Remove heavy default borders */
.woocommerce-cart table.shop_table,
.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  border: none !important;
}

/* Remove default borders */
.woocommerce-cart table.shop_table tbody tr {
  border-bottom: none !important;
}

/* Add vertical space between items */
.woocommerce-cart table.shop_table tbody tr:not(:last-child) td {
  padding-top: 25px !important;
  padding-bottom: 0px !important;
}

/* Remove extra space under the last item */
.woocommerce-cart table.shop_table tbody tr:last-child td {
  padding-bottom: 0 !important;
}
/* Line directly under "Order Summary" heading */
.elementor-widget-woocommerce-cart .cart_totals > h2 {
  border-bottom: 1px solid #e8dede !important;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
/* ===== ROBE REVOLUTION CART THUMBNAIL ===== */

/* Remove Woo square constraint */
.woocommerce-cart td.product-thumbnail {
  width: 95px;
  padding-right: 18px;
  vertical-align: top;
}

.woocommerce-cart td.product-thumbnail img {
  max-width: none;
}

/* Thumbnail wrapper (portrait) */
.rr-cart-thumb {
  position: relative;
  width: 55px;
  height: 78px; /* proper 3:4 ratio */
  overflow: hidden; /* prevents stretch bleed */
}

/* Main robe image */
.rr-cart-thumb > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Fabric swatch overlay */
.rr-fabric-swatch {
  position: absolute;
  bottom: -15px; /* unchanged */
  right: -15px; /* unchanged */
  width: 25px;
  height: 25px;
  border-radius: 50%;
  overflow: hidden; /* ensures true circle */
}

/* Fabric circle */
.rr-fabric-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: block;
}
/* Ensure wrapper creates stacking context */
.rr-cart-thumb {
  position: relative;
  z-index: 1;
}

/* Main robe image */
.rr-cart-thumb > img:first-child {
  position: relative;
  z-index: 1;
}

/* Fabric swatch above image */
.rr-fabric-swatch {
  position: absolute;
  bottom: 0px;
  right: -8px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: 3; /* sits above robe image */
  border: 2px solid #ffffff; /* ← white ring */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
/* Allow swatch to overflow outside thumbnail */
.woocommerce-cart td.product-thumbnail {
  overflow: visible !important;
}

.rr-cart-thumb {
  overflow: visible !important;
}
.elementor-widget-woocommerce-cart .woocommerce .input-text.qty {
  padding: 10px;
}
/* Make entire cart wrapper full height flex */
.widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Make products area scroll */
.elementor-menu-cart__products {
  flex: 1;
  overflow-y: auto;
}

/* Push subtotal + buttons to bottom */
.elementor-menu-cart__subtotal,
.elementor-menu-cart__footer-buttons {
  margin-top: auto;
}
/* Tighten subtotal spacing */
.elementor-menu-cart__subtotal {
  margin-bottom: 10px;
}

/* Remove extra spacing above buttons */
.elementor-menu-cart__footer-buttons {
  margin-top: 0;
}
/* Mini Cart Heading */
.widget_shopping_cart_content::before {
  content: "Your Robe";
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.8px;
  color: #c46a7a;
  margin-bottom: 24px;
}
/* Mini Cart Heading with Warm Divider */
.widget_shopping_cart_content::before {
  content: "Your Robe";
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.8px;
  color: #c46a7a;
  padding-bottom: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid #cebfae;
}
/* ================================
   CHECKOUT – COLLECTION FIX
================================ */

/* Keep shipping cell normal */
.woocommerce-checkout-review-order-table tr.shipping td {
  position: relative;
}

/* Float button right */
.woocommerce-checkout-review-order-table tr.shipping .pargo_style_button {
  float: right;
  margin-left: 20px;
  margin-top: -38px; /* moves button up slightly */
  white-space: nowrap;
}

/* Ensure sentence wraps nicely */
.woocommerce-checkout-review-order-table tr.shipping ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Divider after Subtotal */
.woocommerce-checkout-review-order-table tr.cart-subtotal td,
.woocommerce-checkout-review-order-table tr.cart-subtotal th {
  border-bottom: 1px solid #e6d8cc;
}

/* Divider after Collection */
.woocommerce-checkout-review-order-table tr.shipping td {
  border-bottom: 1px solid #e6d8cc;
}

/* Divider before Total */
.woocommerce-checkout-review-order-table tr.order-total td,
.woocommerce-checkout-review-order-table tr.order-total th {
  border-top: 1px solid #e6d8cc;
}
/* ================================
   CHECKOUT ORDER LAYOUT
================================ */

/* Align product + subtotal columns */
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 15px 20px;
}

/* Product cell layout */
.rr-checkout-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Thumbnail */
.rr-checkout-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
}

/* Name block */
.rr-checkout-name {
  flex: 1;
}

/* Tighten right column width so it aligns with button edge */
.woocommerce-checkout-review-order-table td:last-child {
  width: 195px;
}
.rr-checkout-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rr-inline-qty {
  margin-left: auto;
  font-size: 14px;
  opacity: 0.7;
}
/* CHECKOUT – Align subtotal with quantity */
.woocommerce-checkout-review-order-table td.product-total {
  vertical-align: middle !important;
}

.woocommerce-checkout-review-order-table td.product-total .amount {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.woocommerce-checkout-review-order-table td.product-name {
  vertical-align: middle !important;
}

.woocommerce-checkout-review-order-table .product-quantity {
  vertical-align: middle !important;
  display: inline-flex;
  align-items: center;
}
/* Remove extra vertical stretch inside product name */
.woocommerce-checkout-review-order-table td.product-name {
  padding-bottom: 0 !important;
  vertical-align: middle !important;
}

.woocommerce-checkout-review-order-table td.product-name a {
  display: inline !important;
  line-height: 1.2 !important;
}

.woocommerce-checkout-review-order-table td.product-name img {
  margin-bottom: 0 !important;
  text-align:end!important;
}
.woocommerce table.shop_table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 9px 12px;
  vertical-align: middle;
  line-height: 1.2em!important;
}
.woocommerce table.shop_table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 9px 12px;
  vertical-align: middle;
  line-height: 1.2em !important;
}
/* Hide Pargo pickup logo image */
.woocommerce-checkout .pargo-logo,
.woocommerce-checkout .pargo-pickup-point img,
.woocommerce-checkout img[src*="clicks"] {
  display: none !important;
}

/* Hide Pargo pickup logo only */
#pargo-after-cart img.pargo_style_image {
  display: none !important;
}
#pargo-after-cart .pargo_style_title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  color: #3a3a3a !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  max-width: 100% !important;
}
/* Hide Pargo location description line */
#pargo-after-cart .pargo_style_desc {
  display: none !important;
}
#billing_country_field {
  display: none !important;
}

/* -----------------------------------------
   WooCommerce Checkout Notices – Rose (RGBA)
------------------------------------------ */

.woocommerce-notices-wrapper {
  margin-bottom: 24px;
}

.woocommerce-error {
  background: rgba(196, 106, 122, 0.12); /* soft rose wash */
  border: 1px solid rgba(196, 106, 122, 0.35);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 8px 20px rgba(196, 106, 122, 0.12);
}

.woocommerce-error::before {
  display: none;
}

.woocommerce-error li {
  color: rgba(58, 0, 19, 0.85); /* deep mahogany text */
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding-left: 0;
}

.woocommerce-error li::marker {
  display: none;
}

.woocommerce-error strong {
  font-weight: 500;
}

@media (max-width: 768px) {
  .woocommerce-error {
    padding: 16px 18px;
  }
}
/* =====================================================
   Pargo Pickup Modal – Full Visual Refinement
   (Boutique / Robe Revolution)
===================================================== */

/* Overlay */
.p-a-overlay,
.p-a-backdrop {
  background: rgba(0, 0, 0, 0.45);
}

/* Modal container */
.p-a-modal {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  overflow: hidden; /* ensures rounded corners clip */
  display: flex;
  flex-direction: column;
  max-width: 1100px;
}

/* Header bar (Pargo yellow, softened) */
.p-a-modal header,
.p-a-header {
  background: #fff;
  padding: 14px 18px;
  border-bottom: 1px solid #e8dfd5;
  font-weight: 300 !important;
  font-family: "Montserrat", sans-serif;
  color: #c46a7a;
}

/* Header title */
.p-a-modal header h2,
.p-a-header h2 {
  font-size: 16px;
  font-weight: 300 !important;
  font-family: "Montserrat", sans-serif;
  color: #c46a7a;
  letter-spacing: 0.02em;
}

/* Modal body background */
.p-a-modal .p-a-body,
.p-a-modal .p-a-content {
  background: #faf7f4;
}
.pmap__header-top {
  background-color: fff !important;
}
/* Soften inner panel split */
.p-a-modal .p-a-body > div {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

/* HIDE FOOTER COMPLETELY */
.p-a-modal-footer {
  display: none !important;
}

/* =====================================
   PARGO MODAL – CLOSE BUTTON ONLY
===================================== */

/* Reset Elementor Kit 7 styling only for modal header button */
.p-a-modal .p-a-modal-header button {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 15px !important;
  color: #c46a7a !important; /* your rose */
  font-size: 14px;
  line-height: 1;
}

/* Optional: subtle hover */
.p-a-modal .p-a-modal-header button:hover {
  opacity: 0.7;
}
/* Hide fallback confirmation text inside pargo modal wrapper */
#pargo-modal > div[data-v-app] > div:first-child {
  display: none !important;
}
/* Style selected pickup under Collection */
#pargo-after-cart {
  margin-top: 0px !important;
  font-size: 14px;
  line-height: 1.2;
}

#pargo-after-cart .pargo_style_title {
  font-weight: 500;
  color: #7a5c5c; /* adjust to your robe tone */
  margin: 0;
}

#pargo-after-cart .pargo_style_image {
  display: none; /* remove logo image for cleaner luxury feel */
}
/* Prevent checkout fields from jumping on error */
.woocommerce-checkout .form-row {
  position: relative;
  margin-bottom: 22px;
}

.woocommerce-checkout .form-row .woocommerce-error,
.woocommerce-checkout .form-row .woocommerce-input-wrapper .woocommerce-error {
  position: absolute;
  bottom: -16px;
  left: 0;
  font-size: 12px;
  margin: 0;
}
/* Keep invalid field from changing layout */
.woocommerce-checkout .woocommerce-invalid input,
.woocommerce-checkout .woocommerce-invalid select {
  border-color: #d63638 !important;
  box-shadow: none !important;
}
/* My Account dashboard link colour */
.woocommerce-account .woocommerce-MyAccount-content a {
  color: #c46a7a !important; /* replace with your exact robe tone */
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
  color: #a85664 !important; /* slightly deeper tone for hover */
}
/* My Account link styling */
.woocommerce-account .woocommerce-MyAccount-content a {
  color: #c46a7a !important; /* your robe tone */
  text-decoration: none;
  transition: color 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
  color: #a85664 !important; /* slightly deeper blush */
  text-decoration: none;
}
/* Remove default Woo borders */
.woocommerce form.login,
.woocommerce form.register {
  border: none !important;
  background: #e7d0cf59 !important;
  padding: 40px !important;
  border-radius: 20px !important;
}

/* Remove any internal fieldset borders */
.woocommerce form.login fieldset,
.woocommerce form.register fieldset {
  border: none !important;
}
.elementor-widget-woocommerce-my-account
  .e-my-account-tab:not(.e-my-account-tab__dashboard--custom)
  .woocommerce
  a {
  color: #c46a7a !important;
}
.elementor-widget-woocommerce-my-account
  .e-my-account-tab:not(.e-my-account-tab__dashboard--custom)
  .woocommerce
  a:hover {
  color: #a85766 !important; /* slightly darker blush */
}
.elementor-widget-woocommerce-my-account
  .e-my-account-tab:not(.e-my-account-tab__dashboard--custom)
  .woocommerce
  .login
  .woocommerce-LostPassword,
.elementor-widget-woocommerce-my-account
  .e-my-account-tab:not(.e-my-account-tab__dashboard--custom)
  .woocommerce
  .register
  .woocommerce-LostPassword {
  font-size: 12px;
  margin-bottom: 0;
  font-style: italic;
  letter-spacing: 0.3px;
  font-family: "Montserrat", sans-serif;
}
/* =========================
   Woo Notices – Clean Style
========================= */

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: #e7d0cf39;
  border: none !important;
  border-top: none !important;
  box-shadow: none;
  padding: 20px 25px;
  border-radius: 20px;
  color: #c46a7a;
  text-align: left;
  font-family: "Montserrat", sans-serif;
}

/* Remove default blue/purple bar completely */
.woocommerce-info::before,
.woocommerce-error::before,
.woocommerce-message::before {
  display: none !important;
  content: none !important;
}
/* Empty Orders – Notice Style */

.rr-empty-orders {
  background: #e7d0cf15;
  color: #c46a7a;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 20px 25px;
  border-radius: 16px;
  margin: 0; /* no top spacing */
}

.woocommerce-MyAccount-content > .rr-empty-orders {
  margin-top: 0 !important;
}

.rr-empty-orders a {
  font-weight: 600;
  color: #c46a7a;
  text-decoration: none;
}

.rr-empty-orders a:hover {
  text-decoration: underline;
}
/* Remove top spacing inside account content */
.woocommerce-MyAccount-content > *:first-child {
  margin-top: 0 !important;
}

.woocommerce-MyAccount-content .rr-empty-orders {
  margin-top: 0 !important;
}

.woocommerce-notices-wrapper {
  margin-bottom: 0 !important;
}
.rr-empty-address {
  background: #e7d0cf15;
  color: #c46a7a;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 20px 25px;
  border-radius: 24px;
  margin: 0;
}

.rr-empty-address a {
  font-weight: 600;
  color: #c46a7a;
  text-decoration: none;
}

.rr-empty-address .rr-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.rr-empty-address a:hover .rr-arrow {
  transform: translateX(4px);
}
/* Make Address Column Full Width */

.woocommerce-Addresses .woocommerce-Address {
  width: 100% !important;
  float: none !important;
}

.woocommerce-Addresses {
  display: block !important;
}
.rr-empty-address {
  width: 100%;
  box-sizing: border-box;
}
.elementor-widget-woocommerce-my-account
  .e-my-account-tab:not(.e-my-account-tab__dashboard--custom)
  .woocommerce-Address
  address {
  padding-top: 0 !important;
}
.woocommerce-MyAccount-content form > h2 {
  border-bottom: 1px solid rgba(196, 106, 122, 0.25);
  padding-bottom: 18px;
  margin-bottom: 35px;
}
/* Remove top padding from edit form wrapper */
/* Remove Elementor forced top margin on edit address heading */

.elementor-widget-woocommerce-my-account
  .e-my-account-tab__edit-address
  .woocommerce-MyAccount-content
  h2:first-of-type {
  margin-top: 0 !important;
}
/* Hide display name helper text */
.woocommerce-MyAccount-content .woocommerce-EditAccountForm p em {
  display: none;
}
/* ACCOUNT DETAILS CLEAN LAYOUT */

.woocommerce-EditAccountForm {
  margin-top: 10px;
}

.rr-row {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.rr-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rr-full {
  width: 100%;
  margin-bottom: 20px;
}

.rr-password-section {
  border: none;
  padding: 0;
  margin-top: 30px;
}

.rr-password-section legend {
  margin-bottom: 15px;
  font-weight: 400;
}
/* Divider before password section */
.rr-divider {
  border: none;
  border-top: 1px solid #e8dfd5;
  margin: 35px 0 25px 0;
}
.rr-password-section {
  border: none;
  padding: 0;
  margin-top: 0px;
}
/* Elementor Image Carousel – remove bottom gap (swiper-slide-inner fix) */
.elementor-widget-image-carousel .swiper-slide-inner {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
}

.elementor-widget-image-carousel .swiper-slide-image {
  display: block;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  /* Make everything truly full-width and box-correct */
  .rr-product-form *,
  .rr-product-form *::before,
  .rr-product-form *::after {
    box-sizing: border-box;
  }

  /* Fix selects cutting off text */
  .rr-product-form select {
    width: 100% !important;
    max-width: 100%;
    padding-right: 40px !important; /* space for arrow */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Remove phantom right spacing */
  .rr-product-form table.variations,
  .rr-product-form table.variations td,
  .rr-product-form table.variations th,
  .rr-product-form .single_variation_wrap,
  .rr-product-form .variations_button {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  /* Quantity input full width + centered text */
  .rr-product-form .quantity,
  .rr-product-form .quantity .qty {
    width: 100% !important;
    max-width: 100%;
    text-align: center;
  }

  /* Button: kill the right gap */
  .rr-product-form button.single_add_to_cart_button {
    width: 100% !important;
    max-width: 100%;
    margin: 12px 0 0 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
}
/* =====================================================
   ROBE REVOLUTION – CART (MOBILE ONLY)
   Flat, editorial, no shadow
===================================================== */

@media (max-width: 767px) {
  /* Remove table behaviour */
  .woocommerce-cart table.shop_table,
  .woocommerce-cart table.shop_table tbody,
  .woocommerce-cart table.shop_table tr,
  .woocommerce-cart table.shop_table td {
    display: block;
    width: 100%;
    border: none !important;
  }

  .woocommerce-cart thead {
    display: none;
  }

  /* Cart item as soft bordered card */
  .woocommerce-cart .cart_item {
    background: #ffffff;
    border: 1px solid #e8dfd5;
    border-radius: 20px;
    padding: 18px 18px 20px;
    margin-bottom: 22px;
  }

  /* Thumbnail spacing */
  .woocommerce-cart td.product-thumbnail {
    margin-bottom: 14px;
  }

  /* Product name */
  .woocommerce-cart td.product-name {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 6px;
  }

  /* Fabric / size meta */
  .woocommerce-cart td.product-name dl {
    margin-top: 4px;
    font-size: 13px;
    opacity: 0.7;
  }

  /* Quantity – calm, not dominant */
  .woocommerce-cart td.product-quantity {
    margin-top: 14px;
  }

  .woocommerce-cart td.product-quantity input.qty {
    width: 80px;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
  }

  /* Price + subtotal */
  .woocommerce-cart td.product-price,
  .woocommerce-cart td.product-subtotal {
    margin-top: 10px;
    font-size: 14px;
  }

  .woocommerce-cart td.product-subtotal {
    font-weight: 500;
  }

  /* Order summary – same flat language */
  .woocommerce-cart .cart_totals {
    background: #ffffff;

    border-radius: 20px;
    padding: 22px;
  }

  /* Checkout button breathing room */
  .woocommerce-cart .wc-proceed-to-checkout a {
    margin-top: 16px;
  }
}
/* =====================================================
   ROBE REVOLUTION – CHECKOUT (MOBILE ONLY)
   Fix layout, spacing, alignment
   ===================================================== */

@media (max-width: 767px) {
  /* ---------------------------------
     1) ORDER NOTES – make taller
  ---------------------------------- */
  .woocommerce-checkout textarea#order_comments {
    min-height: 140px;
    resize: vertical;
  }

  /* ---------------------------------
     4) PAYMENT METHODS – TEXT SIZE
  ---------------------------------- */

  .woocommerce-checkout #payment ul.payment_methods label {
    font-size: 14px !important;
    line-height: 1.4;
  }

  /* ---------------------------------
     5) PLACE ORDER BUTTON
     (wrapper-safe, no styling changes beyond colour/radius)
  ---------------------------------- */

  .woocommerce-checkout #place_order {
    background-color: #d9c7b8 !important;
    border-radius: 40px !important;
    border: none !important;
    color: #ffffff !important;
  }
}

/* =========================================
   PARGO – Select Pickup Point button
   STYLE ONLY (all devices)
========================================= */

.pargo_style_button,
button.pargo_style_button,
a.pargo_style_button {
  background-color: #c46a7a !important; /* RR rose */
  border: none !important;
  border-radius: 40px !important; /* matches RR buttons */
  color: #ffffff !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0.6px !important;

  padding: 12px 22px !important;
  text-transform: none !important;
  box-shadow: none !important;
}
@media (max-width: 767px) {
  .rr-pargo-button-wrap {
    margin-top: 14px;
  }

  .rr-pargo-button-wrap .pargo_style_button {
    width: 100%;
    text-align: center;
  }
  .woocommerce-checkout-review-order-table tr.shipping .pargo_style_button {
    float: none;
    margin-left: 0px;
    margin-top: 30px;
    white-space: nowrap;
  }
  @media (max-width: 767px) {
    .woocommerce-checkout-review-order-table
      tbody
      tr.cart_item
      td.product-total {
      display: none !important;
    }
  }
  @media (max-width: 767px) {
    .rr-checkout-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .rr-checkout-thumb {
      flex: 0 0 55px;
    }

    .rr-checkout-name {
      flex: 1;
      line-height: 1.4;
    }
  }
  /* =========================================
   CHECKOUT – FIX PRODUCT NAME WIDTH (MOBILE)
   Overrides Elementor hard max-width
========================================= */
  @media (max-width: 767px) {
    .elementor-widget-woocommerce-checkout-page
      .woocommerce
      .woocommerce-checkout-review-order-table
      .cart_item
      td.product-name {
      max-width: none !important;
      width: 100% !important;
      padding-inline-end: 0 !important;
    }

    .woocommerce-checkout-review-order-table .product-quantity,
    .woocommerce-checkout-review-order-table .rr-inline-qty {
      display: none !important;
    }
  }
}
@media (max-width: 767px) {
  .woocommerce-checkout-review-order-table th:last-child,
  .woocommerce-checkout-review-order-table td:last-child {
    width: 40%;
  }

  .woocommerce-checkout-review-order-table th:first-child,
  .woocommerce-checkout-review-order-table td:first-child {
    width: 60%;
  }

  /* Only prevent wrapping for actual price amounts */
  .woocommerce-checkout-review-order-table .amount {
    white-space: nowrap;
  }
}
.woocommerce-checkout-review-order-table
  .shipping
  .woocommerce-Price-amount::before {
  content: " ";
}
.woocommerce-shipping-totals.shipping td > label {
  position: relative;
}

.woocommerce-shipping-totals.shipping td > label::after {
  content: "";
}
.woocommerce-shipping-totals.shipping td > label {
  font-size: 0;
}

.woocommerce-shipping-totals.shipping td > label .amount,
.woocommerce-shipping-totals.shipping td > label .pargo_style_button,
.woocommerce-shipping-totals.shipping td > label span {
  font-size: 14px; /* or whatever your normal size is */
}
.desktop-only {
  display: inline;
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .order-meta .elementor-widget-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .order-meta .elementor-widget-container span {
    display: inline-block;
  }

  .order-meta .elementor-widget-container > * {
    display: flex;
    justify-content: space-between;
  }
}
/* ===============================
   Robe Revolution – Thank You
   =============================== */

.rr-thankyou-wrapper {
  max-width: 1200px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0 24px;
  font-family: "Montserrat", sans-serif;
}

/* Headings */
.rr-thankyou-heading {
  text-align: center;
  color: #c46a7a;
  font-weight: 300;
  font-size: 45px;
  margin-bottom: 30px;
}

.rr-thankyou-sub {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  color: #3a3a3a;
}

/* Card */
.rr-order-card {
  border: 1px solid #e8dfd5;
  border-radius: 20px;
  padding: 48px;
  background: #ffffff;
}

/* ===============================
   Meta Section
   =============================== */

.rr-order-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.rr-meta-item {
  flex: 1 1 200px;
  min-width: 160px;
  padding: 0 40px;
}

.rr-meta-item:not(:last-child) {
  border-right: 1px solid #e8dfd5;
}

.rr-meta-item:first-child {
  padding-left: 0;
}

.rr-meta-item:last-child {
  padding-right: 0;
}

.rr-meta-item span {
  display: block;
  font-size: 12px;
  color: #c46a7a;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.rr-meta-item strong {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #3a3a3a;
  white-space: nowrap;
}
/* Force Woo price to remain inline */
.rr-meta-item .woocommerce-Price-amount,
.rr-meta-item .woocommerce-Price-amount bdi,
.rr-meta-item .woocommerce-Price-currencySymbol {
  display: inline !important;
  white-space: nowrap !important;
  color: #3a3a3a;
}

/* ===============================
   Order Table
   =============================== */

.woocommerce-order-details table {
  border-collapse: collapse;
  width: 100%;
}

.woocommerce-order-details th,
.woocommerce-order-details td {
  padding: 14px 0;
  border-bottom: 1px solid #e8dfd5;
  color: #3a3a3a;
}
/* Remove final divider under order table */
.woocommerce-order-details table tr:last-child td,
.woocommerce-order-details table tr:last-child th {
    border-bottom: none !important;
}
.woocommerce-order-details__title {
  color: #c46a7a;
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 20px;
}

.woocommerce-order-details tfoot th,
.woocommerce-order-details tfoot td {
  font-weight: 300;
}

/* Footer */
.rr-thankyou-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #a16d6b;
}
.woocommerce .woocommerce-customer-details .woocommerce-column__title {
  margin-top: 40px;
  font-weight: 300;
  font-size: 20px;
  color: #c46a7a;
}
/* ===============================
   Responsive
   =============================== */

@media (max-width: 1024px) {
  .rr-order-card {
    padding: 36px;
  }

  .rr-thankyou-heading {
    font-size: 34px;
  }

  .rr-order-meta {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .rr-thankyou-wrapper {
    margin-top:30px;
    margin-bottom: 30px;
     border-bottom: none !important;
  }

  .rr-order-card {
    padding: 28px;
    border-radius: 16px;
  }

  .rr-thankyou-heading {
    font-size: 26px;
  }

  .rr-thankyou-sub {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .rr-order-meta {
    flex-direction: column;
    gap: 20px;
  }

  .woocommerce-order-details th,
  .woocommerce-order-details td {
    padding: 12px 0;
  }
}

/* Hide Elementor checkout heading on order received only */
body.woocommerce-order-received .checkout-title,
body.woocommerce-order-received .checkout-sub {
  display: none;
}
/* Remove payment method row from order table */
.woocommerce-order-details tfoot tr:last-child {
  display: none;
}
/* Remove all existing borders first */
.woocommerce-order-details table th,
.woocommerce-order-details table td {
  border: none !important;
  padding: 18px 0;
  position: relative;
}

/* Add divider line under each row */
.woocommerce-order-details table tbody tr,
.woocommerce-order-details table tfoot tr {
  position: relative;
}

.woocommerce-order-details table tbody tr::after,
.woocommerce-order-details table tfoot tr::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e8dfd5;
}

/* Remove divider on last row */
.woocommerce-order-details table tfoot tr:last-child::after {
  display: none;
}
/* Billing address auto height */
.woocommerce-customer-details address {
  min-height: unset !important;
  height: auto !important;
}

/* Remove column height forcing */
.woocommerce-columns--addresses .woocommerce-column {
  min-height: unset !important;
  height: auto !important;
}

/* Apply your gold border styling */
.woocommerce-customer-details address {
  border: 1px solid #e8dfd5 !important;
  border-radius: 20px !important;
  padding: 30px;
  background: #ffffff;
  color: #3a3a3a;
  line-height: 26px;
}
.woocommerce-customer-details {
  margin-bottom: 0 !important;
}

.woocommerce-customer-details .woocommerce-column {
  margin-bottom: 0 !important;
}

.woocommerce-customer-details h2 {
  margin-bottom: 20px; /* adjust if you want tighter */
}

.woocommerce-customer-details address {
  margin-bottom: 0 !important;
}
@media (max-width: 1024px) {
  .rr-order-meta {
    flex-direction: column;
    gap: 24px;
  }

  .rr-meta-item {
    border-right: none !important;
    padding: 0 !important;
    flex: 1;
  }
}
  @media (max-width: 768px) {
    .woocommerce-order-details table th,
    .woocommerce-order-details table td {
      display: table-cell !important;
      width: auto !important;
    }

    .woocommerce-order-details table tr {
      display: table-row !important;
    }

    .woocommerce-order-details table tbody,
    .woocommerce-order-details table tfoot {
      display: table-row-group !important;
    }

    /* Keep price values on one line */
    .woocommerce-order-details td:last-child {
      white-space: nowrap;
      text-align: right;
    }
  }
/* Fix layout shift for Full Name validation */

#billing_full_name_field {
  min-height: 90px;
}

#billing_full_name_field .woocommerce-error {
  display: block;
  margin-top: 6px;
}
/* Mobile – remove order table borders to prevent stray divider */
@media (max-width: 768px) {

    .woocommerce table.shop_table td,
    .woocommerce table.shop_table th,
    .woocommerce-order-details td,
    .woocommerce-order-details th {
        border-top: none !important;
        border-bottom: none !important;
    }

}
/* My Account – stack fields on mobile */
@media (max-width: 768px) {

  .woocommerce-account .form-row-first,
  .woocommerce-account .form-row-last {
    width: 100% !important;
    float: none !important;
    
  }
.rr-row {
    display:inline;
    gap: 30px;
    margin-bottom: 20px;
}
 .rr-divider {
    border-top: 1px solid #e8dfd5;
  margin-top: 30px;
}
  /* Space between email field and password section */
.elementor-widget-woocommerce-my-account .e-my-account-tab:not(.e-my-account-tab__dashboard--custom) .woocommerce-MyAccount-content p:last-of-type {
    margin-bottom: 25px!important;
}
}
.woocommerce div.product form.cart .variations td.value {
  position: relative;
}

.rr-fabric-swatch-preview {
  position: absolute;
  right: 40px; /* ← moves it closer to the text (adjustable) */
  top: 50%;
  transform: translateY(-50%);
  width: 30px;   /* bigger */
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 5;
  pointer-events: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rr-fabric-swatch-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*  Proper hover (feels premium now) */
.rr-fabric-swatch-preview:hover {
  transform: translateY(-50%) scale(2.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}
.rr-fabric-gallery {
  display: none;
}

.rr-fabric-set {
  display: none;
}
.rounded-fabric img {
    border-radius: 20px 0 0 20px!important;
    overflow: hidden;
}

.rounded-fabric {
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

/* ===============================
   Desktop (keep left-rounded)
=============================== */
.rounded-fabric,
.rounded-fabric img {
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

/* ===============================
   Tablet Portrait + Landscape + Mobile
   Fully rounded
=============================== */
@media (max-width: 1024px) {
    .rounded-fabric,
    .rounded-fabric img {
        border-radius: 20px !important;
    }
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, 
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #A16D6B;
    font-size: 1.25em;
}
.rr-zoom {
    overflow: hidden;
    cursor: zoom-in;
}

.rr-zoom img {
    transition: transform 0.3s ease;
}

.rr-zoom.zoom-active {
    cursor: zoom-out;
}

.rr-zoom.zoom-active img {
    transform: scale(2);
    cursor: grab;
}

.rr-zoom.zoom-active:active img {
    cursor: grabbing;
}
.elementor-2062 .elementor-element.elementor-element-2c4f27e img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: 50% 90%;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .elementor-2062 .elementor-element.elementor-element-2c4f27e {
        padding: 0 !important;
    }
}
.rr-cart-size {
    display: block;
    margin-top: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #6f6a64; /* soft neutral */
    letter-spacing: 0.3px;
  font-weight:400;
}
/* Turn the product cell into 2 columns */
.woocommerce-checkout-review-order-table .product-name a {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 12px;
    align-items: start;
}

.woocommerce-checkout-review-order-table .product-name a img {
    grid-column: 1;
}

.woocommerce-checkout-review-order-table .product-name a {
    grid-auto-flow: column;
}

.woocommerce-checkout-review-order-table .rr-cart-size {
    display: block;
    margin-top: 4px;
}

.woocommerce-checkout-review-order-table .product-quantity {
    display: block;
    margin-top: 2px;
}
.woocommerce-checkout-review-order-table td.product-name .rr-col-image img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    display: block;
  border-radius:8px;
}

.rr-col-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .rr-col-text {
        gap: 6px;
    }
}
.collection-row-inner label {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.collection-row-inner .woocommerce-Price-amount {
    margin-left: auto;
}
.woocommerce ul#shipping_method li label {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
}
.woocommerce-checkout-review-order-table th.product-total,
.woocommerce-checkout-review-order-table td.product-total {
    width: 1%;
    white-space: nowrap!important;
    text-align: right;
}
/* Keep product column left */
.woocommerce-checkout-review-order-table td.product-name {
    text-align: left;
}
elementor-430 .elementor-element.elementor-element-c4b2fd0 .woocommerce-checkout-review-order-table thead tr th{
  text-align:end;
}
.elementor-widget-woocommerce-checkout-page .woocommerce .woocommerce-checkout-review-order-table .cart_item td.product-total {
    vertical-align: top;
    text-align: end;
}.woocommerce-Price-amount,
.woocommerce-Price-amount * {
    white-space: nowrap !important;
}
/* WRAP PAGE */
body.product_cat-wrap-fabrics .product_cat-retro-fabrics,
body.product_cat-wrap-fabrics .product_cat-reveal-fabrics {
    display: none !important;
}

/* RETRO PAGE */
body.product_cat-retro-fabrics .product_cat-wrap-fabrics,
body.product_cat-retro-fabrics .product_cat-reveal-fabrics {
    display: none !important;
}

/* REVEAL PAGE */
body.product_cat-reveal-fabrics .product_cat-wrap-fabrics,
body.product_cat-reveal-fabrics .product_cat-retro-fabrics {
    display: none !important;
}






.rr-size-options {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-left: 10px; /* space from price */
    vertical-align: middle;
}
.rr-size-option {
    display: flex;
    align-items: center;
    gap: 6px; /* space between circle and text */
}



/* hide real radio */
.rr-size-option input {
    position: absolute;
    opacity: 0;
}

/* create custom circle */
.rr-size-option span::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 4px;
    border-radius: 50%;
    background: #e2ddd8; /* soft grey (inactive) */
    border: 1px solid #e2ddd8;
    vertical-align: middle;
    transition: all 0.2s ease;
}

/* active */
.rr-size-option input:checked + span::before {
    background: #C46A7A; /* blush */
    border-color: #C46A7A;
}
.rr-card {
    position: relative;
}

.rr-sold {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #C46A7A;
    color: #fff;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 20px;
    font-family: Montserrat, sans-serif;
    letter-spacing: 0.5px;
}

/* ================================
   Robe Notice (Custom Template)
================================ */

.woocommerce-info {
    background: none;
    border: none;
    padding: 0;
}

.rr-notice {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 60px auto;
}

.rr-notice h3 {
    font-size: 28px;
    font-weight: 300;
    color: #C46A7A;
    margin-bottom: 10px;
}

.rr-notice p {
    font-size: 14px;
    color: #8f8f8f;
    margin-bottom: 20px;
}

.rr-notice-link {
    font-size: 14px;
    color: #C46A7A;
    text-decoration: underline;
}
/* Hide View Cart link under products */
.added_to_cart {
    display: none !important;
}

/* Card setup */
.rr-card {
    position: relative;
    overflow: hidden; /* keeps triangle inside rounded corners */
}

/* SOLD corner triangle */
.rr-card:has(.outofstock)::after,
.rr-card:has(.out-of-stock)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: #8fae9f;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
  border-top-right-radius: 20px; /*  THIS is what you want */
    z-index: 5;
}

/* SOLD text (separate layer) */
.rr-card:has(.outofstock)::before,
.rr-card:has(.out-of-stock)::before {
    content: "SOLD";
    position: absolute;
    top: 20px;
    right:-2px;
    transform: rotate(45deg);
    
    font-size: 14px;
    letter-spacing: 0.2em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif; /*  add this */

    color: #fff;
    z-index: 6;
}
.robe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 767px) {
    .robe-grid {
        grid-template-columns: 1fr;
    }
}

.robe-grid {
    margin-top: 30px;
}

/* Mobile portrait → 1 per row */
@media (max-width: 767px) {
    .robe-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile landscape → 2 per row */
@media (max-width: 767px) and (orientation: landscape) {
    .robe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rr-click-card,
.rr-click-card * {
    cursor: pointer;
}

.rr-email-popup-wrapper{
    position:relative;
    display:inline-block;
}

.rr-email-popup{
    position:absolute;
    bottom:calc(100% + 14px);
    left:0;
    background:#fff;
    border:1px solid #E8DFD5;
    border-radius:14px;
    padding:18px;
    width:240px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    display:none;
    z-index:99999;
}
.rr-email-popup a{
    display:block;
    padding:8px 0;
    text-decoration:none;
}

@media (max-width: 768px){

    .rr-email-popup{
        display:none !important;
    }

}