.nymobil-category-product-item {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both !important;
    display: block !important;
}

.nymobil-category-product-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    box-sizing: border-box;
}

.nymobil-category-product-image,
.nymobil-category-product-calculator {
    box-sizing: border-box;
}

.nymobil-category-product-image {
    flex: 0 0 200px;
    min-width: 200px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px !important;
}

.nymobil-category-product-calculator {
    flex: 1;
    min-width: 0;
    width: auto;
}

.nymobil-category-product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .nymobil-category-product-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .nymobil-category-product-image {
        flex: none;
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

.nymobil-calculator {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.nymobil-section {
    margin-bottom: 20px;
}

.nymobil-section--subscriptions {
    margin-bottom: 65px;
}

.nymobil-section--extras {
    margin-top: 10px;
}

.nymobil-heading {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nymobil-heading-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.nymobil-subheading {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    margin: 0 0 12px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nymobil-subheading-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.nymobil-description {
    color: #666;
    font-size: 10px;
    margin: 0 0 15px 0;
}

.nymobil-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nymobil-carousel-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nymobil-carousel-container::-webkit-scrollbar {
    display: none;
}

.nymobil-subscription-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 10px;
}

.nymobil-subscription-options--category {
    display: flex;
    gap: 10px;
}

.nymobil-carousel-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
    padding: 0;
    z-index: 10;
}

.nymobil-carousel-arrow:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #b5b5b5;
    color: #111;
}

.nymobil-carousel-arrow:active:not(:disabled) {
    transform: scale(0.95);
}

.nymobil-carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nymobil-carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.nymobil-option {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 1px;
    padding: 24px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 2px;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    min-width: 180px;
    max-width: 100%;
}

.nymobil-subscription-options--category .nymobil-option {
    width: calc((100% - 20px) / 3);
    min-width: 180px;
}

.nymobil-option:hover {
    border-color: #b5b5b5;
    background-color: #fafafa;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.nymobil-option:focus-visible {
    border-color: #222;
    box-shadow: 0 0 0 3px rgba(34, 34, 34, 0.12);
}

.nymobil-option.is-selected {
    border-color: #333;
    background: #f5f5f5;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.nymobil-option-title {
    font-size: 11px;
    font-weight: 700;
    color: #111;
    margin-bottom: 1px;
}

.nymobil-option-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nymobil-option-logo-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 16px;
}

.nymobil-option-logo {
    max-width: 46px;
    max-height: 46px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nymobil-option-description {
    color: #444;
    font-size: 10px;
    line-height: 1.6;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nymobil-option-description span {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
}

.nymobil-option-subtitle {
    display: block;
    margin-top: 14px;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 700;
    color: #333;
}

.nymobil-option-price {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.nymobil-option-price .unit {
    font-size: 10px;
    font-weight: 500;
    color: #555;
}

.nymobil-option-breakdown {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 10px;
    line-height: 1.6;
    color: #444;
}

.nymobil-option-installment,
.nymobil-option-subscription {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-weight: 400;
}

.nymobil-installment-label,
.nymobil-subscription-label {
    font-weight: 500;
}

.nymobil-installment-value,
.nymobil-subscription-value {
    font-weight: 600;
    color: #111;
}

.nymobil-installment-unit,
.nymobil-subscription-unit {
    font-size: 10px;
    font-weight: 400;
    color: #666;
}

.nymobil-select-button {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    color: #69a333;
    border: 2px solid #69a333;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.nymobil-select-button:hover {
    background: rgba(105, 163, 51, 0.08);
    border-color: #5c902d;
    color: #5c902d;
}

.nymobil-select-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 34, 34, 0.08);
}

.nymobil-select-button:active {
    transform: translateY(1px);
}

.nymobil-select-button:disabled {
    border-color: #cccccc;
    color: #cccccc;
    cursor: not-allowed;
    background: transparent;
}

.nymobil-option.is-selected .nymobil-select-button {
    background: transparent;
    border-color: #333;
    color: #333;
}

.nymobil-option.is-selected .nymobil-select-button:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: #111;
    color: #111;
}

.nymobil-extra-users {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-top: 10px;
}

.nymobil-extra-heading {
    margin-top: 0;
    margin-bottom: 12px;
}

.nymobil-extra-users-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.nymobil-extra-users-header label {
    margin: 0;
    font-size: 10px;
}

.nymobil-extra-users-note {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
}

.nymobil-extra-users label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 10px;
}

.nymobil-number-input {
    width: 100%;
    max-width: 120px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 11px;
}

.nymobil-number-input:focus {
    outline: none;
    border-color: #666;
}

.nymobil-help-text {
    display: block;
    color: #666;
    font-size: 8px;
    margin-top: 6px;
}

.nymobil-total-section {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 20px;
    border: 1px solid #ddd;
}

.nymobil-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.nymobil-total-label {
    font-size: 11px;
    font-weight: 500;
}

.nymobil-total-price {
    font-size: 20px;
    font-weight: 600;
}

.nymobil-total-details {
    margin-top: 6px;
    color: #666;
}

.nymobil-total-details small {
    font-size: 8px;
}

.nymobil-loading {
    text-align: center;
    padding: 12px;
    color: #666;
    font-size: 10px;
    background: #f9f9f9;
    border-radius: 4px;
    margin-top: 12px;
}

.nymobil-loading .spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-top-color: #666;
    border-radius: 50%;
    animation: nymobil-spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes nymobil-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .nymobil-calculator {
        padding: 15px;
    }
    
    .nymobil-subscription-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    
    .nymobil-subscription-options--category .nymobil-option {
        width: calc((100% - 10px) / 2);
        min-width: 160px;
    }
    
    .nymobil-option {
        padding: 20px;
    }
    
    .nymobil-option-description {
        min-height: auto;
    }
    
    .nymobil-option-logo-wrap {
        width: 52px;
        height: 52px;
    }
    
    .nymobil-select-button {
        width: 100%;
    }
    
    .nymobil-total-price {
        font-size: 16px;
    }
    
    .nymobil-carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .nymobil-carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 600px) {
    .nymobil-subscription-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .nymobil-subscription-options--category .nymobil-option {
        width: calc(100% - 20px);
        min-width: 200px;
    }

    .nymobil-select-button {
        padding: 14px 18px;
    }
    
    .nymobil-carousel-arrow {
        width: 32px;
        height: 32px;
    }
    
    .nymobil-carousel-arrow svg {
        width: 16px;
        height: 16px;
    }
}

.single-product .nymobil-calculator {
    clear: both;
}

.single-product .nymobil-calculator + .cart {
    margin-top: 20px;
}

.nymobil-from-price {
    font-size: 10px;
    color: #666;
}

.nymobil-from-price .amount {
    font-weight: 600;
    color: #333;
}

