/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 28 2026 | 13:05:49 */
/* ============================================================
   RACINE D'ENFANTS — WooCommerce Product Page Redesign
   SCOPED: Every rule prefixed with #ori-shop-details
   Does NOT touch header, footer, menu, or global elements
   ============================================================ */

/* --- CSS Variables (scoped to product section) --- */
#ori-shop-details {
  --re-green-dark: #1a3c2a;
  --re-green-mid: #2d6a4f;
  --re-green-light: #52b788;
  --re-green-pale: #d8f3dc;
  --re-earth: #c17f3e;
  --re-earth-light: #f4e4c1;
  --re-white: #fafaf8;
  --re-off-white: #f5f3ef;
  --re-gray-100: #eae8e4;
  --re-gray-200: #d4d1cb;
  --re-gray-400: #9e9a92;
  --re-gray-600: #6b6860;
  --re-gray-800: #3a3833;
  --re-black: #1d1b18;
  --re-red-soft: #c0392b;
  --re-radius-sm: 6px;
  --re-radius-md: 12px;
  --re-radius-lg: 20px;
  --re-radius-xl: 32px;
  --re-shadow-sm: 0 1px 3px rgba(26, 60, 42, 0.06);
  --re-shadow-md: 0 4px 16px rgba(26, 60, 42, 0.08);
  --re-shadow-lg: 0 12px 40px rgba(26, 60, 42, 0.12);
  --re-shadow-xl: 0 20px 60px rgba(26, 60, 42, 0.16);
  --re-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Import elegant fonts — place at TOP of your CSS */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================
   PRODUCT SECTION WRAPPER
   ============================================================ */

#ori-shop-details.ori-shop-details-section {
  background: var(--re-white) !important;
  padding-bottom: 0 !important;
}

#ori-shop-details > .container {
  max-width: 1340px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* ============================================================
   PRODUCT GALLERY (Left Column)
   ============================================================ */

#ori-shop-details .ori-shop-details-content > .row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  align-items: flex-start !important;
  padding: 32px 0 60px !important;
}

#ori-shop-details .ori-shop-details-content > .row > .col-lg-6:first-child {
  flex: 0 0 55% !important;
  max-width: 55% !important;
  padding-right: 48px !important;
}

#ori-shop-details .woocommerce-product-gallery {
  background: var(--re-off-white) !important;
  border-radius: var(--re-radius-lg) !important;
  overflow: hidden !important;
  position: relative !important;
  box-shadow: var(--re-shadow-md) !important;
  transition: box-shadow 0.4s var(--re-transition) !important;
}

#ori-shop-details .woocommerce-product-gallery:hover {
  box-shadow: var(--re-shadow-lg) !important;
}

#ori-shop-details .woocommerce-product-gallery__wrapper {
  border-radius: var(--re-radius-lg) !important;
  overflow: hidden !important;
}

#ori-shop-details .woocommerce-product-gallery__image a {
  display: block !important;
}

#ori-shop-details .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: var(--re-radius-lg) !important;
  transition: transform 0.6s var(--re-transition) !important;
}

#ori-shop-details .woocommerce-product-gallery__image:hover img {
  transform: scale(1.03) !important;
}

/* Thumbnail navigation */
#ori-shop-details .flex-control-thumbs {
  display: flex !important;
  gap: 10px !important;
  padding: 16px !important;
  margin: 0 !important;
  list-style: none !important;
}

#ori-shop-details .flex-control-thumbs li {
  flex: 0 0 72px !important;
  width: 72px !important;
  height: 72px !important;
  border-radius: var(--re-radius-sm) !important;
  overflow: hidden !important;
  cursor: pointer !important;
  border: 2px solid transparent !important;
  transition: all 0.3s var(--re-transition) !important;
}

#ori-shop-details .flex-control-thumbs li img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: var(--re-radius-sm) !important;
  opacity: 0.6 !important;
  transition: opacity 0.3s var(--re-transition) !important;
}

#ori-shop-details .flex-control-thumbs li img.flex-active,
#ori-shop-details .flex-control-thumbs li:hover img {
  opacity: 1 !important;
}

/* ============================================================
   PRODUCT INFO (Right Column)
   ============================================================ */

#ori-shop-details .ori-shop-details-content > .row > .col-lg-6:last-child {
  flex: 0 0 45% !important;
  max-width: 45% !important;
  padding-left: 16px !important;
}

#ori-shop-details .ori-shop-details-text-wrapper {
  padding: 12px 0 0 !important;
}

/* --- Title --- */
#ori-shop-details .ori-shop-details-title h3 {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 2.4rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: var(--re-black) !important;
  margin-bottom: 16px !important;
  letter-spacing: -0.02em !important;
}

/* --- Price --- */
#ori-shop-details .ori-shop-details-title .price {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 4px !important;
  margin-bottom: 28px !important;
}

#ori-shop-details .ori-shop-details-title .price .woocommerce-Price-amount {
  font-family: 'Outfit', sans-serif !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #c0392b !important;
  letter-spacing: -0.01em !important;
}

#ori-shop-details .ori-shop-details-title .price .woocommerce-Price-currencySymbol {
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: #c0392b !important;
}

/* Availability badge */
#ori-shop-details .stock.available-on-backorder {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  color: var(--re-earth) !important;
  background: var(--re-earth-light) !important;
  padding: 6px 14px !important;
  border-radius: 100px !important;
  margin-top: 8px !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

#ori-shop-details .stock.available-on-backorder::before {
  content: '' !important;
  width: 7px !important;
  height: 7px !important;
  background: var(--re-earth) !important;
  border-radius: 50% !important;
  display: inline-block !important;
  animation: re-pulse-dot 2s infinite !important;
}

@keyframes re-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Description --- */
#ori-shop-details .ori-shop-details-desc {
  margin-bottom: 32px !important;
  padding-bottom: 32px !important;
  border-bottom: 1px solid var(--re-gray-100) !important;
}

#ori-shop-details .ori-shop-details-desc p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: var(--re-gray-600) !important;
  margin-bottom: 12px !important;
}

#ori-shop-details .ori-shop-details-desc p strong {
  color: var(--re-gray-800) !important;
  font-weight: 600 !important;
}

#ori-shop-details .ori-shop-details-desc p em {
  color: var(--re-green-mid) !important;
  font-style: normal !important;
  font-weight: 500 !important;
}

#ori-shop-details .ori-shop-details-desc ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 16px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

#ori-shop-details .ori-shop-details-desc ul li {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  color: var(--re-gray-600) !important;
  padding: 12px 16px !important;
  background: var(--re-off-white) !important;
  border-radius: var(--re-radius-sm) !important;
  border-left: 3px solid var(--re-green-light) !important;
  transition: all 0.25s var(--re-transition) !important;
  line-height: 1.5 !important;
}

#ori-shop-details .ori-shop-details-desc ul li:hover {
  background: var(--re-green-pale) !important;
  border-left-color: var(--re-green-mid) !important;
  transform: translateX(4px) !important;
}

#ori-shop-details .ori-shop-details-desc ul li strong {
  color: var(--re-green-dark) !important;
  font-weight: 600 !important;
}

/* ============================================================
   VARIATIONS (Size Selector)
   ============================================================ */

#ori-shop-details .variations {
  width: 100% !important;
  border: none !important;
  border-collapse: separate !important;
  margin-bottom: 28px !important;
}

#ori-shop-details .variations tr {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

#ori-shop-details .variations th.label {
  text-align: left !important;
  padding: 0 !important;
}

#ori-shop-details .variations th.label label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--re-gray-800) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

#ori-shop-details .variations td.value {
  padding: 0 !important;
}

#ori-shop-details .variations select {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--re-black) !important;
  padding: 14px 44px 14px 18px !important;
  height: auto !important;
  line-height: 1.4 !important;
  border: 2px solid var(--re-gray-200) !important;
  border-radius: var(--re-radius-md) !important;
  background-color: var(--re-white) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233a3833' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px 7px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  cursor: pointer !important;
  transition: all 0.25s var(--re-transition) !important;
  outline: none !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

#ori-shop-details .variations select:hover {
  border-color: var(--re-green-light) !important;
}

#ori-shop-details .variations select:focus {
  border-color: var(--re-green-mid) !important;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12) !important;
}

#ori-shop-details .reset_variations {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.8rem !important;
  color: var(--re-gray-400) !important;
  text-decoration: none !important;
  margin-top: 6px !important;
  display: inline-block !important;
  transition: color 0.2s !important;
}

#ori-shop-details .reset_variations:hover {
  color: var(--re-red-soft) !important;
}

/* ============================================================
   ADD TO CART AREA
   ============================================================ */

#ori-shop-details .ori-shop-quantity-btn {
  gap: 0 !important;
  flex-direction: column !important;
}

#ori-shop-details .woocommerce-variation-add-to-cart {
  display: flex !important;
  flex-direction: row-reverse !important;
  align-items: stretch !important;
  gap: 12px !important;
  width: 100% !important;
}

/* Quantity Input */
#ori-shop-details .woocommerce-variation-add-to-cart .quantity {
  flex: 0 0 auto !important;
}

#ori-shop-details .woocommerce-variation-add-to-cart .quantity input.qty {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--re-black) !important;
  text-align: center !important;
  width: 64px !important;
  height: 56px !important;
  border: 2px solid var(--re-gray-200) !important;
  border-radius: var(--re-radius-md) !important;
  background: var(--re-white) !important;
  outline: none !important;
  transition: all 0.25s var(--re-transition) !important;
  -moz-appearance: textfield !important;
}

#ori-shop-details .woocommerce-variation-add-to-cart .quantity input.qty::-webkit-outer-spin-button,
#ori-shop-details .woocommerce-variation-add-to-cart .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

#ori-shop-details .woocommerce-variation-add-to-cart .quantity input.qty:focus {
  border-color: var(--re-green-mid) !important;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12) !important;
}

/* Add to Cart Button */
#ori-shop-details .woocommerce-variation-add-to-cart .buttons-box {
  flex: 1 !important;
}

#ori-shop-details .woocommerce-variation-add-to-cart .buttons-box button,
#ori-shop-details .woocommerce-variation-add-to-cart .buttons-box .theme-btn {
  width: 100% !important;
  height: 56px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  background: var(--re-green-dark) !important;
  border: none !important;
  border-radius: var(--re-radius-md) !important;
  cursor: pointer !important;
  transition: all 0.35s var(--re-transition) !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#ori-shop-details .woocommerce-variation-add-to-cart .buttons-box button:hover,
#ori-shop-details .woocommerce-variation-add-to-cart .buttons-box .theme-btn:hover {
  background: var(--re-green-mid) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.3) !important;
}

#ori-shop-details .woocommerce-variation-add-to-cart .buttons-box button:active,
#ori-shop-details .woocommerce-variation-add-to-cart .buttons-box .theme-btn:active {
  transform: translateY(0) !important;
  box-shadow: var(--re-shadow-sm) !important;
}

/* Hide duplicate text in button */
#ori-shop-details .btn-wrap .text-two {
  display: none !important;
}

#ori-shop-details .btn-wrap .text-one {
  font-family: 'Outfit', sans-serif !important;
}

/* ============================================================
   SKU & CATEGORIES
   ============================================================ */

#ori-shop-details .ori-code-category {
  margin-top: 32px !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--re-gray-100) !important;
}

#ori-shop-details .ori-code-category > ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

#ori-shop-details .ori-code-category > ul > li {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.82rem !important;
  color: var(--re-gray-400) !important;
  background: none !important;
  border: none !important;
  border-left: none !important;
  padding: 0 !important;
}

#ori-shop-details .ori-code-category > ul > li:hover {
  transform: none !important;
  background: none !important;
}

#ori-shop-details .ori-code-category > ul > li span {
  color: var(--re-gray-400) !important;
}

#ori-shop-details .ori-code-category > ul > li a {
  color: var(--re-green-mid) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.2s !important;
}

#ori-shop-details .ori-code-category > ul > li a:hover {
  color: var(--re-green-dark) !important;
}

/* ============================================================
   TABS (Description, Additional Info, Reviews)
   ============================================================ */

#ori-shop-details .ori-shop-details-review-content {
  border-top: 1px solid var(--re-gray-100) !important;
  padding-top: 0 !important;
  margin-top: 20px !important;
}

#ori-shop-details .shop-review-tab-btn {
  margin-bottom: 0 !important;
}

#ori-shop-details .shop-review-tab-btn .nav-tabs {
  border-bottom: 2px solid var(--re-gray-100) !important;
  display: flex !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

#ori-shop-details .shop-review-tab-btn .nav-tabs .nav-item {
  margin-bottom: -2px !important;
}

#ori-shop-details .shop-review-tab-btn .nav-tabs .nav-link {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--re-gray-400) !important;
  padding: 20px 28px !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  background: none !important;
  cursor: pointer !important;
  transition: all 0.3s var(--re-transition) !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
}

#ori-shop-details .shop-review-tab-btn .nav-tabs .nav-link:hover {
  color: var(--re-gray-800) !important;
}

#ori-shop-details .shop-review-tab-btn .nav-tabs .nav-link.active {
  color: var(--re-green-dark) !important;
  font-weight: 600 !important;
  border-bottom-color: var(--re-green-mid) !important;
}

/* Tab Content */
#ori-shop-details .shop-details-tab-textarea {
  padding: 40px 0 60px !important;
}

#ori-shop-details .shop-details-description-text {
  max-width: 860px !important;
}

#ori-shop-details .shop-details-description-text h2 {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 1.8rem !important;
  font-weight: 400 !important;
  color: var(--re-black) !important;
  margin-bottom: 16px !important;
  line-height: 1.3 !important;
}

#ori-shop-details .shop-details-description-text h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: var(--re-green-dark) !important;
  margin: 32px 0 12px !important;
  letter-spacing: -0.01em !important;
}

#ori-shop-details .shop-details-description-text p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
  color: var(--re-gray-600) !important;
  margin-bottom: 14px !important;
}

#ori-shop-details .shop-details-description-text article > ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 16px 0 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

#ori-shop-details .shop-details-description-text article > ul > li {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  color: var(--re-gray-600) !important;
  padding: 14px 18px !important;
  background: var(--re-off-white) !important;
  border-radius: var(--re-radius-sm) !important;
  border-left: 3px solid var(--re-green-light) !important;
  transition: all 0.25s var(--re-transition) !important;
}

#ori-shop-details .shop-details-description-text article > ul > li:hover {
  background: var(--re-green-pale) !important;
  transform: translateX(4px) !important;
}

#ori-shop-details .shop-details-description-text article > ul > li strong {
  color: var(--re-green-dark) !important;
  font-weight: 600 !important;
}

/* Technical specs table */
#ori-shop-details .shop-details-description-text table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid var(--re-gray-100) !important;
  border-radius: var(--re-radius-md) !important;
  overflow: hidden !important;
  margin: 24px 0 !important;
  font-family: 'Outfit', sans-serif !important;
}

#ori-shop-details .shop-details-description-text table tr {
  transition: background 0.2s !important;
}

#ori-shop-details .shop-details-description-text table tr:hover {
  background-color: var(--re-green-pale) !important;
}

#ori-shop-details .shop-details-description-text table td {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  color: var(--re-gray-600) !important;
  padding: 14px 20px !important;
  border: none !important;
  border-bottom: 1px solid var(--re-gray-100) !important;
}

#ori-shop-details .shop-details-description-text table tr:last-child td {
  border-bottom: none !important;
}

#ori-shop-details .shop-details-description-text table td:first-child {
  font-weight: 600 !important;
  color: var(--re-gray-800) !important;
  width: 40% !important;
  background: rgba(0,0,0,0.01) !important;
}

/* Solidarity action block */
#ori-shop-details .shop-details-description-text div[style*="background-color: #f2f2f2"] {
  background: linear-gradient(135deg, var(--re-green-pale), var(--re-earth-light)) !important;
  border-radius: var(--re-radius-md) !important;
  padding: 28px 32px !important;
  margin-top: 36px !important;
  border: 1px solid rgba(45, 106, 79, 0.1) !important;
}

#ori-shop-details .shop-details-description-text div[style*="background-color: #f2f2f2"] p {
  font-size: 0.95rem !important;
  color: var(--re-green-dark) !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* Hide the generic "Read More" link */
#ori-shop-details .shop-details-description-text a.read-more {
  display: none !important;
}

/* Additional Info tab - attributes table */
#ori-shop-details .woocommerce-product-attributes {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid var(--re-gray-100) !important;
  border-radius: var(--re-radius-md) !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 500px !important;
}

#ori-shop-details .woocommerce-product-attributes th {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--re-gray-800) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 14px 20px !important;
  background: var(--re-off-white) !important;
  border: none !important;
  width: 35% !important;
}

#ori-shop-details .woocommerce-product-attributes td {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  color: var(--re-gray-600) !important;
  padding: 14px 20px !important;
  border: none !important;
}

#ori-shop-details .woocommerce-product-attributes td p {
  margin: 0 !important;
}

/* ============================================================
   REVIEWS TAB
   ============================================================ */

#ori-shop-details #reviews .woocommerce-Reviews-title {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  color: var(--re-black) !important;
  margin-bottom: 16px !important;
}

#ori-shop-details .woocommerce-noreviews {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  color: var(--re-gray-400) !important;
  padding: 24px !important;
  background: var(--re-off-white) !important;
  border-radius: var(--re-radius-md) !important;
  text-align: center !important;
}

#ori-shop-details #review_form .comment-reply-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--re-gray-800) !important;
  margin-bottom: 16px !important;
  display: block !important;
}

#ori-shop-details #review_form .comment-form label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--re-gray-600) !important;
  margin-bottom: 6px !important;
  display: block !important;
}

#ori-shop-details #review_form select,
#ori-shop-details #review_form textarea {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  border: 2px solid var(--re-gray-200) !important;
  border-radius: var(--re-radius-md) !important;
  padding: 12px 16px !important;
  width: 100% !important;
  transition: all 0.25s var(--re-transition) !important;
  outline: none !important;
  background: var(--re-white) !important;
}

#ori-shop-details #review_form select:focus,
#ori-shop-details #review_form textarea:focus {
  border-color: var(--re-green-mid) !important;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12) !important;
}

#ori-shop-details #review_form .submit {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: var(--re-green-dark) !important;
  border: none !important;
  border-radius: var(--re-radius-md) !important;
  padding: 14px 32px !important;
  cursor: pointer !important;
  transition: all 0.3s var(--re-transition) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

#ori-shop-details #review_form .submit:hover {
  background: var(--re-green-mid) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.25) !important;
}

/* ============================================================
   STRIPE EXPRESS CHECKOUT (scoped)
   ============================================================ */

#ori-shop-details #wc-stripe-express-checkout-element {
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px solid var(--re-gray-100) !important;
}

/* ============================================================
   WOOCOMMERCE NOTICES (scoped)
   ============================================================ */

#ori-shop-details .woocommerce-notices-wrapper {
  position: relative !important;
  z-index: 9999 !important;
}

#ori-shop-details .woocommerce-notices-wrapper .woocommerce-message {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  border-radius: var(--re-radius-md) !important;
  padding: 16px 20px !important;
  margin-bottom: 20px !important;
  background: var(--re-green-pale) !important;
  border-color: var(--re-green-light) !important;
  color: var(--re-green-dark) !important;
  position: relative !important;
  z-index: 9999 !important;
}

#ori-shop-details .woocommerce-notices-wrapper .woocommerce-message a.button {
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  color: var(--re-green-dark) !important;
  background: #fff !important;
  border: 1px solid var(--re-green-mid) !important;
  border-radius: var(--re-radius-sm) !important;
  padding: 8px 18px !important;
  text-decoration: none !important;
  transition: all 0.25s var(--re-transition) !important;
}

#ori-shop-details .woocommerce-notices-wrapper .woocommerce-message a.button:hover {
  background: var(--re-green-dark) !important;
  color: #fff !important;
}

/* ============================================================
   RESPONSIVE — all scoped to #ori-shop-details
   ============================================================ */

@media (max-width: 1024px) {
  #ori-shop-details .ori-shop-details-content > .row > .col-lg-6:first-child,
  #ori-shop-details .ori-shop-details-content > .row > .col-lg-6:last-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #ori-shop-details .ori-shop-details-content > .row {
    padding: 24px 0 40px !important;
    gap: 32px !important;
  }

  #ori-shop-details .ori-shop-details-title h3 {
    font-size: 1.9rem !important;
  }

  #ori-shop-details .shop-review-tab-btn .nav-tabs .nav-link {
    padding: 16px 18px !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 767px) {
  #ori-shop-details > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  #ori-shop-details .ori-shop-details-title h3 {
    font-size: 1.6rem !important;
  }

  #ori-shop-details .ori-shop-details-title .price .woocommerce-Price-amount {
    font-size: 1.6rem !important;
  }

  #ori-shop-details .woocommerce-variation-add-to-cart {
    flex-direction: column !important;
  }

  #ori-shop-details .woocommerce-variation-add-to-cart .quantity input.qty {
    width: 100% !important;
  }

  #ori-shop-details .shop-review-tab-btn .nav-tabs {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  #ori-shop-details .shop-review-tab-btn .nav-tabs::-webkit-scrollbar {
    display: none !important;
  }

  #ori-shop-details .shop-review-tab-btn .nav-tabs .nav-link {
    padding: 14px 16px !important;
    font-size: 0.82rem !important;
  }

  #ori-shop-details .shop-details-tab-textarea {
    padding: 28px 0 40px !important;
  }

  #ori-shop-details .shop-details-description-text h2 {
    font-size: 1.4rem !important;
  }

  #ori-shop-details .shop-details-description-text table td:first-child {
    width: 45% !important;
  }
}