/**
 * Lion Card Dual Shipping - Styles  
 * Version: 1.9.6
 */

/* ========================================
   HIDE DEFAULT WC SHIPPING
======================================== */
.woocommerce-checkout #shipping_method,
.woocommerce-checkout .woocommerce-shipping-methods,
.woocommerce-checkout tr.woocommerce-shipping-totals:not(.lc-inbound-shipping-row),
.woocommerce-checkout .shipping-calculator-form,
.woocommerce-checkout-review-order-table .shipping:not(.lc-inbound-shipping-row),
.woocommerce-checkout ul#shipping_method li,
.woocommerce-checkout .woocommerce-shipping-totals td {
  display: none !important;
}

.lc-inbound-shipping-row {
  display: table-row !important;
  visibility: visible !important;
}

/* ========================================
   SHIPPING PANELS - FULL WIDTH, NO BOX
======================================== */
.lc-ds-wrap {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 0 24px 0 !important;
  display: grid;
  gap: 20px;
}

.lc-ds-group {
  display: flex;
  flex-direction: column;
  gap: 6px !important; /* REDUCED from 12px - tighter radio buttons */
}

.lc-ds-title {
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 10px;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lc-ds-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px !important;
  border: 2px solid #333;
  border-radius: 8px;
  margin: 0;
  width: 100% !important; /* FULL WIDTH */
  cursor: pointer;
  transition: all 0.2s ease;
  background: #0a0a0a;
  color: #fff;
  position: relative;
  box-sizing: border-box;
}

.lc-ds-option:hover {
  border-color: #555;
  background: #1a1a1a;
}

.lc-ds-option.is-selected,
.lc-ds-option:has(input[type="radio"]:checked) {
  border-color: #ffcc00 !important;
  background: #1a1a1a !important;
  box-shadow: 0 0 16px rgba(255, 204, 0, 0.25);
}

.lc-ds-option.is-selected::after,
.lc-ds-option:has(input[type="radio"]:checked)::after {
  content: '✓';
  position: absolute;
  right: 16px;
  color: #ffcc00;
  font-weight: bold;
  font-size: 1.3em;
}

.lc-ds-option input[type="radio"] {
  margin: 0;
  flex-shrink: 0;
  width: 16px !important; /* SMALLER */
  height: 16px !important; /* SMALLER */
  accent-color: #ffcc00;
}

.lc-ds-option .label {
  margin-left: 12px;
  flex: 1;
  font-weight: 500;
  color: #fff;
  font-size: 0.95em;
}

.lc-ds-option .price {
  font-weight: 700;
  margin-left: 12px;
  margin-right: 35px;
  color: #ffcc00;
  font-size: 1em;
}

/* ========================================
   ORDER REVIEW TABLE
======================================== */
.woocommerce-checkout-review-order-table {
  background: #1a1a1a !important;
  border: 1px solid #333 !important;
  border-radius: 8px;
}

.woocommerce-checkout-review-order-table thead th {
  background: #2a2a2a !important;
  color: #ffcc00 !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  padding: 15px !important;
  border-bottom: 2px solid #444 !important;
}

.woocommerce-checkout-review-order-table .cart_item td,
.woocommerce-checkout-review-order-table .cart_item th {
  background: #1a1a1a !important;
  color: #aaa !important;
  padding: 16px !important;
  border-bottom: 1px solid #333 !important;
}

.woocommerce-checkout-review-order-table .cart_item .product-name,
.woocommerce-checkout-review-order-table .cart_item .product-name a {
  color: #ffcc00 !important;
  font-weight: 700 !important;
}

.woocommerce-checkout-review-order-table .cart_item .lc-product-name-text {
  color: #ffcc00 !important;
  font-weight: 700 !important;
}

/* Product descriptions - FORCE gray color */
.lc-product-name-wrap .variation,
.lc-product-name-wrap .variation *,
.lc-product-name-text ul,
.lc-product-name-text ul *,
.lc-product-name-text dl,
.lc-product-name-text dl *,
.lc-product-name-text p,
.lc-product-name-text p *,
.cart_item .product-name ul,
.cart_item .product-name ul li,
.cart_item .product-name dl,
.cart_item .product-name dl dd,
.cart_item .product-name dl dt,
.cart_item .product-name p,
.cart_item .product-name .variation,
.cart_item .product-name .variation p,
.cart_item .product-name .variation dt,
.cart_item .product-name .variation dd {
  color: #bbb !important;
  font-weight: 400 !important;
  font-size: 0.9em !important;
}

.woocommerce-checkout-review-order-table .cart_item .product-total {
  color: #ffcc00 !important;
  font-weight: 600;
}

.lc-product-name-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lc-product-thumb {
  max-width: 60px !important;
  height: 60px !important;
  border-radius: 8px !important;
  border: 1px solid #444 !important;
}

/* Subtotal */
.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout-review-order-table .cart-subtotal td {
  background: #1a1a1a !important;
  color: #aaa !important;
  padding: 16px !important;
  border-bottom: 1px solid #333 !important;
}

.woocommerce-checkout-review-order-table .cart-subtotal td {
  color: #fff !important;
  font-weight: 600;
}

/* Ship in your card - AFTER subtotal */
.lc-inbound-shipping-row th,
.lc-inbound-shipping-row td {
  background: #1a1a1a !important;
  color: #ffcc00 !important;
  padding: 16px !important;
  border-bottom: 1px solid #333 !important;
  font-weight: 600 !important;
}

.lc-method-name {
  font-weight: 400 !important;
  font-size: 0.9em !important;
  color: #ccc !important;
  display: block !important;
  margin-top: 3px !important;
}

/* Return Shipping (Fee) */
.woocommerce-checkout-review-order-table .fee th,
.woocommerce-checkout-review-order-table .fee td {
  background: #1a1a1a !important;
  color: #ffcc00 !important;
  padding: 16px !important;
  border-bottom: 1px solid #333 !important;
  font-weight: 600 !important;
}

.woocommerce-checkout-review-order-table .fee th .lc-method-name {
  font-weight: 400 !important;
  font-size: 0.9em !important;
  color: #ccc !important;
}

/* Separator */
.lc-total-separator td {
  background: transparent !important;
  height: 2px !important;
  padding: 0 !important;
  border-top: 2px solid #ffcc00 !important;
  border-bottom: none !important;
}

/* Total */
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  background: #2a2a2a !important;
  color: #ffcc00 !important;
  padding: 20px !important;
  font-size: 1.4em !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}

/* ========================================
   COUPON ROW - CUSTOM STYLE
======================================== */
.lc-coupon-row th,
.lc-coupon-row td {
  background: #1a1a1a !important;
  color: #fff !important;
  padding: 16px !important;
  border-bottom: 1px solid #333 !important;
}

.lc-coupon-badge {
  display: inline-block;
  background: #ff6b35 !important; /* Orange/coral like cart */
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lc-coupon-row td {
  color: #ff6b35 !important; /* Match badge color */
  font-weight: 600;
}

.lc-remove-coupon {
  margin-left: 10px;
  color: #aaa !important;
  text-decoration: none;
  font-size: 0.85em;
  transition: color 0.2s;
}

.lc-remove-coupon:hover {
  color: #ff6b35 !important;
}

/* Hide default WooCommerce coupon rows on checkout */
.woocommerce-checkout-review-order-table tr.cart-discount,
.woocommerce-checkout-review-order-table tr.order-discount {
  display: none !important;
}
