/**
 * Jewel Al-Basem - WooCommerce Custom Styles
 * 
 * Pixel-perfect styling for Single Product Page, Cart, Checkout, and Archives.
 * @package Jewel_Albasem
 */

/* ==========================================================================
   0. Global WooCommerce Price Styling
   ========================================================================== */
.price ins,
.jewel-product-price ins,
.jewel-single-price ins,
ins {
  text-decoration: none !important;
  color: #c01826 !important;
  font-weight: 800 !important;
}

.price del,
.jewel-product-price del,
.jewel-single-price del,
del {
  color: #9ca3af !important;
  font-size: 0.8em !important;
  font-weight: 400 !important;
  text-decoration: line-through !important;
  opacity: 0.75;
}

.price,
.jewel-product-price,
.jewel-single-price {
  display: flex !important;
  align-items: baseline !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
}

.price ins,
.jewel-product-price ins,
.jewel-single-price ins {
  order: 1 !important;
}

.price del,
.jewel-product-price del,
.jewel-single-price del {
  order: 2 !important;
}

/* ==========================================================================
   1. Single Product Page Master Layout
   ========================================================================== */
.jewel-single-product-page {
  background-color: #ffffff;
  font-family: 'Cairo', system-ui, -apple-system, sans-serif;
  color: #111827;
  padding: 30px 0 60px 0;
}

.jewel-product-main-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

@media (max-width: 991px) {
  .jewel-product-main-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   2. Product Image Column
   ========================================================================== */
.jewel-product-image-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.jewel-main-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

#jewel-main-product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

#jewel-main-product-image:hover {
  transform: scale(1.04);
}

/* ==========================================================================
   3. Product Info & Purchase Column
   ========================================================================== */
.jewel-product-info-column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.jewel-product-info-column h1 {
  font-size: 28px;
  font-weight: 900;
  color: #111827;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .jewel-product-info-column h1 {
    font-size: 22px;
  }
}

.jewel-single-price {
  font-size: 26px;
  font-weight: 900;
  color: #c01826 !important;
  margin-bottom: 24px;
}

/* Wishlist Heart Button */
.jewel-wishlist-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.jewel-wishlist-btn:hover,
.jewel-wishlist-btn.active {
  color: #c01826;
  transform: scale(1.1);
}

/* Color Swatches Grid */
.jewel-swatches-section {
  margin-bottom: 20px;
}

.jewel-swatches-section label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.jewel-color-swatches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.jewel-color-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
}

.jewel-color-card:hover {
  border-color: #111827;
}

.jewel-color-card.active,
.jewel-color-card.ring-1 {
  border-color: #111827 !important;
  box-shadow: 0 0 0 1px #111827;
}

.jewel-color-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111827;
}

[dir="ltr"] .jewel-color-dot {
  right: auto;
  left: 8px;
}

.jewel-color-card img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-bottom: 6px;
}

.jewel-color-card span {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}

/* Size Select & Quantity Stepper */
.jewel-cart-form select {
  width: 100%;
  height: 48px;
  background-color: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  outline: none;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.jewel-cart-form select:focus {
  border-color: #111827;
}

.jewel-qty-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  background-color: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 4px 8px;
}

.jewel-qty-btn {
  width: 32px;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: #4b5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.jewel-qty-btn:hover {
  color: #111827;
}

.jewel-qty-stepper input {
  width: 44px;
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  padding: 0;
  outline: none;
}

/* Buttons */
.jewel-single-add-to-cart {
  width: 100%;
  height: 52px;
  background-color: #a00613 !important;
  color: #ffffff !important;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 2px 6px rgba(160, 6, 19, 0.2);
}

.jewel-single-add-to-cart:hover {
  background-color: #85040f !important;
}

.jewel-single-add-to-cart:active,
#jewel-buy-now-btn:active {
  transform: scale(0.99);
}

#jewel-buy-now-btn {
  width: 100%;
  height: 52px;
  background-color: #ffffff;
  color: #111827;
  border: 1.5px solid #111827;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#jewel-buy-now-btn:hover {
  background-color: #f8f9fa;
}

/* Trust Badges */
.jewel-trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid #f3f4f6;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  gap: 12px;
  flex-wrap: wrap;
}

.jewel-trust-badges > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   4. Tabs Section (Overview & Reviews)
   ========================================================================== */
.jewel-product-tabs-section {
  margin-top: 48px;
  margin-bottom: 64px;
}

.jewel-tabs-nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #f1f3f5;
  padding: 4px;
  border-radius: 12px;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 28px;
  gap: 4px;
}

[dir="ltr"] .jewel-tabs-nav-bar {
  margin-right: auto;
  margin-left: 0;
}

.jewel-tab-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: #6b7280;
  outline: none;
}

.jewel-tab-btn.active {
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.jewel-tabs-content-wrapper {
  border-top: 1px solid #f3f4f6;
  padding-top: 28px;
}

.jewel-product-content {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}

.jewel-product-features h3 {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-top: 24px;
  margin-bottom: 12px;
}

.jewel-product-features ul {
  list-style: disc;
  padding-right: 20px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.8;
}

[dir="ltr"] .jewel-product-features ul {
  padding-right: 0;
  padding-left: 20px;
}

.jewel-submit-review-btn,
#submit.jewel-submit-review-btn {
  background-color: #a00613 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  padding: 14px 32px !important;
  border-radius: 12px !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 15px !important;
  display: inline-block !important;
  transition: all 0.2s ease !important;
}

.jewel-submit-review-btn:hover {
  background-color: #85040f !important;
}

.logged-in-as,
.comment-notes,
.must-log-in {
  display: none !important;
}

/* ==========================================================================
   5. Customer Reviews (آراء العملاء)
   ========================================================================== */
.jewel-product-testimonials-section {
  margin: 64px 0;
}

.jewel-product-testimonials-section h2 {
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  color: #111827;
  margin-bottom: 36px;
}

.jewel-product-testimonials-section .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .jewel-product-testimonials-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .jewel-product-testimonials-section .grid {
    grid-template-columns: 1fr;
  }
}

.jewel-testimonial-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jewel-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   6. Related Products (مقترحة لك)
   ========================================================================== */
.jewel-product-related-section {
  margin: 64px 0 40px 0;
  padding-top: 32px;
  border-top: 1px solid #f3f4f6;
}

.jewel-product-related-section h2 {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 28px;
}

.jewel-product-related-section .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .jewel-product-related-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .jewel-product-related-section .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ==========================================================================
   7. Login & Registration Modal / Page (Exact Reference Match)
   ========================================================================== */
.jewel-auth-page-wrapper {
  background-color: #f3f4f6 !important;
  min-height: 80vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 55px !important;
}

@media (max-width: 768px) {
  .jewel-auth-page-wrapper {
    padding: 20px 16px !important;
  }
}

.jewel-auth-modal-card {
  background-color: #ffffff !important;
  border-radius: 28px !important;
  padding: 28px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid #e5e7eb !important;
  max-width: 1200px !important;
  width: 100% !important;
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr 1.1fr !important;
  gap: 36px !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .jewel-auth-modal-card {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
    gap: 20px !important;
  }
  .jewel-auth-image-box {
    height: 220px !important;
  }
}

.jewel-auth-image-box {
  width: 100% !important;
  height: 520px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  position: relative !important;
  background-color: #f8f9fa !important;
}

.jewel-auth-image-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.jewel-auth-close-btn {
  position: absolute !important;
  top: 16px !important;
  color: #c01826 !important;
  font-size: 26px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  z-index: 20 !important;
  cursor: pointer !important;
  transition: transform 0.2s ease !important;
}

[dir="rtl"] .jewel-auth-close-btn {
  left: 24px !important;
  right: auto !important;
}

[dir="ltr"] .jewel-auth-close-btn {
  right: 24px !important;
  left: auto !important;
}

.jewel-auth-close-btn:hover {
  transform: scale(1.15) !important;
  color: #900d17 !important;
}

.jewel-auth-form-box {
  padding: 10px 16px 10px 10px !important;
}

[dir="ltr"] .jewel-auth-form-box {
  padding: 10px 10px 10px 16px !important;
}

.jewel-input-field {
  width: 100% !important;
  height: 46px !important;
  background-color: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  outline: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  box-sizing: border-box !important;
}

.jewel-input-field:focus {
  border-color: #111827 !important;
  box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.05) !important;
}

.jewel-auth-btn-primary {
  width: 100% !important;
  height: 48px !important;
  background-color: #a00613 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, transform 0.1s ease !important;
  box-shadow: 0 4px 12px rgba(160, 6, 19, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 12px !important;
}

.jewel-auth-btn-primary:hover {
  background-color: #85040f !important;
  transform: translateY(-1px) !important;
}

.jewel-auth-divider {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  margin: 18px 0 !important;
  text-align: center !important;
}

.jewel-auth-divider::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background-color: #e5e7eb !important;
  z-index: 1 !important;
}

.jewel-auth-divider span {
  position: relative !important;
  z-index: 2 !important;
  background-color: #ffffff !important;
  padding: 0 12px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #9ca3af !important;
}

.jewel-auth-btn-secondary {
  width: 100% !important;
  height: 46px !important;
  background-color: #ffffff !important;
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  border: 1px solid #e5e7eb !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.jewel-auth-btn-secondary:hover {
  background-color: #f9fafb !important;
  border-color: #111827 !important;
}

/* ==========================================================================
   8. Logged In User State Card (Centered Vertical Layout)
   ========================================================================== */
.jewel-logged-in-card {
  background-color: #ffffff !important;
  border-radius: 28px !important;
  padding: 48px 32px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid #e5e7eb !important;
  max-width: 520px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

.jewel-logout-btn {
  background-color: #a00613 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  padding: 14px 32px !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(160, 6, 19, 0.3) !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  line-height: 1.4 !important;
}

.jewel-logout-btn:hover {
  background-color: #85040f !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

/* ==========================================================================
   9. Checkout Page (Exact Reference Match)
   ========================================================================== */
.jewel-checkout-page-wrapper {
  background-color: #f9fafb !important;
  min-height: 80vh !important;
}

.jewel-checkout-container {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 32px 20px !important;
}

.jewel-checkout-grid {
  display: grid !important;
  grid-template-columns: 1fr 380px !important;
  gap: 32px !important;
  align-items: start !important;
  width: 100% !important;
}

@media (max-width: 1024px) {
  .jewel-checkout-grid {
    grid-template-columns: 1fr !important;
  }
}

.jewel-checkout-form-col {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.jewel-checkout-summary-col {
  width: 100% !important;
  min-width: 0 !important;
  position: sticky !important;
  top: 90px !important;
}

.jewel-checkout-fields-grid > .grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

@media (max-width: 640px) {
  .jewel-checkout-fields-grid > .grid {
    grid-template-columns: 1fr !important;
  }
}

.jewel-checkout-card {
  background-color: #ffffff !important;
  border-radius: 24px !important;
  padding: 32px !important;
  border: 1px solid #f3f4f6 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

@media (max-width: 640px) {
  .jewel-checkout-card {
    padding: 20px !important;
    border-radius: 18px !important;
  }
}

.jewel-checkout-input {
  width: 100% !important;
  height: 48px !important;
  background-color: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.jewel-checkout-input:focus {
  background-color: #ffffff !important;
  border-color: #111827 !important;
  box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.06) !important;
}

.jewel-checkout-select {
  width: 100% !important;
  height: 48px !important;
  background-color: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 0 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  outline: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  appearance: auto !important;
}

.jewel-checkout-select:focus {
  background-color: #ffffff !important;
  border-color: #111827 !important;
}

.jewel-phone-input-wrap {
  height: 48px !important;
  box-sizing: border-box !important;
}

.jewel-checkout-summary-card {
  background-color: #ffffff !important;
  border-radius: 24px !important;
  padding: 28px !important;
  border: 1px solid #f3f4f6 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.jewel-summary-count-badge {
  background-color: #fcedeb !important;
  color: #c01826 !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  padding: 4px 12px !important;
  border-radius: 8px !important;
}

.jewel-place-order-btn,
#place_order.jewel-place-order-btn {
  width: 100% !important;
  height: 52px !important;
  background-color: #a00613 !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(160, 6, 19, 0.25) !important;
  transition: all 0.2s ease !important;
  margin-top: 12px !important;
  text-decoration: none !important;
}

.jewel-place-order-btn:hover {
  background-color: #85040f !important;
  transform: translateY(-1px) !important;
}

/* Payment Methods in Checkout */
.woocommerce-checkout-payment {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.woocommerce-checkout-payment ul.wc_payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.woocommerce-checkout-payment ul.wc_payment_methods li.wc_payment_method {
  background-color: #f8f9fa !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px !important;
  padding: 16px 20px !important;
  transition: all 0.2s ease !important;
}

.woocommerce-checkout-payment ul.wc_payment_methods li.wc_payment_method:hover {
  border-color: #111827 !important;
  background-color: #ffffff !important;
}

.woocommerce-checkout-payment ul.wc_payment_methods li.wc_payment_method label {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
}

.woocommerce-checkout-payment .payment_box {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  margin-top: 10px !important;
  font-size: 13px !important;
  color: #4b5563 !important;
}

/* Product cards in checkout (Max 3 items) */
.jewel-checkout-product-card {
  background-color: #ffffff !important;
  border-radius: 20px !important;
  padding: 16px 20px !important;
  border: 1px solid #f3f4f6 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

/* Payment Gateway cards */
.jewel-payment-gateway-card {
  background-color: #f8f9fa !important;
  border: 1px solid #f3f4f6 !important;
  border-radius: 20px !important;
  padding: 16px 20px !important;
  transition: all 0.2s ease !important;
  margin-bottom: 12px !important;
  list-style: none !important;
}

.jewel-payment-gateway-card:hover {
  background-color: #ffffff !important;
  border-color: #e5e7eb !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03) !important;
}

.jewel-gateway-icon-box img {
  max-height: 28px !important;
  max-width: 60px !important;
  object-fit: contain !important;
  border-radius: 6px !important;
}

/* Hide duplicate bottom place-order area & privacy policy text */
.woocommerce-checkout-payment .place-order,
.woocommerce-checkout-payment .woocommerce-privacy-policy-text,
.woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout #payment .place-order,
.woocommerce-checkout #payment .woocommerce-privacy-policy-text,
.woocommerce-privacy-policy-text,
.woocommerce-terms-and-conditions-wrapper,
#payment button#place_order:not(.jewel-place-order-btn),
.woocommerce-checkout-payment button[type="submit"] {
  display: none !important;
}







