/* ── Global text size increase 20% ─────────────────────────────── */
:root { --text-scale: 1.2; }
body, #product-detail, .container, main.main-content,
.product-info, .product-description, .kit-option-group label,
.tier-table th, .tier-table td, .price-note, .price-label,
.qty-btn, #lifter-qty-input { font-size: calc(1rem * var(--text-scale)); }

/* Product title and price get slightly less scaling so they don't blow up */
.product-title { font-size: calc(1.35rem * var(--text-scale)); }
.product-price { font-size: calc(1.4rem * var(--text-scale)); }

@media (max-width: 768px) {
  /* Less scaling on mobile to avoid overflow */
  :root { --text-scale: 1.12; }
}

/* Shop-specific styles */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.category-card {
    background: var(--bg-card, #1a1a2e);
    border: 2px solid var(--border, #333);
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    font-weight: 600;
    color: var(--text-primary, #e0e0e0);
    font-size: 0.85rem;
    line-height: 1.3;
}

.category-card:hover {
    border-color: var(--accent, #c41e3a);
    background: rgba(196, 30, 58, 0.08);
    transform: translateY(-2px);
}

.category-card.active {
    border-color: var(--accent, #c41e3a);
    background: rgba(196, 30, 58, 0.15);
    color: var(--accent, #c41e3a);
}

.category-card .cat-count {
    color: var(--text-secondary, #888);
    font-size: 0.7rem;
    margin-top: 3px;
    font-weight: 400;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border, #333);
}

.product-card {
    background: var(--bg-card, #1a1a2e);
    border: 1px solid var(--border, #333);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--accent, #c41e3a);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.15);
}

.product-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-no-image {
    color: #555;
    font-size: 0.85rem;
}

.product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-name {
    color: var(--text-primary, #e0e0e0);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    color: var(--accent, #c41e3a);
    font-size: 1.05rem;
    font-weight: 700;
}

.product-sku {
    color: var(--text-secondary, #888);
    font-size: 0.7rem;
}

.no-products {
    color: var(--text-secondary, #888);
    text-align: center;
    padding: 40px;
    font-size: 1rem;
}

/* Product detail */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.product-thumbs .thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.product-thumbs .thumb:hover {
    border-color: var(--accent, #c41e3a);
}

.product-title {
    color: var(--text-primary, #e0e0e0);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.product-sku {
    color: var(--text-secondary, #888);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.product-price {
    color: var(--accent, #c41e3a);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-quantity label {
    color: var(--text-primary, #e0e0e0);
    font-weight: 600;
}

.product-quantity input {
    width: 60px;
    padding: 8px;
    background: #111;
    border: 1px solid var(--border, #333);
    border-radius: 4px;
    color: var(--text-primary, #e0e0e0);
    font-size: 1rem;
    text-align: center;
}

.btn-add-cart {
    background: var(--accent, #c41e3a);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-bottom: 24px;
}

.btn-add-cart:hover {
    background: #a01830;
    transform: translateY(-1px);
}

.product-description {
    color: var(--text-primary, #e0e0e0);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 1200px;
    margin: 48px auto 0 auto !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

/* Wider text columns for the description */
.product-description p {
    margin-bottom: 16px;
}

.product-description p {
    margin-bottom: 12px;
}

.error {
    color: #ff6b6b;
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .category-card {
        padding: 10px 6px;
        font-size: 0.75rem;
        min-height: 50px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-image {
        height: 120px;
    }
    .product-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-image {
        height: 200px;
    }
}

/* ---------- Cart badge (navbar) ---------- */
.cart-badge {
    display: inline-block;
    background: var(--accent, #c41e3a);
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0 5px;
    vertical-align: middle;
}

/* ---------- Cart page ---------- */
.cart-container {
    max-width: 900px;
    margin: 0 auto;
}
.cart-page-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent, #c41e3a);
    display: inline-block;
}
.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary, #666);
}
.cart-empty h2 {
    color: var(--text-primary);
    margin-bottom: 16px;
}
.cart-items {
    border: 1px solid var(--border, #e0e0e0);
    border-radius: 8px;
    overflow: hidden;
}
.cart-line {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--border, #e0e0e0);
    background: var(--bg-card, #fff);
}
.cart-line:last-child { border-bottom: none; }
.cart-line-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #f0f0f0;
}
.cart-line-info {
    flex: 1;
    min-width: 0;
}
.cart-line-name {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px;
    font-size: 1rem;
}
.cart-line-sku {
    font-size: 0.75rem;
    color: var(--text-secondary, #888);
}
.cart-line-price {
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}
.cart-line-lineprice {
    font-weight: 700;
    color: var(--accent, #c41e3a);
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}
.cart-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}
.cart-qty input {
    width: 56px;
    padding: 6px 8px;
    border: 1px solid var(--border, #ccc);
    border-radius: 4px;
    text-align: center;
    font-size: 0.95rem;
}
.cart-remove {
    background: #da3633;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.85rem;
    white-space: nowrap;
}
.cart-remove:hover { background: #b02a28; }
.cart-totals {
    margin-top: 20px;
    text-align: right;
}
.cart-subtotal-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 12px 0;
    border-top: 2px solid var(--accent, #c41e3a);
}
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 12px;
    flex-wrap: wrap;
}
.cart-note {
    font-size: 0.85rem;
    color: var(--text-secondary, #888);
    margin-top: 12px;
}

.cart-customer {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
}
.cart-customer h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 8px;
}
.cart-customer .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 600px) {
    .cart-customer .form-row { grid-template-columns: 1fr; }
}
.cart-address-group {
    margin-top: 8px;
}
.cart-address-group h4 {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 6px;
}
.same-billing-label {
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* ---------- Checkout page ---------- */
.checkout-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.checkout-summary {
    border: 1px solid var(--border, #e0e0e0);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    background: var(--bg-card, #fff);
}
.checkout-summary h3 {
    margin-top: 0;
    color: var(--text-primary);
}
.checkout-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.checkout-summary li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.checkout-form {
    display: grid;
    gap: 14px;
}
.checkout-form label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 0.9rem;
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border, #ccc);
    border-radius: 4px;
    font-size: 0.95rem;
    box-sizing: border-box;
}
.checkout-form textarea { min-height: 80px; resize: vertical; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.checkout-error {
    background: #fdecea;
    border: 1px solid #da3633;
    color: #b02a28;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}
.checkout-success {
    background: #e8f5e9;
    border: 1px solid #22c55e;
    color: #1a7a3a;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

/* Checkout review layout */
.checkout-review-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 768px) {
    .review-grid { grid-template-columns: 1fr; }
}
.review-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
}
.review-section h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}
.review-table {
    width: 100%;
    border-collapse: collapse;
}
.review-table td {
    padding: 8px 4px;
    border-bottom: 1px solid var(--border-light);
}
.review-line-name { font-weight: 500; }
.review-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid var(--accent);
}
.review-contact, .review-address {
    line-height: 1.6;
    color: var(--text-primary);
}
.review-note {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px;
    margin-top: 8px;
    line-height: 1.5;
}
.review-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}
@media (max-width: 600px) {
    .cart-line {
        flex-wrap: wrap;
    }
    .cart-line-lineprice { min-width: 100%; text-align: left; }
    .form-row { grid-template-columns: 1fr; }
}

/* Product custom options & attribute selectors */
.product-custom-options,
.product-option {
    margin-bottom: 16px;
}

.product-option label {
    display: block;
    color: var(--text-primary, #e0e0e0);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.product-option .required {
    color: var(--accent, #c41e3a);
}

.product-option select,
.product-option select[multiple] {
    width: 100%;
    max-width: 400px;
    padding: 10px 12px;
    background: var(--bg-input, #1a1a1a);
    border: 1px solid var(--border, #333);
    border-radius: 6px;
    color: var(--text-primary, #e0e0e0);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.product-option select:focus {
    outline: none;
    border-color: var(--accent, #c41e3a);
}

.product-option .text-muted {
    display: block;
    color: var(--text-muted, #666);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Product custom options & attribute selectors */
.product-custom-options {
    margin-bottom: 16px;
}

.product-option label {
    display: block;
    color: var(--text-primary, #e0e0e0);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.product-option .required {
    color: var(--accent, #c41e3a);
}

.product-option select,
.product-option select[multiple] {
    width: 100%;
    max-width: 400px;
    padding: 10px 12px;
    background: var(--bg-input, #1a1a1a);
    border: 1px solid var(--border, #333);
    border-radius: 6px;
    color: var(--text-primary, #e0e0e0);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.product-option select:focus {
    outline: none;
    border-color: var(--accent, #c41e3a);
}

.product-option .text-muted {
    display: block;
    color: var(--text-muted, #666);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* ========== Configurable Kit Styles ==========\n */
.kit-option-group {
    margin-bottom: 16px;
}

.kit-option-group label {
    display: block;
    color: var(--text-primary, #e0e0e0);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.kit-price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.kit-price-display .price-note {
    color: var(--text-secondary, #888);
    font-size: 0.9rem;
}

/* Volume Pricing Table */
.volume-pricing-section {
    margin-bottom: 20px;
}

.volume-pricing-section h4 {
    color: var(--text-primary, #e0e0e0);
    font-size: 1rem;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border, #333);
    padding-bottom: 6px;
}

.tier-table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
    margin-bottom: 8px;
}

.tier-table thead tr {
    background: rgba(196, 30, 58, 0.1);
}

.tier-table th,
.tier-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border, #333);
    color: var(--text-primary, #e0e0e0);
}

.tier-table th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary, #aaa);
}

.tier-table tr.active td {
    background: rgba(34, 197, 94, 0.08);
    font-weight: 600;
    color: #22c55e;
}

.tier-hint {
    color: var(--text-secondary, #888);
    font-size: 0.85rem;
    margin-top: 4px;
}

.tier-hint strong {
    color: #22c55e;
}

/* Kit radio button option style */
.kit-radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kit-radio-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--border, #333);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-card, #1a1a1a);
    color: var(--text-primary, #e0e0e0);
}

.kit-radio-label:hover {
    border-color: var(--accent, #c41e3a);
    background: rgba(196, 30, 58, 0.08);
}

.kit-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent, #c41e3a);
    cursor: pointer;
}

.kit-radio-label input[type="radio"]:checked + span {
    font-weight: 600;
}

.kit-radio-label:has(input:checked) {
    border-color: var(--accent, #c41e3a);
    background: rgba(196, 30, 58, 0.12);
}

/* LT upcharge note */
.lt-note {
    background: rgba(251, 191, 36, 0.08);
    border-left: 3px solid #fbbf24;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.lt-note .upcharge-info {
    color: var(--text-primary, #e0e0e0);
    font-size: 0.9rem;
    margin: 0;
}

/* Kit add to cart button full width */
.kit-add-cart {
    width: 100%;
    max-width: 400px;
}

/* AFM/DFM cascading dropdowns container */
.afm-dropdowns .kit-option-group {
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .tier-table th,
    .tier-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

/* LT upcharge note */
.lt-note {
    background: rgba(251, 191, 36, 0.08);
    border-left: 3px solid #fbbf24;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.lt-note .upcharge-info {
    color: var(--text-primary, #e0e0e0);
    font-size: 0.9rem;
    margin: 0;
}

/* Kit add to cart button full width */
.kit-add-cart {
    width: 100%;
    max-width: 400px;
}

/* AFM/DFM cascading dropdowns container */
.afm-dropdowns .kit-option-group {
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .tier-table th,
    .tier-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

/* LT upcharge note */
.lt-note {
    background: rgba(251, 191, 36, 0.08);
    border-left: 3px solid #fbbf24;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.lt-note .upcharge-info {
    color: var(--text-primary, #e0e0e0);
    font-size: 0.9rem;
    margin: 0;
}

/* Kit add to cart button full width */
.kit-add-cart {
    width: 100%;
    max-width: 400px;
}

/* AFM/DFM cascading dropdowns container */
.afm-dropdowns .kit-option-group {
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .tier-table th,
    .tier-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

/* LT upcharge note */
.lt-note {
    background: rgba(251, 191, 36, 0.08);
    border-left: 3px solid #fbbf24;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.lt-note .upcharge-info {
    color: var(--text-primary, #e0e0e0);
    font-size: 0.9rem;
    margin: 0;
}

/* Kit add to cart button full width */
.kit-add-cart {
    width: 100%;
    max-width: 400px;
}

/* AFM/DFM cascading dropdowns container */
.afm-dropdowns .kit-option-group {
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .tier-table th,
    .tier-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

/* LT upcharge note */
.lt-note {
    background: rgba(251, 191, 36, 0.08);
    border-left: 3px solid #fbbf24;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.lt-note .upcharge-info {
    color: var(--text-primary, #e0e0e0);
    font-size: 0.9rem;
    margin: 0;
}

/* Kit add to cart button full width */
.kit-add-cart {
    width: 100%;
    max-width: 400px;
}

/* AFM/DFM cascading dropdowns container */
.afm-dropdowns .kit-option-group {
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .tier-table th,
    .tier-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
}

/* Disabled Add to Cart button styling */
.btn-add-cart[disabled], .btn-add-cart.disabled {
  background: #555 !important;
  cursor: not-allowed !important;
  color: #999 !important;
  opacity: 0.6 !important;
  user-select: none !important;
}

.btn-add-cart:not([disabled]):hover {
  background: #e85a2d !important;
}

/* Force native <select> dropdown behavior — no custom click-and-hold menus */
.kit-option-group select,
.product-custom-options select,
#lifter-vlom-type, #lifter-qty-select, #vlom-qty-select, #afm-qty-select {
  -webkit-appearance: menulist !important;
     -moz-appearance: menulist !important;
          appearance: menulist !important;
  touch-action: manipulation !important;
  pointer-events: auto !important;
  width: 100%;
  max-width: 400px;
}

/* Prevent any long-press context on option elements */
.kit-option-group option,
.product-custom-options option {
  pointer-events: auto !important;
  user-select: text !important;
}

/* Ensure select dropdowns open on tap/click, not long-press */
select {
  -webkit-tap-highlight-color: transparent;
}


/* +/- Quantity control */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
}

.qty-btn {
  width: 36px;
  height: 38px;
  box-sizing: border-box;
  border: 2px solid var(--accent);
  background: var(--bg-primary);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background 0.15s, color 0.15s;
}

.qty-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-minus {
  border-right: none;
  border-radius: 4px 0 0 4px;
}

.qty-plus {
  border-left: none;
  border-radius: 0 4px 4px 0;
}

/* Quantity input styling */
.qty-control input[type="number"],
#lifter-qty-input,
#afm-qty-select {
  height: 38px;
  line-height: 38px;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-control input[type="number"]::-webkit-inner-spin-button,
.qty-control input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}