.shop-header { padding: 48px 0 40px; text-align: center; }
.shop-header .section-label { margin-bottom: 0.6rem; }
.shop-header .section-title { margin-bottom: 0.8rem; }
.shop-header p { font-size: 1rem; color: var(--lp-text-muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.shop-header-compact { padding: 28px 0 16px; text-align: left; }
.shop-title-compact { font-size: 1.6rem; font-weight: 300; color: var(--lp-charcoal); margin: 0; }

.shop-filters { padding: 0 0 24px; }
.shop-categories { padding: 0 0 40px; }
.shop-categories-grid { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.shop-cat-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; background: var(--lp-white); border: 1.5px solid var(--lp-beige); border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 500; color: var(--lp-text-light); transition: all var(--transition-base); }
.shop-cat-pill:hover, .shop-cat-pill.active { background: var(--lp-gold-gradient); color: var(--lp-white); border-color: var(--lp-gold); box-shadow: var(--shadow-gold); }
.shop-cat-pill .cat-count { font-size: 0.72rem; font-weight: 600; background: rgba(0,0,0,0.06); padding: 2px 8px; border-radius: 20px; }
.shop-cat-pill.active .cat-count, .shop-cat-pill:hover .cat-count { background: rgba(255,255,255,0.2); }

.shop-info-banner { max-width: 900px; margin: 0 auto 48px; padding: 16px 32px; background: var(--lp-white); border: 1px solid var(--lp-beige); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; gap: 2rem; }
.shop-info-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--lp-text-light); white-space: nowrap; }
.shop-info-item i { color: var(--lp-gold); font-size: 0.95rem; }
.shop-info-item strong { color: var(--lp-charcoal); font-weight: 600; }
.shop-info-divider { width: 1px; height: 20px; background: var(--lp-beige); flex-shrink: 0; }
@media (max-width: 767px) { .shop-info-banner { flex-direction: column; gap: 8px; border-radius: var(--radius-md); padding: 16px 24px; } .shop-info-divider { display: none; } }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 40px; }
.products-grid-compact { grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1199px) { .products-grid { grid-template-columns: repeat(3, 1fr); } .products-grid-compact { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 991px) { .products-grid-compact { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } .products-grid-compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } .products-grid-compact { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.shop-info-bottom { margin-top: 20px; margin-bottom: 60px; }

.product-card { background: var(--lp-white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--lp-cream-dark); transition: all var(--transition-base); display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-lg); border-color: var(--lp-beige); transform: translateY(-4px); }
.product-card-img { position: relative; overflow: hidden; aspect-ratio: 1; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badge { position: absolute; top: 14px; left: 14px; padding: 5px 14px; border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-sale { background: #C0392B; color: #fff; }
.badge-new { background: var(--lp-gold-gradient); color: #fff; }
.badge-popular { background: var(--lp-charcoal); color: #fff; }
.product-card-wishlist { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; color: var(--lp-text-muted); font-size: 0.95rem; transition: all var(--transition-base); opacity: 0; }
.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-wishlist:hover { background: #fff; color: #C0392B; box-shadow: var(--shadow-sm); }
.product-card-info { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.product-card-cat { font-size: 0.68rem; font-weight: 500; color: var(--lp-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.product-card-title { font-size: 0.9rem; font-weight: 500; color: var(--lp-charcoal); margin-bottom: 4px; line-height: 1.3; }
.product-card-desc { font-size: 0.78rem; color: var(--lp-text-muted); line-height: 1.45; margin-bottom: 10px; }
.product-card-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--lp-cream-dark); }
.product-card-price { font-size: 0.95rem; font-weight: 600; color: var(--lp-charcoal); }
.product-card-price del { font-size: 0.82rem; color: var(--lp-text-muted); font-weight: 400; margin-right: 6px; }
.product-card-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--lp-cream); border: none; display: flex; align-items: center; justify-content: center; color: var(--lp-gold); font-size: 1.1rem; cursor: pointer; transition: all var(--transition-base); }
.product-card-btn:hover { background: var(--lp-gold-gradient); color: #fff; box-shadow: var(--shadow-gold); }
.product-card-btn.loading { opacity: 0.6; pointer-events: none; }
.product-card-btn.added { background: var(--lp-gold-gradient); color: var(--lp-white); box-shadow: var(--shadow-gold); pointer-events: none; }
.product-card-btn.added i::before { content: '\F26E'; }
.product-card-bottom .added_to_cart { display: none; }

.product-hero-bg { background: linear-gradient(180deg, var(--lp-cream-dark) 0%, var(--lp-cream) 100%); }
.product-page { padding: 24px 0 60px; }
.product-gallery { position: sticky; top: 120px; }
.product-main-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; background: var(--lp-white); position: relative; box-shadow: var(--shadow-lg); }
.product-main-image img { width: 100%; height: auto; max-height: 480px; object-fit: cover; }
.product-gallery-badge { position: absolute; top: 20px; left: 20px; z-index: 2; padding: 6px 16px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.product-thumbs { display: flex; gap: 12px; }
.product-thumb { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all var(--transition-base); opacity: 0.6; box-shadow: var(--shadow-sm); }
.product-thumb.active, .product-thumb:hover { border-color: var(--lp-gold); opacity: 1; box-shadow: var(--shadow-md); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail { padding-left: 2rem; }
.product-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.8rem; color: var(--lp-text-muted); margin-bottom: 2rem; flex-wrap: wrap; }
.product-breadcrumb a { color: var(--lp-text-muted); }
.product-breadcrumb a:hover { color: var(--lp-gold); }
.product-breadcrumb > span:not(.product-breadcrumb-current) { color: var(--lp-beige); }
.product-breadcrumb-current { color: var(--lp-charcoal); font-weight: 500; }
.product-detail .section-label { margin-bottom: 0.5rem; }
.product-detail-title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 300; color: var(--lp-charcoal); margin-bottom: 0.8rem; line-height: 1.15; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 1.2rem; }
.product-rating-stars { display: flex; gap: 2px; color: var(--lp-gold); font-size: 0.85rem; }
.product-rating-count { font-size: 0.82rem; color: var(--lp-text-muted); }
.product-price-block { padding: 20px 24px; border-radius: var(--radius-sm); background: var(--lp-white); margin-bottom: 1.5rem; border: 1px solid var(--lp-cream-dark); }
.product-price { font-size: 1.8rem; font-weight: 600; color: var(--lp-charcoal); }
.product-price del { font-size: 1.1rem; color: var(--lp-text-muted); font-weight: 400; margin-right: 8px; text-decoration: line-through; }
.product-price ins { text-decoration: none; }
.product-price-note { font-size: 0.82rem; color: var(--lp-text-muted); margin-top: 4px; }
.product-out-of-stock { padding: 14px 20px; background: rgba(192,57,43,0.06); border: 1px solid rgba(192,57,43,0.15); border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: 0.88rem; color: #A93226; font-weight: 500; }
.product-description { font-size: 0.95rem; color: var(--lp-text-light); line-height: 1.85; margin-bottom: 1.5rem; }
.product-stock-low { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: rgba(230,126,34,0.08); border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 500; color: #D35400; margin-top: 10px; margin-bottom: 10px; }

.product-trust-card { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--lp-cream-dark); }
.product-trust-item { display: flex; align-items: center; gap: 10px; }
.product-trust-icon { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(212,186,136,0.1) 100%); display: flex; align-items: center; justify-content: center; color: var(--lp-gold); font-size: 0.85rem; flex-shrink: 0; }
.product-trust-item strong { display: block; font-size: 0.76rem; font-weight: 600; color: var(--lp-charcoal); line-height: 1.3; }
.product-trust-item span { font-size: 0.7rem; color: var(--lp-text-muted); }
@media (max-width: 575px) { .product-trust-card { grid-template-columns: 1fr; } }

.product-story-strip { padding: 32px 0; background: linear-gradient(135deg, #3D2E22 0%, #5A4234 100%); }
.product-story-inner { display: flex; align-items: center; gap: 18px; justify-content: center; max-width: 680px; margin: 0 auto; padding: 0 2rem; }
.product-story-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(201,169,110,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.product-story-icon i { color: var(--lp-gold-light); font-size: 1.1rem; }
.product-story-inner p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0; }

.product-related { padding: 80px 0; }

.product-options { margin-bottom: 1.5rem; }
.product-option-label { font-size: 0.82rem; font-weight: 600; color: var(--lp-charcoal); margin-bottom: 10px; display: block; }
.product-weights { display: flex; gap: 10px; flex-wrap: wrap; }
.product-weight { padding: 10px 20px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--lp-text-light); cursor: pointer; transition: all var(--transition-base); background: var(--lp-white); }
.product-weight:hover, .product-weight.active { border-color: var(--lp-gold); color: var(--lp-charcoal); background: rgba(201,169,110,0.08); }

.product-add-row { display: flex; align-items: center; gap: 14px; margin-bottom: 2rem; }
.product-qty { display: flex; align-items: center; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); overflow: hidden; }
.product-qty button { width: 44px; height: 44px; background: var(--lp-cream); border: none; font-size: 1.1rem; cursor: pointer; color: var(--lp-text-light); transition: all var(--transition-base); display: flex; align-items: center; justify-content: center; }
.product-qty button:hover { background: var(--lp-beige); color: var(--lp-charcoal); }
.product-qty input { width: 52px; height: 44px; border: none; text-align: center; font-family: var(--lp-font); font-size: 0.95rem; font-weight: 600; color: var(--lp-charcoal); background: var(--lp-white); }
.product-add-row .btn-leopold { flex: 1; justify-content: center; }

.product-tabs { padding: 60px 0; }
.product-tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--lp-beige); margin-bottom: 2rem; }
.product-tab-btn { padding: 14px 28px; font-family: var(--lp-font); font-size: 0.88rem; font-weight: 500; color: var(--lp-text-muted); background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all var(--transition-base); }
.product-tab-btn:hover { color: var(--lp-charcoal); }
.product-tab-btn.active { color: var(--lp-charcoal); border-bottom-color: var(--lp-gold); }
.product-tab-content { display: none; }
.product-tab-content.active { display: block; }
.product-tab-content p { font-size: 0.95rem; color: var(--lp-text-light); line-height: 1.85; margin-bottom: 1rem; }
@media (max-width: 991px) { .product-detail { padding-left: 0; margin-top: 2rem; } .product-gallery { position: static; } }

.lp-cart { padding: 48px 0 80px; }
.lp-cart .section-title { text-align: center; margin-bottom: 2.5rem; }
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 991px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-items { display: flex; flex-direction: column; gap: 1px; background: var(--lp-cream-dark); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--lp-cream-dark); }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto auto; gap: 20px; align-items: center; padding: 20px 24px; background: var(--lp-white); }
.cart-item-img { width: 90px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 0.95rem; font-weight: 500; color: var(--lp-charcoal); margin-bottom: 4px; }
.cart-item-meta { font-size: 0.8rem; color: var(--lp-text-muted); }
.cart-item-qty { display: flex; align-items: center; border: 1px solid var(--lp-beige); border-radius: 8px; overflow: hidden; }
.cart-item-qty button { width: 32px; height: 32px; background: var(--lp-cream); border: none; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--lp-text-light); }
.cart-item-qty input { width: 36px; height: 32px; border: none; text-align: center; font-family: var(--lp-font); font-size: 0.85rem; font-weight: 600; background: var(--lp-white); }
.cart-item-price { font-size: 0.95rem; font-weight: 600; color: var(--lp-charcoal); text-align: right; min-width: 70px; }
.cart-item-remove { background: none; border: none; color: var(--lp-text-muted); font-size: 0.9rem; cursor: pointer; padding: 4px; transition: color var(--transition-base); }
.cart-item-remove:hover { color: #C0392B; }
@media (max-width: 575px) { .cart-item { grid-template-columns: 70px 1fr; gap: 12px; } .cart-item-qty, .cart-item-price { grid-column: 2; } }

.cart-summary { background: var(--lp-white); border-radius: var(--radius-md); padding: 32px; border: 1px solid var(--lp-cream-dark); position: sticky; top: 120px; }
.cart-summary h3 { font-size: 1.2rem; font-weight: 500; color: var(--lp-charcoal); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--lp-cream-dark); }
.cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.9rem; color: var(--lp-text-light); }
.cart-summary-row.total { font-size: 1.1rem; font-weight: 600; color: var(--lp-charcoal); padding-top: 1rem; margin-top: 0.5rem; border-top: 2px solid var(--lp-cream-dark); }
.cart-shipping-free { color: var(--lp-gold); font-weight: 500; }
.cart-summary .btn-leopold { width: 100%; justify-content: center; margin-top: 1.5rem; }
.cart-summary .btn-leopold-outline { width: 100%; justify-content: center; margin-top: 0.8rem; }
.cart-coupon { display: flex; gap: 8px; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--lp-cream-dark); }
.cart-coupon input { flex: 1; padding: 10px 16px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); font-family: var(--lp-font); font-size: 0.85rem; background: var(--lp-cream); outline: none; }
.cart-coupon input:focus { border-color: var(--lp-gold); }
.cart-coupon button { padding: 10px 18px; background: var(--lp-cream-dark); border: none; border-radius: var(--radius-sm); font-family: var(--lp-font); font-size: 0.82rem; font-weight: 500; color: var(--lp-text-light); cursor: pointer; transition: all var(--transition-base); }
.cart-coupon button:hover { background: var(--lp-beige); color: var(--lp-charcoal); }
.cart-empty { text-align: center; padding: 80px 2rem; }
.cart-empty i { font-size: 3.5rem; color: var(--lp-beige); margin-bottom: 1.5rem; display: block; }
.cart-empty h3 { font-size: 1.4rem; font-weight: 300; color: var(--lp-charcoal); margin-bottom: 0.8rem; }
.cart-empty p { font-size: 0.95rem; color: var(--lp-text-muted); margin-bottom: 2rem; }

.lp-checkout { padding: 48px 0 80px; }
.lp-checkout .section-title { text-align: center; margin-bottom: 2.5rem; }
.checkout-steps { display: flex; justify-content: center; gap: 0; margin-bottom: 3rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.checkout-step { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 500; color: var(--lp-text-muted); position: relative; padding: 0 24px; }
.checkout-step::after { content: ''; position: absolute; right: -1px; top: 50%; transform: translateY(-50%); width: 24px; height: 1px; background: var(--lp-beige); }
.checkout-step:last-child::after { display: none; }
.checkout-step.active { color: var(--lp-charcoal); }
.checkout-step-num { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--lp-beige); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 600; flex-shrink: 0; }
.checkout-step.active .checkout-step-num { background: var(--lp-gold-gradient); border-color: var(--lp-gold); color: #fff; }
.checkout-step.done .checkout-step-num { background: var(--lp-gold); border-color: var(--lp-gold); color: #fff; }

.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 991px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-form-section { background: var(--lp-white); border-radius: var(--radius-md); padding: 36px; border: 1px solid var(--lp-cream-dark); margin-bottom: 24px; }
.checkout-form-section h3 { font-size: 1.1rem; font-weight: 500; color: var(--lp-charcoal); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--lp-cream-dark); display: flex; align-items: center; gap: 10px; }
.checkout-form-section h3 i { color: var(--lp-gold); }
.checkout-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.checkout-form-group { display: flex; flex-direction: column; }
.checkout-form-group.full { grid-column: span 2; }
@media (max-width: 575px) { .checkout-form-row { grid-template-columns: 1fr; } .checkout-form-group.full { grid-column: span 1; } }
.checkout-form-group label { font-size: 0.82rem; font-weight: 600; color: var(--lp-charcoal); margin-bottom: 6px; }
.checkout-form-group input, .checkout-form-group select, .checkout-form-group textarea { font-family: var(--lp-font); font-size: 0.9rem; padding: 12px 16px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); background: var(--lp-cream); color: var(--lp-charcoal); transition: all var(--transition-base); outline: none; }
.checkout-form-group input:focus, .checkout-form-group select:focus, .checkout-form-group textarea:focus { border-color: var(--lp-gold); background: var(--lp-white); box-shadow: 0 0 0 3px rgba(183,148,105,0.12); }

.checkout-shipping-options { display: flex; flex-direction: column; gap: 10px; }
.checkout-shipping-option { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition-base); }
.checkout-shipping-option:hover { border-color: var(--lp-gold); }
.checkout-shipping-option.active { border-color: var(--lp-gold); background: rgba(201,169,110,0.06); }
.checkout-shipping-option input { display: none; }
.checkout-shipping-radio { width: 20px; height: 20px; border: 2px solid var(--lp-beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition-base); }
.checkout-shipping-option.active .checkout-shipping-radio { border-color: var(--lp-gold); }
.checkout-shipping-option.active .checkout-shipping-radio::after { content: ''; width: 10px; height: 10px; background: var(--lp-gold); border-radius: 50%; }
.checkout-shipping-label { flex: 1; }
.checkout-shipping-label strong { display: block; font-size: 0.9rem; color: var(--lp-charcoal); font-weight: 500; }
.checkout-shipping-label span { font-size: 0.8rem; color: var(--lp-text-muted); }
.checkout-shipping-price { font-size: 0.9rem; font-weight: 600; color: var(--lp-charcoal); }

.checkout-payment-options { display: flex; flex-direction: column; gap: 10px; }
.checkout-payment-option { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition-base); }
.checkout-payment-option:hover { border-color: var(--lp-gold); }
.checkout-payment-option.active { border-color: var(--lp-gold); background: rgba(201,169,110,0.06); }
.checkout-payment-icon { width: 40px; display: flex; justify-content: center; flex-shrink: 0; }
.checkout-payment-icon img, .checkout-payment-icon svg { height: 24px; }
.checkout-payment-label { font-size: 0.9rem; font-weight: 500; color: var(--lp-charcoal); }

.checkout-order-summary { background: var(--lp-white); border-radius: var(--radius-md); padding: 32px; border: 1px solid var(--lp-cream-dark); position: sticky; top: 120px; }
.checkout-order-summary h3 { font-size: 1.1rem; font-weight: 500; color: var(--lp-charcoal); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--lp-cream-dark); }
.checkout-order-item { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--lp-cream-dark); }
.checkout-order-item:last-of-type { border-bottom: none; }
.checkout-order-thumb { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.checkout-order-thumb img { width: 100%; height: 100%; object-fit: cover; }
.checkout-order-info { flex: 1; }
.checkout-order-info strong { font-size: 0.88rem; font-weight: 500; color: var(--lp-charcoal); display: block; }
.checkout-order-info span { font-size: 0.78rem; color: var(--lp-text-muted); }
.checkout-order-price { font-size: 0.9rem; font-weight: 600; color: var(--lp-charcoal); }
.checkout-totals { padding-top: 1rem; margin-top: 0.5rem; }
.checkout-totals .cart-summary-row:first-child { padding-top: 0; }
.checkout-place-order { margin-top: 1.5rem; }
.checkout-place-order .btn-leopold { width: 100%; justify-content: center; padding: 16px 34px; }
.checkout-terms { font-size: 0.78rem; color: var(--lp-text-muted); text-align: center; margin-top: 1rem; line-height: 1.6; }
.checkout-terms a { color: var(--lp-brown); text-decoration: underline; }
.checkout-secure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.78rem; color: var(--lp-text-muted); margin-top: 1rem; }
.checkout-secure i { color: var(--lp-gold); }

.product-variations-wrap { margin-bottom: 1.5rem; }
.product-variations-wrap .variations_form, .product-detail .variations_form { margin: 0; }

.product-detail .variations, .product-variations-wrap .variations { width: 100%; border: none; border-collapse: collapse; margin-bottom: 1rem; }
.product-detail .variations tr, .product-variations-wrap .variations tr { display: flex; flex-direction: column; margin-bottom: 16px; }
.product-detail .variations td, .product-detail .variations th, .product-variations-wrap .variations td, .product-variations-wrap .variations th { display: block; padding: 0; border: none; text-align: left; }
.product-detail .variations .label, .product-variations-wrap .variations .label { padding-bottom: 8px; }
.product-detail .variations .label label, .product-variations-wrap .variations .label label { font-size: 0.82rem; font-weight: 600; color: var(--lp-charcoal); letter-spacing: 0.02em; }
.product-detail .variations .value, .product-variations-wrap .variations .value { position: relative; }

.product-detail .variations select, .product-variations-wrap .variations select, .product-detail .variations_form select { width: 100%; font-family: var(--lp-font); font-size: 0.9rem; padding: 12px 40px 12px 16px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); background-color: var(--lp-white); color: var(--lp-charcoal); appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B635B' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; transition: all var(--transition-base); outline: none; }
.product-detail .variations select:focus, .product-variations-wrap .variations select:focus, .product-detail .variations_form select:focus { border-color: var(--lp-gold); box-shadow: 0 0 0 3px rgba(183,148,105,0.12); }
.product-detail .variations select:hover, .product-variations-wrap .variations select:hover { border-color: var(--lp-gold); }

.product-detail .reset_variations, .product-variations-wrap .reset_variations { display: inline-block; font-size: 0.8rem; color: var(--lp-text-muted); margin-top: 8px; cursor: pointer; transition: color var(--transition-base); background: none; border: none; padding: 0; font-family: var(--lp-font); }
.product-detail .reset_variations:hover, .product-variations-wrap .reset_variations:hover { color: var(--lp-gold); }

.product-detail .single_variation_wrap, .product-variations-wrap .single_variation_wrap { padding-top: 8px; }
.product-detail .woocommerce-variation, .product-variations-wrap .woocommerce-variation { margin-bottom: 1rem; }
.product-detail .woocommerce-variation-price .price, .product-variations-wrap .woocommerce-variation-price .price { font-size: 1.6rem; font-weight: 600; color: var(--lp-charcoal); }
.product-detail .woocommerce-variation-price .price del, .product-variations-wrap .woocommerce-variation-price .price del { font-size: 1rem; color: var(--lp-text-muted); font-weight: 400; }
.product-detail .woocommerce-variation-price .price ins, .product-variations-wrap .woocommerce-variation-price .price ins { text-decoration: none; }
.product-detail .woocommerce-variation-description p, .product-variations-wrap .woocommerce-variation-description p { font-size: 0.88rem; color: var(--lp-text-light); line-height: 1.7; margin-bottom: 0.8rem; }
.product-detail .woocommerce-variation-availability p, .product-variations-wrap .woocommerce-variation-availability p { font-size: 0.82rem; margin-bottom: 0.8rem; }
.product-detail .woocommerce-variation-availability .in-stock { color: #27AE60; }
.product-detail .woocommerce-variation-availability .out-of-stock { color: #C0392B; }

.product-detail .woocommerce-variation-add-to-cart, .product-detail .variations_button, .product-variations-wrap .woocommerce-variation-add-to-cart { display: flex; align-items: center; gap: 14px; }

.product-detail .quantity, .product-variations-wrap .quantity { display: flex; align-items: center; overflow: hidden; flex-shrink: 0; }
.product-detail .quantity .qty-minus, .product-detail .quantity .qty-plus, .product-variations-wrap .quantity .qty-minus, .product-variations-wrap .quantity .qty-plus { width: 44px; height: 44px; background: var(--lp-cream); border: none; font-size: 1.1rem; cursor: pointer; color: var(--lp-text-light); transition: all var(--transition-base); display: flex; align-items: center; justify-content: center; font-family: var(--lp-font); line-height: 1; }
.product-detail .quantity .qty-minus:hover, .product-detail .quantity .qty-plus:hover, .product-variations-wrap .quantity .qty-minus:hover, .product-variations-wrap .quantity .qty-plus:hover { background: var(--lp-beige); color: var(--lp-charcoal); }
.product-detail .quantity input[type="number"], .product-detail .quantity .qty, .product-variations-wrap .quantity input[type="number"], .product-variations-wrap .quantity .qty { width: 52px; height: 44px; border: none; text-align: center; font-family: var(--lp-font); font-size: 0.95rem; font-weight: 600; color: var(--lp-charcoal); background: var(--lp-white); -webkit-appearance: textfield; -moz-appearance: textfield; appearance: textfield; }
.product-detail .quantity input::-webkit-inner-spin-button, .product-detail .quantity input::-webkit-outer-spin-button, .product-variations-wrap .quantity input::-webkit-inner-spin-button, .product-variations-wrap .quantity input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.product-detail .single_add_to_cart_button, .product-detail button[name="add-to-cart"], .product-variations-wrap .single_add_to_cart_button { display: inline-flex; align-items: center; gap: 10px; padding: 13px 34px; font-family: var(--lp-font); font-size: 0.88rem; font-weight: 500; color: var(--lp-white) !important; background: var(--lp-gold-gradient); border: none; border-radius: var(--radius-full); box-shadow: var(--shadow-gold); transition: all var(--transition-base); cursor: pointer; letter-spacing: 0.03em; flex: 1; justify-content: center; text-decoration: none; }
.product-detail .single_add_to_cart_button:hover, .product-detail button[name="add-to-cart"]:hover, .product-variations-wrap .single_add_to_cart_button:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); filter: brightness(1.08); color: var(--lp-white) !important; }
.product-detail .single_add_to_cart_button.disabled, .product-detail .single_add_to_cart_button:disabled, .product-variations-wrap .single_add_to_cart_button.disabled, .product-variations-wrap .single_add_to_cart_button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.product-detail form.cart { margin-bottom: 0; }
.product-detail form.cart .variations_button { display: flex; align-items: center; gap: 14px; }

body.leopold-shop .variations_form .variations { width: 100%; border: none; border-collapse: collapse; margin-bottom: 1rem; }
body.leopold-shop .variations_form .variations tr { display: flex; flex-direction: column; margin-bottom: 16px; }
body.leopold-shop .variations_form .variations td, body.leopold-shop .variations_form .variations th { display: block; padding: 0; border: none; text-align: left; }
body.leopold-shop .variations_form .variations .label { padding-bottom: 8px; }
body.leopold-shop .variations_form .variations .label label { font-size: 0.82rem !important; font-weight: 600 !important; color: var(--lp-charcoal) !important; letter-spacing: 0.02em; font-family: var(--lp-font); }
body.leopold-shop .variations_form select { width: 100% !important; font-family: var(--lp-font) !important; font-size: 0.9rem !important; padding: 12px 40px 12px 16px !important; border: 1.5px solid var(--lp-beige) !important; border-radius: var(--radius-sm) !important; background-color: var(--lp-white) !important; color: var(--lp-charcoal) !important; -webkit-appearance: none !important; -moz-appearance: none !important; appearance: none !important; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B635B' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 14px center !important; cursor: pointer; transition: all var(--transition-base); outline: none; height: auto !important; line-height: 1.4 !important; }
body.leopold-shop .variations_form select:focus { border-color: var(--lp-gold) !important; box-shadow: 0 0 0 3px rgba(183,148,105,0.12) !important; }
body.leopold-shop .variations_form .quantity { display: flex !important; align-items: center !important; border: 1.5px solid var(--lp-beige) !important; border-radius: var(--radius-sm) !important; overflow: hidden; flex-shrink: 0; }
body.leopold-shop .variations_form .quantity input.qty, body.leopold-shop .variations_form .quantity input[type="number"] { width: 52px !important; height: 44px !important; border: none !important; text-align: center !important; font-family: var(--lp-font) !important; font-size: 0.95rem !important; font-weight: 600 !important; color: var(--lp-charcoal) !important; background: var(--lp-white) !important; -webkit-appearance: textfield !important; -moz-appearance: textfield !important; appearance: textfield !important; margin: 0 !important; padding: 0 !important; }
body.leopold-shop .variations_form .quantity input::-webkit-inner-spin-button, body.leopold-shop .variations_form .quantity input::-webkit-outer-spin-button { -webkit-appearance: none !important; margin: 0 !important; }
body.leopold-shop .variations_form .woocommerce-variation-add-to-cart, body.leopold-shop .variations_form .variations_button { display: flex !important; align-items: center !important; gap: 14px !important; }
body.leopold-shop .single_add_to_cart_button, body.leopold-shop button.single_add_to_cart_button, body.leopold-shop .variations_form .single_add_to_cart_button { display: inline-flex !important; align-items: center !important; gap: 10px !important; padding: 13px 34px !important; font-family: var(--lp-font) !important; font-size: 0.88rem !important; font-weight: 500 !important; color: #fff !important; background: linear-gradient(135deg, #C9A96E 0%, #D4BA88 100%) !important; border: none !important; border-radius: 9999px !important; box-shadow: 0 8px 32px rgba(201,169,110,0.2) !important; transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) !important; cursor: pointer !important; letter-spacing: 0.03em !important; flex: 1; justify-content: center !important; text-decoration: none !important; line-height: 1.4 !important; }
body.leopold-shop .single_add_to_cart_button:hover { transform: translateY(-2px) !important; box-shadow: 0 12px 32px rgba(61,52,53,0.12) !important; filter: brightness(1.08) !important; }
body.leopold-shop .single_add_to_cart_button.disabled, body.leopold-shop .single_add_to_cart_button:disabled { opacity: 0.5 !important; cursor: not-allowed !important; transform: none !important; }
body.leopold-shop .reset_variations { display: inline-block; font-size: 0.8rem; color: var(--lp-text-muted); margin-top: 8px; cursor: pointer; background: none; border: none; padding: 0; font-family: var(--lp-font); }

.shop-nav-bar { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 8000; display: flex; gap: 4px; background: var(--lp-white); padding: 6px; border-radius: var(--radius-full); box-shadow: 0 4px 24px rgba(0,0,0,0.12); border: 1px solid var(--lp-cream-dark); }
.shop-nav-link { display: flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 500; color: var(--lp-text-light); font-family: var(--lp-font); transition: all var(--transition-base); white-space: nowrap; }
.shop-nav-link:hover { color: var(--lp-charcoal); background: var(--lp-cream); }
.shop-nav-link.active { background: var(--lp-gold-gradient); color: #fff; }
.shop-nav-link i { font-size: 0.9rem; }
body.leopold-shop .footer-bottom { padding-bottom: 80px; }
@media (max-width: 575px) { .shop-nav-bar { bottom: 12px; padding: 4px; gap: 2px; } .shop-nav-link { padding: 8px 14px; font-size: 0.72rem; } body.leopold-shop .footer-bottom { padding-bottom: 68px; } }

.minicart-popup { position: fixed; top: 0; right: 0; width: 400px; max-width: 92vw; height: auto; max-height: 100vh; z-index: 9000; transform: translateX(110%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; padding: 16px; }
.minicart-popup.active { transform: translateX(0); pointer-events: auto; }
.minicart-popup-inner { background: var(--lp-white); border-radius: var(--radius-md); box-shadow: 0 20px 60px rgba(0,0,0,0.18); overflow: hidden; border: 1px solid var(--lp-cream-dark); }
.minicart-popup-header { display: flex; align-items: center; gap: 10px; padding: 18px 20px; background: rgba(39,174,96,0.06); border-bottom: 1px solid rgba(39,174,96,0.1); }
.minicart-popup-check { width: 28px; height: 28px; background: #27AE60; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.85rem; flex-shrink: 0; }
.minicart-popup-header span { font-size: 0.88rem; font-weight: 500; color: var(--lp-charcoal); flex: 1; }
.minicart-popup-close { background: none; border: none; color: var(--lp-text-muted); font-size: 0.9rem; cursor: pointer; padding: 4px; transition: color var(--transition-base); }
.minicart-popup-close:hover { color: var(--lp-charcoal); }
.minicart-popup-product { display: flex; gap: 16px; align-items: center; padding: 20px; }
.minicart-popup-img { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--lp-cream); }
.minicart-popup-img img { width: 100%; height: 100%; object-fit: cover; }
.minicart-popup-info { flex: 1; }
.minicart-popup-info strong { display: block; font-size: 0.92rem; font-weight: 500; color: var(--lp-charcoal); margin-bottom: 4px; line-height: 1.3; }
.minicart-popup-info span { font-size: 0.88rem; color: var(--lp-brown); font-weight: 500; }
.minicart-popup-actions { display: flex; flex-direction: column; gap: 8px; padding: 0 20px 20px; }
.minicart-btn { justify-content: center; width: 100%; padding: 12px 20px; font-size: 0.84rem; }
@media (max-width: 480px) { .minicart-popup { width: 100%; padding: 8px; } }

.product-grouped-wrap .group_table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.product-grouped-wrap .group_table td { padding: 12px 0; border-bottom: 1px solid var(--lp-cream-dark); vertical-align: middle; }
.product-grouped-wrap .group_table .woocommerce-grouped-product-list-item__label a { font-size: 0.95rem; font-weight: 500; color: var(--lp-charcoal); }
.product-grouped-wrap .group_table .woocommerce-grouped-product-list-item__price { font-size: 0.9rem; color: var(--lp-text-light); }
.product-grouped-wrap .group_table .woocommerce-grouped-product-list-item__quantity .qty { width: 52px; height: 38px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); text-align: center; font-family: var(--lp-font); font-size: 0.9rem; background: var(--lp-white); }

.product-card-price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
.product-card-price del .woocommerce-Price-amount { font-size: 0.82rem; color: var(--lp-text-muted); font-weight: 400; }
.product-card-price ins { text-decoration: none; }
.product-card-price del + ins::before { content: ' '; }
.product-card-price .price { display: inline; }

.product-detail-title + .product-price-block .price del { font-size: 1.1rem; color: var(--lp-text-muted); font-weight: 400; margin-right: 8px; }
.product-detail-title + .product-price-block .price ins { text-decoration: none; }

.woocommerce-notices-wrapper { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.woocommerce-notices-wrapper .woocommerce-message, .woocommerce-notices-wrapper .woocommerce-error, .woocommerce-notices-wrapper .woocommerce-info { padding: 16px 24px; border-radius: var(--radius-sm); margin-bottom: 1rem; font-family: var(--lp-font); font-size: 0.9rem; }
.woocommerce-notices-wrapper .woocommerce-message { background: rgba(39,174,96,0.08); border: 1px solid rgba(39,174,96,0.2); color: #1E7E46; }
.woocommerce-notices-wrapper .woocommerce-error { background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.2); color: #A93226; }
.woocommerce-notices-wrapper .woocommerce-info { background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.25); color: var(--lp-brown); }
.woocommerce-notices-wrapper .woocommerce-message a, .woocommerce-notices-wrapper .woocommerce-error a, .woocommerce-notices-wrapper .woocommerce-info a { font-weight: 600; text-decoration: underline; }

.woocommerce-pagination { display: flex; justify-content: center; padding: 2rem 0 3rem; }
.woocommerce-pagination ul.page-numbers { display: flex; justify-content: center; gap: 6px; list-style: none; padding: 0; margin: 0; }
.woocommerce-pagination ul.page-numbers li { margin: 0; padding: 0; }
.woocommerce-pagination ul.page-numbers li a, .woocommerce-pagination ul.page-numbers li span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-size: 0.85rem; font-weight: 500; color: var(--lp-text-light); background: var(--lp-white); border: 1.5px solid var(--lp-beige); transition: all var(--transition-base); text-decoration: none; font-family: var(--lp-font); }
.woocommerce-pagination ul.page-numbers li a:hover { border-color: var(--lp-gold); color: var(--lp-charcoal); }
.woocommerce-pagination ul.page-numbers li span.current { background: var(--lp-gold-gradient); border-color: var(--lp-gold); color: #fff; }
.woocommerce-pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-size: 0.85rem; font-weight: 500; color: var(--lp-text-light); background: var(--lp-white); border: 1.5px solid var(--lp-beige); transition: all var(--transition-base); text-decoration: none; }
.woocommerce-pagination .page-numbers:hover { border-color: var(--lp-gold); color: var(--lp-charcoal); }
.woocommerce-pagination .page-numbers.current { background: var(--lp-gold-gradient); border-color: var(--lp-gold); color: #fff; }
.woocommerce-pagination .page-numbers.next, .woocommerce-pagination .page-numbers.prev { font-size: 0.9rem; }

.lp-cart-empty { text-align: center; padding: 100px 2rem 120px; }
body.leopold-shop .wc-empty-cart-message { display: none; }
.lp-cart-empty > i { font-size: 3.5rem; color: var(--lp-beige); margin-bottom: 1.5rem; display: block; }
.lp-cart-empty > h2 { font-size: 1.4rem; font-weight: 300; color: var(--lp-charcoal); margin-bottom: 0.8rem; }
.lp-cart-empty > p { font-size: 0.95rem; color: var(--lp-text-muted); margin-bottom: 2rem; max-width: 400px; margin-left: auto; margin-right: auto; }
.lp-cart-empty > .return-to-shop { text-align: center; padding: 0; margin: 0; max-width: none; }
.lp-cart-empty-btn { display: inline-flex !important; align-items: center !important; gap: 8px !important; padding: 14px 32px !important; font-family: var(--lp-font) !important; font-size: 0.88rem !important; font-weight: 500 !important; color: #fff !important; background: linear-gradient(135deg, #C9A96E 0%, #D4BA88 100%) !important; border-radius: 9999px !important; box-shadow: 0 8px 32px rgba(201,169,110,0.2) !important; transition: all 250ms ease !important; text-decoration: none !important; line-height: 1.4 !important; width: auto !important; flex: none !important; }
.lp-cart-empty-btn:hover { transform: translateY(-2px) !important; filter: brightness(1.08) !important; color: #fff !important; }
.lp-cart-empty-btn span { font-size: inherit; line-height: inherit; }
.lp-cart-empty-btn i.bi { font-size: 0.88rem !important; display: inline !important; line-height: 1 !important; vertical-align: middle !important; margin-top: 0 !important; }

.woocommerce-page .page-content, body.leopold-shop .page-content { padding: 0; }
body.leopold-shop .woocommerce { max-width: 1320px; margin: 0 auto; padding: 48px 2rem 100px; font-family: var(--lp-font); }

body.leopold-shop .woocommerce > .woocommerce-notices-wrapper:first-child + .cart-empty,
body.leopold-shop .woocommerce > .cart-empty,
body.leopold-shop .cart-empty { text-align: center; padding: 60px 2rem 20px; font-size: 1.2rem; font-weight: 300; color: var(--lp-charcoal); }
body.leopold-shop .return-to-shop { text-align: center; padding: 1rem 0 3rem; }
body.leopold-shop .return-to-shop a.button,
body.leopold-shop .return-to-shop a.wc-backward,
body.leopold-shop .return-to-shop a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 14px 32px !important;
    font-family: var(--lp-font) !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #C9A96E 0%, #D4BA88 100%) !important;
    border: none !important;
    border-radius: 9999px !important;
    box-shadow: 0 8px 32px rgba(201,169,110,0.2) !important;
    transition: all 250ms ease !important;
    text-decoration: none !important;
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    line-height: 1.4 !important;
}
body.leopold-shop .return-to-shop a:hover { transform: translateY(-2px) !important; filter: brightness(1.08) !important; }

body.leopold-shop .woocommerce table.shop_table { border: none; border-collapse: separate; border-spacing: 0; background: var(--lp-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--lp-cream-dark); width: 100%; }
body.leopold-shop .woocommerce table.shop_table thead { background: var(--lp-cream); }
body.leopold-shop .woocommerce table.shop_table thead th { font-size: 0.78rem; font-weight: 600; color: var(--lp-text-light); text-transform: uppercase; letter-spacing: 0.06em; padding: 14px 20px; border: none; font-family: var(--lp-font); }
body.leopold-shop .woocommerce table.shop_table td { padding: 20px; border: none; border-top: 1px solid var(--lp-cream-dark); vertical-align: middle; font-size: 0.92rem; color: var(--lp-text); font-family: var(--lp-font); }
body.leopold-shop .woocommerce table.shop_table td.product-thumbnail img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); }
body.leopold-shop .woocommerce table.shop_table td.product-name a { font-weight: 500; color: var(--lp-charcoal); font-size: 0.95rem; }
body.leopold-shop .woocommerce table.shop_table td.product-name a:hover { color: var(--lp-gold); }
body.leopold-shop .woocommerce table.shop_table td.product-price, body.leopold-shop .woocommerce table.shop_table td.product-subtotal { font-weight: 600; color: var(--lp-charcoal); }
body.leopold-shop .woocommerce table.shop_table td.product-remove a { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--lp-cream); color: var(--lp-text-muted); font-size: 1.2rem; text-decoration: none; transition: all var(--transition-base); }
body.leopold-shop .woocommerce table.shop_table td.product-remove a:hover { background: rgba(192,57,43,0.08); color: #C0392B; }
body.leopold-shop .woocommerce table.shop_table .quantity input.qty { width: 52px; height: 40px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); text-align: center; font-family: var(--lp-font); font-size: 0.9rem; font-weight: 600; color: var(--lp-charcoal); background: var(--lp-white); }
body.leopold-shop .woocommerce table.shop_table .quantity input.qty:focus { border-color: var(--lp-gold); outline: none; }
body.leopold-shop .woocommerce table.shop_table td.actions { padding: 20px; }
body.leopold-shop .woocommerce table.shop_table td.actions .coupon { display: flex; gap: 8px; align-items: center; }
body.leopold-shop .woocommerce table.shop_table td.actions .coupon input { padding: 10px 16px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); font-family: var(--lp-font); font-size: 0.85rem; background: var(--lp-cream); width: 200px; }
body.leopold-shop .woocommerce table.shop_table td.actions .coupon input:focus { border-color: var(--lp-gold); outline: none; }
body.leopold-shop .woocommerce table.shop_table td.actions button, body.leopold-shop .woocommerce table.shop_table td.actions .button { padding: 10px 20px; font-family: var(--lp-font); font-size: 0.82rem; font-weight: 500; border-radius: var(--radius-full); transition: all var(--transition-base); cursor: pointer; border: 1.5px solid var(--lp-beige); background: var(--lp-white); color: var(--lp-charcoal); }
body.leopold-shop .woocommerce table.shop_table td.actions button:hover, body.leopold-shop .woocommerce table.shop_table td.actions .button:hover { border-color: var(--lp-gold); background: var(--lp-cream); }
body.leopold-shop .woocommerce table.shop_table td.actions > button[name="update_cart"] { float: right; }

body.leopold-shop .woocommerce .cart-collaterals { margin-top: 2rem; }
body.leopold-shop .woocommerce .cart_totals { background: var(--lp-white); border-radius: var(--radius-md); padding: 32px; border: 1px solid var(--lp-cream-dark); box-shadow: var(--shadow-sm); max-width: 480px; margin-left: auto; }
body.leopold-shop .woocommerce .cart_totals h2 { font-size: 1.2rem; font-weight: 500; color: var(--lp-charcoal); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--lp-cream-dark); font-family: var(--lp-font); }
body.leopold-shop .woocommerce .cart_totals table { border: none; }
body.leopold-shop .woocommerce .cart_totals table th { font-size: 0.9rem; font-weight: 400; color: var(--lp-text-light); padding: 10px 0; border: none; font-family: var(--lp-font); }
body.leopold-shop .woocommerce .cart_totals table td { font-size: 0.9rem; padding: 10px 0; border: none; text-align: right; color: var(--lp-charcoal); font-family: var(--lp-font); }
body.leopold-shop .woocommerce .cart_totals .order-total th, body.leopold-shop .woocommerce .cart_totals .order-total td { font-size: 1.1rem; font-weight: 600; color: var(--lp-charcoal); padding-top: 1rem; border-top: 2px solid var(--lp-cream-dark); }
body.leopold-shop .woocommerce .cart_totals .wc-proceed-to-checkout { padding-top: 1.5rem; }
body.leopold-shop .woocommerce .cart_totals .wc-proceed-to-checkout a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 34px; font-family: var(--lp-font); font-size: 0.88rem; font-weight: 500; color: #fff !important; background: var(--lp-gold-gradient); border-radius: 9999px; box-shadow: var(--shadow-gold); transition: all var(--transition-base); width: 100%; }
body.leopold-shop .woocommerce .cart_totals .wc-proceed-to-checkout a:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); filter: brightness(1.08); }

body.leopold-shop .woocommerce-checkout .woocommerce { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
body.leopold-shop .woocommerce-checkout .woocommerce > .woocommerce-notices-wrapper { grid-column: span 2; }
body.leopold-shop .woocommerce-checkout .col2-set { grid-column: 1; }
body.leopold-shop .woocommerce-checkout #order_review_heading, body.leopold-shop .woocommerce-checkout #order_review { grid-column: 2; }
@media (max-width: 991px) { body.leopold-shop .woocommerce-checkout .woocommerce { grid-template-columns: 1fr; } body.leopold-shop .woocommerce-checkout .woocommerce > .woocommerce-notices-wrapper, body.leopold-shop .woocommerce-checkout .col2-set, body.leopold-shop .woocommerce-checkout #order_review_heading, body.leopold-shop .woocommerce-checkout #order_review { grid-column: 1; } }

body.leopold-shop .woocommerce-checkout .col2-set .col-1, body.leopold-shop .woocommerce-checkout .col2-set .col-2 { background: var(--lp-white); border-radius: var(--radius-md); padding: 36px; border: 1px solid var(--lp-cream-dark); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
body.leopold-shop .woocommerce-checkout .col2-set h3 { font-size: 1.1rem; font-weight: 500; color: var(--lp-charcoal); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--lp-cream-dark); font-family: var(--lp-font); }
body.leopold-shop .woocommerce-checkout .woocommerce-billing-fields__field-wrapper, body.leopold-shop .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
body.leopold-shop .woocommerce-checkout .form-row { margin-bottom: 0; }
body.leopold-shop .woocommerce-checkout .form-row-wide { grid-column: span 2; }
@media (max-width: 575px) { body.leopold-shop .woocommerce-checkout .woocommerce-billing-fields__field-wrapper, body.leopold-shop .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper { grid-template-columns: 1fr; } body.leopold-shop .woocommerce-checkout .form-row-wide { grid-column: span 1; } }
body.leopold-shop .woocommerce-checkout label { font-size: 0.82rem; font-weight: 600; color: var(--lp-charcoal); margin-bottom: 6px; display: block; font-family: var(--lp-font); }
body.leopold-shop .woocommerce-checkout label .required { color: var(--lp-gold); }
body.leopold-shop .woocommerce-checkout input[type="text"], body.leopold-shop .woocommerce-checkout input[type="email"], body.leopold-shop .woocommerce-checkout input[type="tel"], body.leopold-shop .woocommerce-checkout input[type="number"], body.leopold-shop .woocommerce-checkout select, body.leopold-shop .woocommerce-checkout textarea { width: 100%; font-family: var(--lp-font); font-size: 0.9rem; padding: 12px 16px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); background: var(--lp-cream); color: var(--lp-charcoal); transition: all var(--transition-base); outline: none; -webkit-appearance: none; }
body.leopold-shop .woocommerce-checkout input:focus, body.leopold-shop .woocommerce-checkout select:focus, body.leopold-shop .woocommerce-checkout textarea:focus { border-color: var(--lp-gold); background: var(--lp-white); box-shadow: 0 0 0 3px rgba(183,148,105,0.12); }
body.leopold-shop .woocommerce-checkout .select2-container .select2-selection--single { height: 44px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); background: var(--lp-cream); }
body.leopold-shop .woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered { line-height: 44px; padding-left: 16px; font-family: var(--lp-font); font-size: 0.9rem; color: var(--lp-charcoal); }
body.leopold-shop .woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow { height: 44px; right: 10px; }

body.leopold-shop .woocommerce-checkout #order_review_heading { font-size: 1.2rem; font-weight: 500; color: var(--lp-charcoal); margin-bottom: 1rem; font-family: var(--lp-font); }
body.leopold-shop .woocommerce-checkout #order_review { background: var(--lp-white); border-radius: var(--radius-md); padding: 32px; border: 1px solid var(--lp-cream-dark); box-shadow: var(--shadow-sm); position: sticky; top: 120px; }
body.leopold-shop .woocommerce-checkout #order_review table { border: none; }
body.leopold-shop .woocommerce-checkout #order_review table th, body.leopold-shop .woocommerce-checkout #order_review table td { padding: 12px 0; border: none; border-bottom: 1px solid var(--lp-cream-dark); font-family: var(--lp-font); font-size: 0.9rem; }
body.leopold-shop .woocommerce-checkout #order_review table thead th { font-size: 0.78rem; font-weight: 600; color: var(--lp-text-light); text-transform: uppercase; letter-spacing: 0.04em; }
body.leopold-shop .woocommerce-checkout #order_review table .order-total th, body.leopold-shop .woocommerce-checkout #order_review table .order-total td { font-size: 1.1rem; font-weight: 600; color: var(--lp-charcoal); border-top: 2px solid var(--lp-cream-dark); border-bottom: none; padding-top: 1rem; }
body.leopold-shop .woocommerce-checkout #order_review .woocommerce-checkout-payment { padding-top: 1.5rem; }
body.leopold-shop .woocommerce-checkout .wc_payment_methods { list-style: none; padding: 0; margin: 0 0 1rem; }
body.leopold-shop .woocommerce-checkout .wc_payment_method { padding: 14px 18px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); margin-bottom: 8px; cursor: pointer; transition: all var(--transition-base); }
body.leopold-shop .woocommerce-checkout .wc_payment_method:has(input:checked) { border-color: var(--lp-gold); background: rgba(201,169,110,0.04); }
body.leopold-shop .woocommerce-checkout .wc_payment_method label { font-size: 0.9rem; font-weight: 500; color: var(--lp-charcoal); cursor: pointer; display: flex; align-items: center; gap: 10px; margin: 0; }
body.leopold-shop .woocommerce-checkout .wc_payment_method .payment_box { padding: 12px 0 0 28px; font-size: 0.85rem; color: var(--lp-text-muted); }
body.leopold-shop .woocommerce-checkout .place-order .button, body.leopold-shop .woocommerce-checkout #place_order { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px 34px; font-family: var(--lp-font); font-size: 0.92rem; font-weight: 500; color: #fff !important; background: var(--lp-gold-gradient) !important; border: none !important; border-radius: 9999px !important; box-shadow: var(--shadow-gold); transition: all var(--transition-base); cursor: pointer; letter-spacing: 0.03em; }
body.leopold-shop .woocommerce-checkout .place-order .button:hover, body.leopold-shop .woocommerce-checkout #place_order:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); filter: brightness(1.08); }
body.leopold-shop .woocommerce-checkout .woocommerce-terms-and-conditions-wrapper { font-size: 0.82rem; color: var(--lp-text-muted); margin-bottom: 1rem; }
body.leopold-shop .woocommerce-checkout .woocommerce-privacy-policy-text p { font-size: 0.78rem; color: var(--lp-text-muted); }

body.leopold-shop .woocommerce .woocommerce-error, body.leopold-shop .woocommerce .woocommerce-info, body.leopold-shop .woocommerce .woocommerce-message { padding: 16px 24px; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-family: var(--lp-font); font-size: 0.9rem; list-style: none; }
body.leopold-shop .woocommerce .woocommerce-message { background: rgba(39,174,96,0.06); border-left: 4px solid #27AE60; color: var(--lp-text); }
body.leopold-shop .woocommerce .woocommerce-error { background: rgba(192,57,43,0.06); border-left: 4px solid #C0392B; color: var(--lp-text); }
body.leopold-shop .woocommerce .woocommerce-info { background: rgba(201,169,110,0.08); border-left: 4px solid var(--lp-gold); color: var(--lp-text); }
body.leopold-shop .woocommerce .woocommerce-message a, body.leopold-shop .woocommerce .woocommerce-error a, body.leopold-shop .woocommerce .woocommerce-info a { font-weight: 600; color: var(--lp-brown); }
body.leopold-shop .woocommerce .woocommerce-message::before, body.leopold-shop .woocommerce .woocommerce-error::before, body.leopold-shop .woocommerce .woocommerce-info::before { display: none; }

body.leopold-shop .woocommerce form.checkout_coupon, body.leopold-shop .woocommerce form.login, body.leopold-shop .woocommerce form.register { background: var(--lp-white); border-radius: var(--radius-md); padding: 28px 32px; border: 1px solid var(--lp-cream-dark); box-shadow: var(--shadow-sm); margin-bottom: 2rem; }
body.leopold-shop .woocommerce form.checkout_coupon { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
body.leopold-shop .woocommerce form.checkout_coupon p:first-child { width: 100%; font-size: 0.88rem; color: var(--lp-text-light); margin-bottom: 4px; }
body.leopold-shop .woocommerce form.checkout_coupon .form-row-first { flex: 1; margin: 0; padding: 0; }
body.leopold-shop .woocommerce form.checkout_coupon .form-row-last { margin: 0; padding: 0; }
body.leopold-shop .woocommerce form.checkout_coupon input.input-text { width: 100%; font-family: var(--lp-font); font-size: 0.9rem; padding: 12px 16px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); background: var(--lp-cream); color: var(--lp-charcoal); transition: all var(--transition-base); outline: none; }
body.leopold-shop .woocommerce form.checkout_coupon input.input-text:focus { border-color: var(--lp-gold); background: var(--lp-white); box-shadow: 0 0 0 3px rgba(183,148,105,0.12); }
body.leopold-shop .woocommerce form.checkout_coupon button, body.leopold-shop .woocommerce form.checkout_coupon .button { padding: 12px 24px; font-family: var(--lp-font); font-size: 0.85rem; font-weight: 500; color: var(--lp-charcoal); background: var(--lp-cream); border: 1.5px solid var(--lp-beige); border-radius: var(--radius-full); cursor: pointer; transition: all var(--transition-base); white-space: nowrap; }
body.leopold-shop .woocommerce form.checkout_coupon button:hover, body.leopold-shop .woocommerce form.checkout_coupon .button:hover { border-color: var(--lp-gold); background: var(--lp-gold-gradient); color: #fff; }
body.leopold-shop .woocommerce form.login p, body.leopold-shop .woocommerce form.register p { margin-bottom: 1rem; font-size: 0.9rem; color: var(--lp-text-light); }
body.leopold-shop .woocommerce form.login label, body.leopold-shop .woocommerce form.register label { font-size: 0.82rem; font-weight: 600; color: var(--lp-charcoal); margin-bottom: 6px; display: block; font-family: var(--lp-font); }
body.leopold-shop .woocommerce form.login input[type="text"], body.leopold-shop .woocommerce form.login input[type="password"], body.leopold-shop .woocommerce form.login input[type="email"], body.leopold-shop .woocommerce form.register input[type="text"], body.leopold-shop .woocommerce form.register input[type="password"], body.leopold-shop .woocommerce form.register input[type="email"] { width: 100%; font-family: var(--lp-font); font-size: 0.9rem; padding: 12px 16px; border: 1.5px solid var(--lp-beige); border-radius: var(--radius-sm); background: var(--lp-cream); color: var(--lp-charcoal); transition: all var(--transition-base); outline: none; margin-bottom: 1rem; }
body.leopold-shop .woocommerce form.login input:focus, body.leopold-shop .woocommerce form.register input:focus { border-color: var(--lp-gold); background: var(--lp-white); box-shadow: 0 0 0 3px rgba(183,148,105,0.12); }
body.leopold-shop .woocommerce form.login .button, body.leopold-shop .woocommerce form.register .button { padding: 12px 28px; font-family: var(--lp-font); font-size: 0.88rem; font-weight: 500; color: #fff; background: var(--lp-gold-gradient); border: none; border-radius: var(--radius-full); box-shadow: var(--shadow-gold); cursor: pointer; transition: all var(--transition-base); }
body.leopold-shop .woocommerce form.login .button:hover, body.leopold-shop .woocommerce form.register .button:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); filter: brightness(1.08); }
body.leopold-shop .woocommerce .lost_password a { font-size: 0.82rem; color: var(--lp-brown); }
body.leopold-shop .woocommerce .showlogin, body.leopold-shop .woocommerce .showcoupon { font-weight: 600; color: var(--lp-brown); cursor: pointer; }

body.leopold-shop .cross-sells { margin-top: 3rem; }
body.leopold-shop .cross-sells h2, body.leopold-shop .related.products h2, body.leopold-shop .up-sells h2 { font-size: 1.4rem; font-weight: 300; color: var(--lp-charcoal); margin-bottom: 1.5rem; font-family: var(--lp-font); }
body.leopold-shop .cross-sells ul.products, body.leopold-shop .related.products ul.products, body.leopold-shop .up-sells ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; list-style: none; padding: 0; }
body.leopold-shop .cross-sells ul.products li, body.leopold-shop .related.products ul.products li, body.leopold-shop .up-sells ul.products li { background: var(--lp-white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--lp-cream-dark); transition: all var(--transition-base); }
body.leopold-shop .cross-sells ul.products li:hover, body.leopold-shop .related.products ul.products li:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
body.leopold-shop .cross-sells ul.products li img, body.leopold-shop .related.products ul.products li img { width: 100%; height: 200px; object-fit: cover; }
body.leopold-shop .cross-sells ul.products li a, body.leopold-shop .related.products ul.products li > a { display: block; }
body.leopold-shop .cross-sells ul.products li .woocommerce-loop-product__title, body.leopold-shop .related.products ul.products li .woocommerce-loop-product__title { font-size: 0.95rem; font-weight: 500; color: var(--lp-charcoal); padding: 12px 16px 4px; font-family: var(--lp-font); }
body.leopold-shop .cross-sells ul.products li .price, body.leopold-shop .related.products ul.products li .price { padding: 0 16px 12px; font-size: 0.9rem; font-weight: 600; color: var(--lp-brown); }
body.leopold-shop .cross-sells ul.products li .button, body.leopold-shop .related.products ul.products li .button { display: block; text-align: center; margin: 0 16px 16px; padding: 10px; background: var(--lp-cream); border-radius: var(--radius-full); font-family: var(--lp-font); font-size: 0.82rem; font-weight: 500; color: var(--lp-charcoal); transition: all var(--transition-base); }
body.leopold-shop .cross-sells ul.products li .button:hover, body.leopold-shop .related.products ul.products li .button:hover { background: var(--lp-gold-gradient); color: #fff; }
@media (max-width: 767px) { body.leopold-shop .cross-sells ul.products, body.leopold-shop .related.products ul.products, body.leopold-shop .up-sells ul.products { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

.postcode-status { font-size: 0.8rem; margin-top: 6px; min-height: 1.2em; transition: all var(--transition-base); }
.postcode-loading { color: var(--lp-text-muted); }
.postcode-found { color: var(--lp-gold); font-weight: 500; }
.postcode-found i { font-size: 0.75rem; margin-right: 2px; }
.postcode-error { color: var(--lp-text-muted); font-style: italic; }
body.leopold-shop .woocommerce-checkout input[readonly] { background: var(--lp-cream-dark); color: var(--lp-text-light); cursor: default; }
body.leopold-shop .woocommerce-checkout input[readonly]:focus { border-color: var(--lp-beige); box-shadow: none; }
#billing_house_number_field, #shipping_house_number_field { position: relative; }
