/** Shopify CDN: Minification failed

Line 1487:0 Unexpected "<"
Line 1587:0 Unexpected "<"

**/
/**
 * ============================================================================
 * GENTS SKINCARE - CUSTOM CART DRAWER STYLES
 * Foria Wellness Inspired Design
 * ============================================================================
 */

/* ============================================
   CART HEADER ENHANCEMENTS
   ============================================ */

.gents-cart-header h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
}

.cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #f0f0f0;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #333;
}

/* ============================================
   FREE SHIPPING PROGRESS BAR - FORIA STYLE
   ============================================ */

.gents-free-shipping {
  padding: 16px 20px;
  background: linear-gradient(135deg, #fff9f5 0%, #ffe8dd 100%);
  border-bottom: 1px solid #f0f0f0;
  margin: 0;
}

.gents-free-shipping__message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  text-align: center;
}

.gents-free-shipping__icon {
  font-size: 16px;
}

.gents-free-shipping__text {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.gents-free-shipping__text strong,
.remaining-amount {
  color: #d17a4a;
  font-weight: 700;
}

.gents-free-shipping__success {
  font-size: 13px;
  font-weight: 600;
  color: #2d7a3e;
}

.gents-free-shipping__bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
}

.gents-free-shipping__bar::-webkit-progress-bar {
  background: #e0e0e0;
  border-radius: 10px;
}

.gents-free-shipping__bar::-webkit-progress-value {
  background: linear-gradient(90deg, #d17a4a 0%, #e89b6d 100%);
  border-radius: 10px;
  transition: width 0.4s ease;
}

.gents-free-shipping__bar::-moz-progress-bar {
  background: linear-gradient(90deg, #d17a4a 0%, #e89b6d 100%);
  border-radius: 10px;
  transition: width 0.4s ease;
}

.gents-free-shipping.is-success {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

/* ============================================
   CART ITEMS ENHANCEMENTS
   ============================================ */

.drawer__items {
  padding: 0 !important;
}

.cart-item,
.cart__item {
  padding: 20px !important;
  border-bottom: 1px solid #f0f0f0 !important;
  transition: background-color 0.2s ease;
}

.cart-item:hover,
.cart__item:hover {
  background-color: #fafafa;
}

.cart-item__image img,
.cart__item-image img {
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

/* ============================================
   QUANTITY SELECTOR - ENHANCED FORIA STYLE
   ============================================ */

/* Target all possible quantity selector variations */
.cart__quantity,
.quantity-selector,
.cart-item__quantity,
[data-quantity-selector],
.drawer__items .quantity,
.cart__item .qty {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  border: 1px solid #d4d4d4 !important;
  border-radius: 5px !important;
  overflow: hidden !important;
  background: white !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 40px !important;
  min-width: 110px !important;
}

/* Quantity buttons */
.cart__quantity button,
.quantity-selector button,
.cart-item__quantity button,
[data-quantity-selector] button,
.drawer__items .quantity button,
.cart__item .qty button,
.cart__quantity .qty__button,
button[name="minus"],
button[name="plus"] {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #000000 !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.cart__quantity button:hover,
.quantity-selector button:hover,
.cart-item__quantity button:hover,
[data-quantity-selector] button:hover,
button[name="minus"]:hover,
button[name="plus"]:hover {
  background: #f5f5f5 !important;
}

.cart__quantity button:active,
.quantity-selector button:active,
button[name="minus"]:active,
button[name="plus"]:active {
  background: #e8e8e8 !important;
}

/* Quantity input field */
.cart__quantity input,
.quantity-selector input,
.cart-item__quantity input,
[data-quantity-selector] input,
.drawer__items .quantity input,
.cart__item .qty input,
input[type="number"][name="updates[]"],
input.qty__input {
  width: 45px !important;
  min-width: 45px !important;
  max-width: 45px !important;
  height: 36px !important;
  text-align: center !important;
  border: none !important;
  border-left: 2px solid #d4d4d4 !important;
  border-right: 2px solid #d4d4d4 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  background: white !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #333 !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
  flex-shrink: 0 !important;
}

/* Remove spinner arrows from number input */
.cart__quantity input::-webkit-outer-spin-button,
.cart__quantity input::-webkit-inner-spin-button,
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.cart__quantity input:focus,
.quantity-selector input:focus,
input.qty__input:focus {
  outline: none !important;
  border-left-color: #d17a4a !important;
  border-right-color: #d17a4a !important;
}

/* Ensure buttons show the minus and plus symbols clearly */
.cart__quantity button[name="minus"]::before,
button[name="minus"]::before {
  content: "−" !important;
  font-size: 20px !important;
}

.cart__quantity button[name="plus"]::before,
button[name="plus"]::before {
  content: "+" !important;
  font-size: 20px !important;
}

/* Override any SVG icons in buttons */
.cart__quantity button svg,
.quantity-selector button svg,
button[name="minus"] svg,
button[name="plus"] svg {
  display: none !important;
}

/* Force flex layout for proper alignment */
.cart__item-meta,
.cart-item__meta,
.drawer__items .cart__item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

/* ============================================
   SUBSCRIPTION UPGRADE BUTTON
   ============================================ */

.gents-subscription-upgrade {
  padding: 15px 20px;
  background: white;
  border-bottom: 1px solid #f0f0f0;
}

.gents-subscription-btn {
  width: 100%;
  padding: 14px 20px;
  background: #000;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gents-subscription-btn:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================
   YOU MAY ALSO LIKE SECTION
   ============================================ */

.gents-upsell-section {
  background: #fafafa !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.gents-upsell-section .cart__widget__title {
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
  padding: 16px 20px !important;
  background: white !important;
}

.cart__widget__products {
  padding: 15px 20px !important;
}

.upsell-product,
.cart__widget-product {
  background: white !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 10px !important;
  padding: 12px !important;
  margin-bottom: 12px !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
}

.upsell-product:hover,
.cart__widget-product:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
  transform: translateY(-2px) !important;
}

.upsell-product img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  flex-shrink: 0 !important;
}

.upsell-product__details {
  flex: 1 !important;
  min-width: 0 !important;
}

.upsell-product__title {
  font-size: 13px !important;
  font-weight: 600 !important;
  margin: 0 0 4px !important;
  line-height: 1.3 !important;
}

.upsell-product__price {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #d17a4a !important;
  margin-bottom: 8px !important;
}

.upsell-product__price-original {
  text-decoration: line-through;
  color: #999;
  font-size: 12px;
  margin-right: 6px;
}

.upsell-product__savings {
  color: #e74c3c;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
}

.upsell-product button,
.upsell-product .btn {
  padding: 8px 16px !important;
  background: #000 !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  white-space: nowrap !important;
}

.upsell-product button:hover {
  background: #333 !important;
}

/* ============================================
   DISCOUNT CODE SECTION - FORIA STYLE
   ============================================ */

.gents-discount-widget {
  border-bottom: 1px solid #f0f0f0 !important;
}

.gents-discount-widget .cart__widget__title {
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 16px 20px !important;
}

.gents-discount-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gents-discount-input {
  flex: 1;
  padding: 12px 14px !important;
  border: 1.5px solid #d4d4d4 !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  transition: border-color 0.2s ease !important;
}

.gents-discount-input:focus {
  border-color: #d17a4a !important;
  outline: none !important;
}

.gents-discount-btn {
  padding: 12px 24px;
  background: #666;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.gents-discount-btn:hover {
  background: #444;
}

.gents-active-discounts {
  margin-top: 12px;
}

.gents-discount-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #e8f5e9;
  border-radius: 8px;
  margin-bottom: 8px;
}

.gents-discount-tag__text {
  font-size: 13px;
  color: #2d7a3e;
  font-weight: 600;
}

.gents-discount-tag__amount {
  font-size: 13px;
  color: #2d7a3e;
  font-weight: 700;
}

/* ============================================
   CART FOOTER / TOTALS - FORIA STYLE
   ============================================ */

.gents-cart-footer {
  padding: 20px !important;
  background: white !important;
}

.gents-cart-totals {
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 16px;
}

.gents-shipping-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
}

.gents-shipping-threshold {
  font-size: 12px;
  color: #999;
}

.gents-shipping-free {
  font-weight: 700;
  color: #2d7a3e;
}

.gents-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.gents-total-label {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.gents-total-amount {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

/* ============================================
   CHECKOUT PROTECTION UPSELL
   ============================================ */

.gents-checkout-protection {
  margin-bottom: 16px;
  padding: 12px;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.gents-protection-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin: 0;
}

.gents-protection-checkbox {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.gents-protection-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.gents-protection-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
}

.gents-protection-text strong {
  font-weight: 700;
  color: #333;
}

.gents-protection-text small {
  display: block;
  color: #666;
  margin-top: 2px;
}

.gents-protection-price {
  margin-left: auto;
  font-weight: 700;
  color: #333;
  font-size: 14px;
  flex-shrink: 0;
}

/* ============================================
   CHECKOUT BUTTONS - FORIA STYLE
   ============================================ */

.gents-checkout-buttons {
  margin-bottom: 16px;
}

.gents-checkout-btn {
  width: 100%;
  padding: 16px 20px;
  background: #000;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  margin-bottom: 12px;
}

.gents-checkout-btn:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.gents-checkout-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #666;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.gents-checkout-link:hover {
  color: #333;
}

/* ============================================
   PAYMENT METHODS - KLARNA & OTHERS
   ============================================ */

.gents-payment-methods {
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 16px;
}

.gents-klarna-btn {
  width: 100%;
  padding: 14px 20px;
  background: #FFB3C7;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.gents-klarna-btn strong {
  font-weight: 800;
}

.gents-klarna-btn:hover {
  background: #FFA0B8;
  transform: translateY(-1px);
}

.gents-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
  margin-bottom: 12px;
}

.gents-payment-icon {
  font-size: 20px;
}

.gents-payment-text {
  font-size: 11px;
  color: #666;
  text-align: center;
}

.additional-checkout-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.additional-checkout-buttons > div {
  flex: 1;
  min-width: 150px;
}

/* ============================================
   CONTINUE SHOPPING LINK
   ============================================ */

.gents-continue-shopping {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.gents-continue-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.gents-continue-link:hover {
  color: #d17a4a;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .drawer--cart .drawer__inner {
    max-width: 100% !important;
  }
  
  .gents-free-shipping {
    padding: 14px 16px;
  }
  
  .gents-free-shipping__text {
    font-size: 12px;
  }
  
  .cart-item,
  .cart__item {
    padding: 16px !important;
  }
  
  .gents-checkout-btn {
    font-size: 14px;
    padding: 14px 16px;
  }
  
  .gents-discount-form {
    flex-direction: column;
  }
  
  .gents-discount-btn {
    width: 100%;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item,
.cart__widget,
.gents-cart-total {
  animation: slideInRight 0.3s ease forwards;
}

/* ============================================
   YOU MAY ALSO LIKE - AUTO RECOMMENDATIONS
   ============================================ */

.gents-recommendations-section {
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px;
}

.gents-recommendations-header h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.3px;
  margin: 0 0 15px 0;
  padding: 0;
  color: #333;
}

.gents-recommendations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gents-recommendation-item {
  display: flex;
  gap: 12px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px;
  transition: all 0.2s ease;
  align-items: center;
}

.gents-recommendation-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.gents-recommendation-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.gents-recommendation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gents-recommendation-details {
  flex: 1;
  min-width: 0;
}

.gents-recommendation-title {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px 0;
  line-height: 1.3;
  color: #333;
}

.gents-recommendation-price {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.gents-recommendation-price-current {
  font-size: 14px;
  font-weight: 700;
  color: #d17a4a;
}

.gents-recommendation-price-original {
  font-size: 12px;
  text-decoration: line-through;
  color: #999;
}

.gents-recommendation-savings {
  font-size: 11px;
  font-weight: 700;
  color: #e74c3c;
  margin-left: 4px;
}

.gents-recommendation-variant {
  margin-bottom: 8px;
}

.gents-recommendation-variant select {
  width: 100%;
  padding: 6px 8px;
  border: 1.5px solid #d4d4d4;
  border-radius: 6px;
  font-size: 12px;
  background: white;
  cursor: pointer;
}

.gents-recommendation-add {
  padding: 8px 16px;
  background: #000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.gents-recommendation-add:hover {
  background: #333;
}

.gents-recommendation-add:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.gents-recommendations-loading {
  text-align: center;
  padding: 20px;
  color: #999;
  font-size: 13px;
}

@media (max-width: 768px) {
  .gents-recommendation-item {
    padding: 10px;
  }
  
  .gents-recommendation-image {
    width: 70px;
    height: 70px;
  }
}

/* ============================================
   DRAWER WIDTH ADJUSTMENT
   ============================================ */

.drawer--cart .drawer__inner {
  max-width: 450px !important;
}

/* ============================================
   FORCE SHOW QUANTITY BUTTONS
   ============================================ */

/* Make sure buttons are visible and not hidden */
.cart__quantity button,
.quantity-selector button,
button[name="minus"],
button[name="plus"],
.qty__button,
[data-quantity-button] {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}

/* If buttons are absolutely positioned, fix them */
.cart__quantity,
.quantity-selector {
  position: relative !important;
}

/* Ensure button content shows */
.cart__quantity button::before,
.quantity-selector button::before {
  display: block !important;
  visibility: visible !important;
}

/* Show any hidden button text/content */
.cart__quantity button *,
.quantity-selector button * {
  display: block !important;
}

/* ============================================
   DISCOUNT CODE SECTION - ALWAYS VISIBLE
   ============================================ */

.gents-discount-section {
  border-bottom: 1px solid #f0f0f0;
  background: white;
  padding: 20px;
}

.gents-discount-header h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #666;
  text-transform: none;
  letter-spacing: 0;
}

.gents-discount-content {
  /* Always visible - no collapsing */
}

.gents-discount-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gents-discount-input {
  flex: 1;
  padding: 12px 14px !important;
  border: 1.5px solid #d4d4d4 !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  transition: border-color 0.2s ease !important;
}

.gents-discount-input:focus {
  border-color: #d17a4a !important;
  outline: none !important;
}

.gents-discount-btn {
  padding: 12px 24px;
  background: #666;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.gents-discount-btn:hover {
  background: #444;
}

.gents-active-discounts {
  margin-top: 12px;
}

.gents-discount-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #e8f5e9;
  border-radius: 8px;
  margin-bottom: 8px;
}

.gents-discount-tag__text {
  font-size: 13px;
  color: #2d7a3e;
  font-weight: 600;
}

.gents-discount-tag__amount {
  font-size: 13px;
  color: #2d7a3e;
  font-weight: 700;
}
/* ============================================
   SUBSCRIPTION MODAL
   ============================================ */

.gents-subscription-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gents-subscription-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.gents-subscription-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gents-subscription-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
  padding: 0;
  width: 32px;
  height: 32px;
}

.gents-subscription-modal-close:hover {
  color: #333;
}

.gents-subscription-modal-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #333;
}

.gents-subscription-modal-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 24px 0;
}

.gents-subscription-frequency {
  margin-bottom: 24px;
}

.gents-subscription-frequency label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.gents-frequency-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gents-frequency-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gents-frequency-option:hover {
  border-color: #d17a4a;
  background: #fff9f5;
}

.gents-frequency-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 0;
}

.gents-frequency-option input[type="radio"]:checked + span {
  font-weight: 600;
  color: #d17a4a;
}

.gents-frequency-option span {
  font-size: 14px;
  color: #333;
}

.gents-subscription-benefits {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.gents-subscription-benefits h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #333;
}

.gents-subscription-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gents-subscription-benefits li {
  font-size: 14px;
  color: #666;
  padding: 6px 0;
  line-height: 1.5;
}

.gents-subscription-confirm-btn {
  width: 100%;
  padding: 16px;
  background: #000;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.gents-subscription-confirm-btn:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gents-subscription-confirm-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.gents-subscription-cancel-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: #666;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gents-subscription-cancel-btn:hover {
  border-color: #d4d4d4;
  background: #f8f8f8;
}

@media (max-width: 768px) {
  .gents-subscription-modal-content {
    padding: 24px;
    width: 95%;
  }
  
  .gents-subscription-modal-content h2 {
    font-size: 20px;
  }
}
/* ============================================
   CART ITEM LAYOUT - FINAL VERSION
   Replace the previous layout fix with this
   ============================================ */

/* Main cart item - horizontal flex layout */
.cart__item,
.cart-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 20px !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

/* Product image - fixed width on left */
.cart__item__image,
.cart-item__image {
  flex-shrink: 0 !important;
  width: 80px !important;
  height: 80px !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}

.cart__item__image img,
.cart-item__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 8px !important;
}

/* Content area - takes remaining space */
.cart__item__content,
.cart-item__content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  min-width: 0 !important; /* Allows text truncation */
}

.cart__item__content-inner {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

/* Product title */
.cart__item__title,
.cart-item__title {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin: 0 0 4px 0 !important;
  color: #333 !important;
}

.cart__item__title a,
.cart-item__title a {
  color: #333 !important;
  text-decoration: none !important;
}

.cart__item__title a:hover {
  color: #000 !important;
}

/* Variant options */
.cart__item__meta {
  font-size: 12px !important;
  color: #666 !important;
  margin-bottom: 4px !important;
}

.cart__item__selected-options {
  margin: 0 !important;
  font-size: 12px !important;
}

/* Remove button */
.cart__item__remove {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 12px !important;
  color: #999 !important;
  text-decoration: none !important;
  margin-top: 4px !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

.cart__item__remove:hover {
  color: #333 !important;
}

.cart__item__remove svg {
  width: 12px !important;
  height: 12px !important;
  fill: currentColor !important;
}

/* QUANTITY AND PRICE ROW - Side by side */
.cart__item__bottom-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-top: 8px !important;
}

/* Price - on the right */
.cart__price {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #333 !important;
  margin: 0 !important;
  text-align: right !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.cart__price ins {
  text-decoration: none !important;
  color: #d17a4a !important;
  margin-right: 6px !important;
}

.cart__price del {
  color: #999 !important;
  font-size: 14px !important;
  margin-right: 4px !important;
}

/* Quantity selector - on the left */
.cart__quantity {
  margin: 0 !important;
  flex-shrink: 0 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cart__item,
  .cart-item {
    padding: 16px !important;
    gap: 12px !important;
  }
  
  .cart__item__image,
  .cart-item__image {
    width: 70px !important;
    height: 70px !important;
  }
  
  .cart__item__title,
  .cart-item__title {
    font-size: 13px !important;
  }
  
  .cart__price {
    font-size: 15px !important;
  }
  
  /* Stack quantity and price on very small screens */
  @media (max-width: 480px) {
    .cart__item__bottom-row {
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 12px !important;
    }
    
    .cart__price {
      text-align: left !important;
    }
  }
}

/* Ensure no conflicting flexbox on parent */
.drawer__items {
  display: block !important;
}

[data-items-holder] {
  display: block !important;
}

<style>
/* ============================================
   PAYMENT ICONS STYLING
   Add this to assets/gents-cart-custom.css
   ============================================ */

.gents-payment-methods {
  padding: 20px 20px 16px;
  border-top: 1px solid #f0f0f0;
  margin-top: 20px;
}

.gents-payment-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin: 0 0 12px 0;
  text-align: center;
}

.gents-payment-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.gents-payment-icon {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  transition: all 0.2s ease;
}

.gents-payment-icon:hover {
  border-color: #d0d0d0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transform: translateY(-1px);
}

.gents-payment-icon img {
  width: 100%;
  height: 100%;
  max-width: 48px;
  max-height: 32px;
  object-fit: contain;
}

.gents-payment-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.gents-lock-icon {
  flex-shrink: 0;
  color: #2d7a3e;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gents-payment-methods {
    padding: 16px 16px 12px;
  }
  
  .gents-payment-icons {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .gents-payment-icon {
    padding: 8px 6px;
    height: 42px;
  }
  
  .gents-payment-icon img {
    max-width: 40px;
    max-height: 28px;
  }
  
  .gents-payment-trust {
    font-size: 11px;
    padding: 10px;
  }
}
</style>

