.checkout-native {
    background: #fff;
    border: 1px solid var(--dino-brand-color, var(--dino-brand-color, #ea6c5a));
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100% !important;
    max-width: none !important;
    display: block !important;
    box-sizing: border-box !important;
    clear: both !important;
}
.checkout-native__header {
    text-align: center;
    margin-bottom: 25px;
}
.checkout-native__header h2 {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.checkout-native__header p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}
.checkout-native__variations {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.variation-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.variation-label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}
.variation-label .selected-value {
    color: #777;
    font-weight: 400;
}
.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.variation-option {
    min-width: 40px;
    height: 40px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    padding: 2px;
    box-sizing: border-box;
}
.variation-option--text {
    width: auto;
    padding: 0 12px;
}
.variation-option:hover {
    border-color: var(--dino-brand-color, var(--dino-brand-color, #ea6c5a));
}
.variation-option.selected {
    border-color: var(--dino-brand-color, var(--dino-brand-color, #ea6c5a));
    border-width: 1px;
}
.variation-option--text.selected {
    background-color: var(--dino-brand-color, var(--dino-brand-color, #ea6c5a));
    color: #fff;
}
.variation-option--color .color-swatch,
.variation-option--image img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    display: block;
    object-fit: cover;
    box-shadow: inset 0 0 0 1px rgba(var(--color-primary-rgb), 0.1);
}
.variation-option .text-swatch {
    font-size: 14px;
    font-weight: 600;
}
.checkout-native__fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.checkout-native__field {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease;
}
.checkout-native__field:focus-within {
    border-color: var(--dino-brand-color, var(--dino-brand-color, #ea6c5a));
}
.checkout-native__field .field-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--dino-brand-color, var(--dino-brand-color, #ea6c5a));
    border-right: 1px solid #E5E5E5;
    background: #fdfcfb;
}
.checkout-native__field .field-icon svg {
    width: 18px;
    height: 18px;
}
.checkout-native__field input {
    flex: 1;
    border: none;
    padding: 8px 12px;
    font-size: 16px; 
    color: #333;
    outline: none;
    background: transparent;
}
.checkout-native__field--phone .field-icon--flag {
    width: auto;
    padding: 0 10px;
    gap: 8px;
}
.checkout-native__field--phone .field-icon--flag svg {
    width: 24px;
    height: auto;
    border-radius: 2px;
}
.checkout-native__field--phone .phone-prefix {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}
.checkout-native__quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #fdfcfb;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    margin-bottom: 20px;
}
.checkout-native__quantity label {
    font-weight: 700;
    font-size: 13px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.quantity-controls {
    display: inline-flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    height: 32px;
}
.quantity-controls .qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    user-select: none;
    padding: 0;
}
.quantity-controls .qty-btn:hover {
    background: #f5f5f5;
}
.quantity-controls .qty-btn:active {
    background: #eee;
}
.quantity-controls .qty-value {
    width: 34px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
    line-height: 32px;
    background: #fff;
}
.quantity-controls .qty-btn.loading {
    pointer-events: none;
    position: relative;
    color: transparent !important;
}
.quantity-controls .qty-btn.loading::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
    top: calc(50% - 8px);
    left: calc(50% - 8px);
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}
.checkout-native__summary {
    background: #fdfcfb;
    border: 1px solid rgba(var(--color-primary-rgb), 0.1);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 13px;
    color: #666;
}
.summary-row:last-child {
    margin-bottom: 0;
}
.summary-row--total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #E5E5E5;
    font-weight: 800;
    font-size: 16px;
    color: #333;
}
.summary-row--total .summary-total {
    color: var(--dino-brand-color, var(--dino-brand-color, #ea6c5a));
}
.checkout-native__submit {
    width: 100%;
    background: var(--dino-brand-color, var(--dino-brand-color, #ea6c5a));
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    text-align: left;
    flex-wrap: nowrap !important;
}
.checkout-native__submit:hover {
    background: #ba4a00;
}
.checkout-native__submit:active {
    transform: none;
}
.submit-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.submit-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}
.submit-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.submit-text strong {
    font-size: 18px;
    font-weight: 800;
    display: block;
    margin-bottom: 2px;
}
.submit-text small {
    font-size: 11px;
    opacity: 0.95;
    font-weight: 500;
    white-space: nowrap;
}
.shipping-free {
    color: #2ecc71;
    font-weight: 700;
}
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@media (max-width: 767px) {
    .checkout-native {
        padding: 15px 12px;
        margin-top: 20px;
        border-width: 1px;
    }
    .checkout-native__header {
        margin-bottom: 20px;
    }
    .checkout-native__header h2 {
        font-size: 17px;
    }
    .checkout-native__header p {
        font-size: 11px;
    }
    .checkout-native__submit {
        padding: 12px 10px !important;
        gap: 10px !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .submit-icon {
        display: none; /* Hide icon on small mobile to save space */
    }
    .submit-text {
        width: 100%;
        align-items: center;
    }
    .submit-text strong {
        font-size: 16px;
        margin-bottom: 3px;
    }
    .submit-text small {
        font-size: 10px;
        white-space: normal;
    }
    .variation-options {
        gap: 8px;
    }
    .variation-option {
        min-width: 38px;
        height: 38px;
    }
}
.checkout-native__submit--out-of-stock {
	opacity: 0.5 !important;
	pointer-events: none !important;
	background: #999 !important;
    animation: none !important;
}
@keyframes shaking_lr {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 100% { transform: translateX(0); }
    2.5%, 7.5%, 12.5%, 17.5%, 22.5%, 27.5%, 32.5%, 37.5%, 42.5%, 47.5%, 52.5%, 57.5%, 62.5%, 67.5% { transform: translateX(-5px); }
    5%, 15%, 25%, 35%, 45%, 55%, 65% { transform: translateX(5px); }
}
@keyframes shaking_ud {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 100% { transform: translateY(0); }
    2.5%, 7.5%, 12.5%, 17.5%, 22.5%, 27.5%, 32.5%, 37.5%, 42.5%, 47.5%, 52.5%, 57.5%, 62.5%, 67.5% { transform: translateY(-5px); }
    5%, 15%, 25%, 35%, 45%, 55%, 65% { transform: translateY(5px); }
}
@keyframes pulse {
    0%, 70%, 100% { transform: scale(1); }
    15%, 45% { transform: scale(1.04); }
    30%, 60% { transform: scale(1.02); }
}
@keyframes bounce {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 100% { transform: translateY(0); }
    5%, 15%, 25%, 35%, 45%, 55%, 65% { transform: translateY(-10px); }
}
.anim-shaking_lr {
    animation: shaking_lr 10s ease-in-out infinite;
}
.anim-shaking_ud {
    animation: shaking_ud 10s ease-in-out infinite;
}
.anim-pulse {
    animation: pulse 10s ease-in-out infinite;
}
.anim-bounce {
    animation: bounce 10s ease-in-out infinite;
}
