/* Modal Base */
.wwo-modal {
    display: none; 
    position: fixed; 
    z-index: 9999999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow-x: hidden;
    overflow-y: auto;
}

.wwo-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.wwo-modal-content {
    background-color: #ffffff;
    margin: 30px auto;
    padding: 15px 20px;
    width: 92%;
    max-width: 480px;
    border-radius: 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    position: relative;
    box-sizing: border-box;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    animation: wwoSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes wwoSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.wwo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f8fafc;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.wwo-header-title h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.wwo-close {
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    padding: 6px;
}

.wwo-close:hover {
    color: #ef4444;
    background: #fee2e2;
}

/* Trust Badges */
.wwo-trust-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.wwo-trust-badges-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wwo-trust-badges-item.safe {
    background: #ecfdf5;
    color: #059669;
}

.wwo-trust-badges-item.fast {
    background: #fffbeb;
    color: #d97706;
}

/* Options */
.wwo-product-options {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}
.wwo-product-options::-webkit-scrollbar {
    width: 6px;
}
.wwo-product-options::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.wwo-option {
    display: block;
    margin-bottom: 10px;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    padding: 10px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
    position: relative;
}

.wwo-option:hover {
    border-color: #e2e8f0;
}

.wwo-option:has(input:checked) {
    border-color: #25d366;
    background-color: #f0fdf4;
}

.wwo-option-variable {
    flex-direction: column;
    align-items: stretch;
}

.wwo-option input[type="radio"] {
    display: none;
}

.wwo-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wwo-option-content img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.wwo-option-text {
    flex: 1;
}

.wwo-option-text strong {
    display: block;
    font-size: 13px;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 2px;
}

.wwo-option-price {
    font-weight: 800;
    font-size: 15px;
    color: #16a34a;
}

/* Summary */
.wwo-summary {
    background: #f8fafc;
    padding: 15px;
    border-radius: 14px;
    margin-bottom: 25px;
    margin-top: 15px;
    border: 1px solid #e2e8f0;
}

.wwo-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: #64748b;
    align-items: center;
}

.wwo-val {
    font-weight: 700;
    color: #0f172a;
}
.wwo-free {
    color: #059669;
    background: #d1fae5;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.wwo-total-row {
    margin-top: 10px;
    border-top: 2px dashed #cbd5e1;
    padding-top: 10px;
    margin-bottom: 0;
}
.wwo-total-row span:first-child {
    font-weight: 800;
    font-size: 15px;
    color: #0f172a;
}
.wwo-total-row .wwo-val {
    font-size: 20px;
    color: #25d366;
    font-weight: 900;
}

/* Form */
.wwo-form-header {
    text-align: center;
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 12px;
    border-radius: 12px;
}
.wwo-form-header h3 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
}
.wwo-form-header p {
    font-size: 12px;
    color: #475569;
    margin: 0;
    font-weight: 500;
}

.wwo-input-row {
    display: flex;
    gap: 12px;
}
.wwo-input-row .wwo-form-group {
    flex: 1;
}

@media(max-width: 480px) {
    .wwo-input-row {
        flex-direction: column;
        gap: 0;
    }
}

.wwo-form-group {
    margin-bottom: 16px;
}

.wwo-form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 12px;
    color: #334155;
}

.wwo-input-wrapper {
    position: relative;
    display: block; /* Safer for absolute children than flex */
}

.wwo-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: color 0.2s;
    pointer-events: none; /* Let clicks pass through to input */
}

.wwo-input-wrapper:focus-within .wwo-input-icon {
    color: #25d366;
}

/* Force styles via #wwo-modal wrapper to prevent theme overriding */
#wwo-modal .wwo-form-group input,
#wwo-modal .wwo-form-group select {
    width: 100% !important;
    height: 46px !important;
    padding: 0 14px 0 42px !important; /* Extremely important to prevent icon overlap */
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
    background-color: #f8fafc !important;
    color: #0f172a !important;
    transition: all 0.2s !important;
    font-family: inherit !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    margin: 0 !important;
    box-shadow: none !important;
}

#wwo-modal .wwo-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 16px !important;
    padding-right: 36px !important;
    cursor: pointer !important;
}

#wwo-modal .wwo-form-group input:focus,
#wwo-modal .wwo-form-group select:focus {
    border-color: #25d366 !important;
    background-color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1) !important;
}

/* Redesigned Button - Forced !important for Elementor compat */
#wwo-modal .wwo-wa-btn {
    width: 100% !important;
    background-color: #25D366 !important;
    color: #ffffff !important;
    padding: 16px 20px !important;
    border: none !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    text-align: left !important;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s !important;
    margin-top: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.5) !important;
    font-family: 'Inter', sans-serif !important;
}

#wwo-modal .wwo-wa-btn:hover {
    background-color: #1fb155 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px -8px rgba(37, 211, 102, 0.6) !important;
}

#wwo-modal .wwo-wa-btn:active {
    transform: translateY(0) !important;
}

#wwo-modal .wwo-wa-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0,0,0,0.1) !important;
    padding: 8px !important;
    border-radius: 50% !important;
}

#wwo-modal .wwo-wa-icon svg {
    fill: #ffffff !important;
    width: 26px !important;
    height: 26px !important;
}

#wwo-modal .wwo-btn-text-wrap {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

#wwo-modal .wwo-btn-top {
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

#wwo-modal .wwo-btn-bottom {
    font-size: 13px !important;
    font-weight: 500 !important;
    opacity: 0.9 !important;
    margin-top: 2px !important;
    color: #ffffff !important;
}

#wwo-modal .wwo-btn-bottom b {
    font-weight: 800 !important;
}

/* Secure Text Box */
.wwo-secure-box {
    margin-top: 15px;
    background: #f0fdf4;
    border: 1px dashed #86efac;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.wwo-secure-box svg {
    color: #16a34a;
}
.wwo-secure-text {
    font-size: 12px;
    color: #15803d;
    font-weight: 600;
    margin: 0;
}

/* Animated Trigger Button */
#wasa {
    animation: wwoPulseTrigger 2s infinite;
}

@keyframes wwoPulseTrigger {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Variation Quantity Control - Compact Single Line */
.wwo-var-qty-wrapper {
    margin-top: 8px;
}

.wwo-var-qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wwo-var-qty-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wwo-var-qty-label {
    font-weight: 700;
    font-size: 12px;
    color: #1e293b;
    white-space: nowrap;
}

.wwo-var-price-unit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
}

.wwo-var-price-unit .original-price {
    text-decoration: line-through;
    opacity: 0.6;
}

.wwo-var-price-unit .discount-price {
    color: #16a34a;
    font-weight: 600;
}

.wwo-inline-discount {
    background: #dc2626;
    color: #fff;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 10px;
}

.wwo-qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.wwo-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f8fafc;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.wwo-qty-btn:hover {
    background: #25D366;
    color: #fff;
}

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

.wwo-var-quantity {
    width: 36px !important;
    height: 32px !important;
    border: none !important;
    border-left: 1px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
    border-radius: 0 !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    color: #1e293b !important;
    padding: 0 !important;
    background: #fff !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.wwo-var-quantity:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #e2e8f0 !important;
    background: #fff !important;
}

.wwo-var-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.wwo-var-subtotal span:first-child {
    font-size: 10px;
    color: #94a3b8;
}

.wwo-var-subtotal .total-price {
    font-size: 14px;
    font-weight: 800;
    color: #25D366;
}

/* Step Container */
.wwo-step-container {
    margin-bottom: 15px;
}

.wwo-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.wwo-step-num {
    background: #25D366;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.wwo-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

/* Packs Grid */
.wwo-packs-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wwo-pack-option {
    display: block;
    cursor: pointer;
}

.wwo-pack-option input[type="radio"] {
    display: none;
}

.wwo-pack-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s ease;
    position: relative;
}

.wwo-pack-option:hover .wwo-pack-card {
    border-color: #cbd5e1;
}

.wwo-pack-option:has(input:checked) .wwo-pack-card {
    border-color: #25D366;
    background: #f0fdf4;
}

.wwo-pack-qty {
  width: 25px;
  height: 25px;
  background: #000;
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.wwo-pack-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wwo-pack-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.wwo-pack-label {
    font-size: 12px;
    color: #64748b;
}

.wwo-pack-price {
    font-size: 16px;
    font-weight: 800;
    color: #16a34a;
    display: block;
}

.wwo-pack-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 70px;
}

.wwo-pack-savings {
    display: block;
    font-size: 11px;
    color: #dc2626;
    font-weight: 600;
    background: #fee2e2;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 2px;
}

.wwo-pack-original {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

.wwo-var-qty-info {
    font-size: 13px;
    color: #64748b;
    padding: 8px 14px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fcd34d;
    border-radius: 12px;
    margin-bottom: 12px;
    text-align: center;
}

.wwo-var-qty-info strong {
    color: #d97706;
    font-size: 16px;
    font-weight: 800;
}

.wwo-var-qty-selector {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    padding: 4px 6px;
    border-radius: 8px;
    border: 1px solid #86efac;
}

.wwo-var-qty-btn {
    background-color: rgba(0, 0, 0, 0);
    color: #fff !important;
    padding: 5px 10px !important;
    border: 1px solid green !important;
    border-radius: 5px !important;
    font-weight: bold !important;
}

.wwo-var-qty-plus {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.wwo-var-qty-plus:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6b5e 100%);
    transform: scale(1.05);
}

.wwo-var-qty-minus {
    background-color: rgba(0, 0, 0, 0);
    color: #64748b !important;
    border: 1px solid #e2e8f0 !important;
}

.wwo-var-qty-minus:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0);
    color: #ef4444 !important;
    border-color: #ef4444 !important;
    transform: scale(1.05);
}

.wwo-var-qty-minus:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.wwo-var-qty-value {
    min-width: 24px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #0f172a;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    padding: 5px 8px;
}
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 0 4px;
}

@media (max-width: 480px) {
    .wwo-var-qty-btn {
        padding: 6px 12px !important;
    }

    .wwo-var-qty-value {
        min-width: 28px;
        height: auto;
        font-size: 16px;
        padding: 6px 10px;
    }

    .wwo-var-qty-selector {
        gap: 6px;
        padding: 5px 8px;
    }

    .wwo-var-card {
        padding: 12px 14px;
    }

    .wwo-var-qty-info {
        font-size: 14px;
        padding: 10px 16px;
    }

    .wwo-var-qty-info strong {
        font-size: 18px;
    }
}

/* Variations List */
.wwo-variations-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wwo-var-option {
    display: block;
    cursor: pointer;
}

.wwo-var-option input[type="radio"] {
    display: none;
}

.wwo-var-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 12px;
    border: 2px solid #f1f5f9;
    border-radius: 10px;
    background: #fff;
    transition: all 0.2s ease;
}

.wwo-var-option:hover .wwo-var-card {
    border-color: #cbd5e1;
}

.wwo-var-option:has(input:checked) .wwo-var-card {
    border-color: #25D366;
    background: #f0fdf4;
}

.wwo-var-card img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

.wwo-var-info {
    flex: 1;
}

.wwo-var-info strong {
    font-size: 13px;
    color: #1e293b;
}

.wwo-var-price {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
}

.wwo-var-validation {
    display: none;
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    background: #fee2e2;
    border-radius: 6px;
    margin-top: 8px;
}

.wwo-var-validation.wwo-show {
    display: block;
}

.wwo-validation-msg {
    display: none;
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    background: #fee2e2;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #fecaca;
}

.wwo-validation-msg.wwo-show {
    display: block;
    animation: wwoShake 0.5s ease-in-out;
}

@keyframes wwoShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.wwo-goto-step2 {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.wwo-goto-step2:hover {
    background: #1fb155;
}

.wwo-pack-name-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wwo-pack-name-wrap .wwo-pack-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.wwo-pack-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    padding: 4px 8px;
    border-radius: 20px;
    border: 1px solid #86efac;
    vertical-align: middle;
}

.wwo-pack-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wwo-pack-plus {
    background-color: rgba(0, 0, 0, 0);
    color: #fff !important;
    padding: 5px 10px !important;
    border: 1px solid green !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.wwo-pack-plus:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6b5e 100%);
    transform: scale(1.05);
}

.wwo-pack-minus {
    background-color: rgba(0, 0, 0, 0);
    color: #64748b !important;
    padding: 5px 10px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 5px !important;
    font-weight: bold !important;
}

.wwo-pack-minus:hover:not(.disabled) {
    background: rgba(0, 0, 0, 0);
    color: #ef4444 !important;
    border-color: #ef4444 !important;
    transform: scale(1.05);
}

.wwo-pack-qty-value {
    min-width: 24px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #0f172a;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    padding: 5px 8px;
}

.wwo-pack-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 10px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    padding: 4px 6px;
    border-radius: 8px;
    border: 1px solid #86efac;
}

.wwo-pack-minus.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wwo-pack-qty-value {
    min-width: 24px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    padding: 0 4px;
}

.wwo-pack-subtotal {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

.wwo-pack-option.selected .wwo-pack-card {
    border-color: #25D366;
    background: #f0fdf4;
}

.wwo-pack-qty {
    width: 28px;
    height: 28px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 5px;
}

.wwo-pack-recommended-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 3px rgba(234, 179, 8, 0.3);
}

.wwo-pack-card {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 12px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s ease;
}

.wwo-pack-qty-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 10px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    padding: 5px 8px;
    border-radius: 20px;
    border: 1px solid #86efac;
}

.wwo-pack-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wwo-pack-price {
    font-size: 16px;
    font-weight: 800;
    color: #16a34a;
    display: block;
}

.wwo-pack-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 70px;
}

.wwo-pack-original {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

.wwo-pack-option {
    display: block;
    cursor: pointer;
}

.wwo-pack-option input[type="radio"] {
    display: none;
}

.wwo-pack-option:hover .wwo-pack-card {
    border-color: #cbd5e1;
}

.wwo-discount-row {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px dashed #6ee7b7;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.05);
}

.wwo-volume-disc-row {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px dashed #fbbf24;
    margin: 10px 0;
}

.wwo-volume-val {
    color: #b45309 !important;
    font-weight: 900 !important;
    background: #fbbf24;
    padding: 2px 8px;
    border-radius: 6px;
}

.wwo-volume-label {
    color: #b45309 !important;
    font-weight: 800 !important;
    font-size: 13px !important;
}

.wwo-discount-label {
    color: #059669 !important;
    font-weight: 800 !important;
    font-size: 13px !important;
}

.wwo-discount-val {
  color: #fff !important;
  font-weight: 900 !important;
  background: #be0202;
  padding: 2px 8px;
  border-radius: 6px;
}

.wwo-attention-msg {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: #0f172a;
    padding: 0 10px;
    margin-bottom: 15px;
}

.wwo-shipping-header {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    margin-top: 5px;
}

.wwo-shipping-methods-wrapper {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.wwo-shipping-option {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #fff;
    cursor: default; /* Disabled selection since it's automatic */
}

.wwo-shipping-option:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
}

.wwo-shipping-radio {
    margin-right: 12px;
}

.wwo-shipping-radio input[type="radio"] {
    accent-color: #0f172a !important;
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    pointer-events: none;
}

.wwo-shipping-content {
    flex: 1;
}

.wwo-shipping-title {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}

.wwo-shipping-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.3;
}

.wwo-shipping-price {
    font-weight: 800;
    font-size: 14px;
    color: #0f172a;
    margin-left: 10px;
}

.wwo-pack-subtotal {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

.wwo-volume-msgs {
    margin-bottom: 8px;
    padding: 5px 8px;
    background: #fef9c3;
    border: 1px dashed #fbbf24;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.wwo-volume-msg-item {
    font-size: 11px;
    color: #92400e;
    font-weight: 600;
    padding: 2px 6px;
    background: #fffbeb;
    border-radius: 4px;
    border: 1px solid #fcd34d;
}

.wwo-volume-msg-active {
    font-size: 11px;
    color: #166534;
    font-weight: 800;
    padding: 2px 6px;
    background: #dcfce7;
    border-radius: 4px;
    border: 1px solid #86efac;
}

.wwo-pack-option.selected .wwo-pack-card {
    border-color: #25D366;
    background: #f0fdf4;
}

.wwo-product-options {
    margin-bottom: 15px;
}


