@import url("rx.common.css");

/**
* Relacional (rx.cardview.css)
* Version: 1.0.0
* Build date: Tue Sep 29 2025
*
* Copyright (c) 2025 Relacional ALL RIGHTS RESERVED
* Read about Relacional licensing here: https://relacional.com.br/
*/

.icon-first-page:before { content: "\eb92"; }
.icon-prev-page:before { content: "\ec4f"; }
.icon-next-page:before { content: "\ec50"; }
.icon-last-page:before { content: "\eb93"; }
.icon-bold:before { font-weight: bold; }
.icon-pix:before { content: "\ea70"; }
.icon-credcard:before { content: "\e9d1"; }

* { box-sizing: border-box; }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
    color: #5f5f5f;
    line-height: 1.5;
}

.container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 0 10px 0;
}

h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 2rem;
}

.controls {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.controls h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.controls button, .controls select {
    margin: 5px;
    padding: 8px 16px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.controls button:hover {
    background: #f8f9fa;
    border-color: #007bff;
}

.rx-cardview-cards { display: block; }
.rx-cardview-detail { display: block; }

.rx-cardview-container {
    background: white;
    overflow: hidden;
}

.rx-cardview-header {
    width: 100%;
}

.rx-cardview-banner {
    width: 100%;
    margin-bottom: 20px;
}

.rx-cardview-banner-slide {
    position: relative;
    width: 100%;
}

.rx-cardview-banner-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.rx-cardview-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 5px 10px;
    background: #fff;
    flex-wrap: wrap;
    gap: 12px;
}

.rx-cardview-category-filter {
    width: 100%;
    padding: 20px 10px;
    background: #fff;
}

.rx-category-filter-wrapper {
    position: relative;
    overflow: hidden;
}

.rx-category-filter-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
    padding-bottom: 8px;
}

.rx-category-filter-scroll::-webkit-scrollbar {
    height: 6px;
}

.rx-category-filter-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.rx-category-filter-scroll::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.rx-category-filter-scroll::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.rx-category-filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    flex-shrink: 0;
}

.rx-category-filter-item:hover {
    border-color: #2d3192;
    background: #f8f9fa;
}

.rx-category-filter-item.active {
    border-color: #2d3192;
    background: #2d3192;
    color: #fff;
}

.rx-category-filter-icon {
    width: 96px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #6b7280;
    transition: color 0.2s ease;
}

.rx-category-filter-item.active .rx-category-filter-icon {
    color: #fff;
}

.rx-category-filter-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rx-category-filter-text {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    transition: color 0.2s ease;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    line-height: 1.3;
}

.rx-category-filter-item.active .rx-category-filter-text {
    color: #fff;
}

.rx-cardview-toolbar-left, .rx-cardview-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rx-cardview-info {
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
}

.rx-cardview-info span {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.rx-cardview-btn {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
}

.rx-cardview-btn:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #9ca3af;
}

.rx-cardview-btn.primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.rx-cardview-btn.primary:hover:not(:disabled) {
    background: #2563eb;
    border-color: #2563eb;
}

.rx-cardview-btn.danger {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

.rx-cardview-btn.danger:hover:not(:disabled) {
    background: #dc2626;
    border-color: #dc2626;
}

.rx-cardview-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.rx-cardview-content { min-height: 400px; }

.rx-cardview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.rx-cardview-card {
    background: white;
    border: 2px solid #2d3192;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rx-cardview-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    display: block;
    padding: 8px;
    border-radius: 6px;
    background-color: #2d3192;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    z-index: 1;
}

.rx-cardview-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rx-cardview-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rx-cardview-card-image-placeholder {
    color: #9ca3af;
    font-size: 48px;
}

.rx-cardview-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.rx-cardview-card-wrapper { display: contents; }

.rx-cardview-card-header {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #5f5f5f;
    margin-bottom: 8px;
}

.rx-cardview-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.rx-cardview-title-text {
    font-family: 'Porto Roobert', sans-serif;
    font-size: 18px;
    color: #1f1f1f;
    font-weight: 600;
    line-height: 22px;
    word-break: break-word;
}

.rx-cardview-price-section {
    margin-top: auto;
    width: 100%;
}

.rx-cardview-price-label {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.rx-cardview-price-label span {
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    color: #a0a0a0;
    font-weight: 500;
}

.rx-cardview-total-section,
.rx-cardview-items-section {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 1rem;
    width: 100%;
}

.rx-cardview-items-section {
    margin-bottom: 0;
}

.rx-cardview-total-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
}

.rx-cardview-price,
.rx-cardview-total,
.rx-cardview-items,
.rx-cardview-total-label,
.rx-cardview-items-label {
    font-family: Porto Roobert, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    color: #1f1f1f;
    margin-top: 4px;
}

.rx-cardview-installments {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 4px;
}

.rx-cardview-payment {
    display: flex;
    width: 100%;
    background-color: #f0f0f0;
    padding: 8px;
    border-radius: 4px;
    margin: 8px 0;
    gap: 8px;
}

.rx-cardview-payment-icon {
    font-size: 24px;
    height: 28px;
    width: 29px;
}

.rx-cardview-payment-icon.icon-pix { color: #4bb8a9; }

.rx-cardview-payment-box {
    display: flex;
    flex-direction: column;
}

.rx-cardview-payment-title {
    font-weight: 700;
    font-size: 13.5px;
    line-height: 20px;
    color: #404040;
}

.rx-cardview-payment-description {
    font-weight: 400;
    font-size: 12px;
    line-height: 28px;
    color: #404040;
}

.rx-cardview-buy-btn {
    display: flex;
    background: #ec1f24;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 4px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;    
}

.rx-cardview-buy-btn:hover {
    background: #2d3192;
}

.rx-cardview-buy-btn:disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #a8a8a8;
}

.rx-cardview-default-btn {
    background: #e0e0e0;
    color: #333;
    border: none;
    padding: 14px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    width: 100%;
}

.rx-cardview-default-btn:hover {
    background: #d0d0d0;
}

.rx-cardview-empty {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    color: #6b7280;
    align-items: center;
    gap: 12px;
}

.rx-cardview-empty-icon {
    width: 64px;
    height: 64px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #9ca3af;
}

.rx-cardview-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.rx-cardview-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid #2d3192;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rx-cardview-pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #fff;
    flex-wrap: wrap;
    gap: 16px;
}

.rx-cardview-pager-left, .rx-cardview-pager-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rx-cardview-pager-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rx-cardview-pager-button {
    padding: 0 12px;
    border: 2px solid #2d3192;
    background: #fff;
    color: #ec1f24;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
}

.rx-cardview-pager-button.active {
    background: #2d3192;
    color: white;
    border-color: #2d3192;
}

.rx-cardview-pager-button.disabled {
    opacity: 0.5;
    cursor: default;
    background: #f9fafb;
    color: #9ca3af;
    border-color: #d1d5db;
}

.rx-cardview-pager-info {
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
}

.rx-cardview-pager-page-size {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
}

.rx-cardview-pager-page-size select {
    padding: 6px 10px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: #2d3192;
    cursor: pointer;
    font-size: 14px;
}

.rx-cardview-pager-page-size select:hover,
.rx-cardview-pager-page-size select:focus {
    border-color: #2d3192;
    outline: none;
}

/* Detail Section Styles */
.rx-cardview-detail-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.rx-cardview-detail-back {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    transition: background-color 0.2s ease;
}

.rx-cardview-detail-back:hover { background: #5a6268; }

.rx-cardview-detail-content {
    flex: 1;
    padding: 20px;
    overflow: auto;
}

.rx-cardview-stepper-nav {
    display: flex;
    height: auto;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px 0;
    align-items: center;
    overflow-x: auto;
}

.rx-cardview-stepper-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.rx-cardview-stepper-item {
    display: block;
    min-height: 400px;
}

.rx-cardview-stepper-item.hidden { display: none; }

.rx-cardview-stepper-footer {
    display: none;
    height: 60px;
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-shrink: 0;
}

.rx-cardview-step-default {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.step-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1f1f1f;
}

.step-description {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #5f5f5f;
}

.test-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
    max-width: 800px;
    width: 100%;
    border: 1px solid #e9ecef;
}

.test-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.test-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.test-content strong {
    color: #2d3192;
    font-weight: 600;
}

.breadcrumb-element {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    float: none;
    padding-top: 32px;
    margin-bottom: 40px;
}

.rx-breadcrumb-element ul.rx-breadcrumb-trail {
    display: flex;
    width: 100%;
    height: 2rem;
}

.rx-breadcrumb-element li.rx-breadcrumb-item {
    display: none;
    font-size: 12px;
    color: #242424;
    cursor: default;
}

.rx-breadcrumb-element li.rx-breadcrumb-item.previous {
    display: inline-flex;
    cursor: pointer;
}

.rx-breadcrumb-element li.rx-breadcrumb-item.previous.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.rx-breadcrumb-element li.rx-breadcrumb-item.active {
    display: inline-flex;
    font-weight: 700;
}

.rx-breadcrumb-element li.rx-breadcrumb-item.delimiter {
    display: none;
    margin: 0 8px;
    font-weight: 300;
}

.rx-breadcrumb-element li.rx-breadcrumb-item.previous + li.rx-breadcrumb-item.delimiter,
.rx-breadcrumb-element li.rx-breadcrumb-item.delimiter:has(+ li.rx-breadcrumb-item.active) {
    display: inline-flex;
}

@media (max-width: 768px) {
    .rx-cardview { grid-template-columns: 1fr; }
    .rx-cardview-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .rx-cardview-toolbar-left, .rx-cardview-toolbar-right { justify-content: center; }
    .rx-cardview-pager {
        flex-direction: column;
        gap: 12px;
    }

    .rx-cardview-pager-navigation {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rx-cardview-stepper-nav {
        height: auto;
        padding: 10px;
    }

    .step-title { font-size: 24px; }
    .step-description { font-size: 16px; }

    .rx-cardview-category-filter {
        padding: 15px 5px;
    }
    
    .rx-category-filter-item {
        width: 96px;
        min-width: 96px;
        max-width: 96px;
    }
    
    .rx-category-filter-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .rx-category-filter-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    #header-menu .header-container {
        position: relative !important;
    }
    .rx-cardview-container.container {
        padding: 10px 0;
    }
    .rx-cardview {
        grid-template-columns: 1fr;
    }
    .rx-cardview-stepper-content {
        padding: 10px;
    }
    .test-content {
        padding: 20px;
    }
}

.rx-stepper {
    width: 100%;
    user-select: none;
}

.rx-stepper-wrapper {
    position: relative;
}

.rx-stepper.rx-stepper-horizontal .rx-stepper-step-indicators {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.rx-stepper.rx-stepper-horizontal .rx-stepper-step-indicator {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.rx-stepper.rx-stepper-horizontal .rx-stepper-step-indicator.rx-stepper-step-click-disabled {
    cursor: default;
}

.rx-stepper.rx-stepper-horizontal .rx-stepper-step-indicator:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 24px);
    right: calc(-50% + 24px);
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.rx-stepper.rx-stepper-horizontal .rx-stepper-step-indicator.rx-stepper-step-completed:not(:last-child)::after {
    background: #1976d2;
}

.rx-stepper.rx-stepper-vertical {
    display: flex;
    gap: 0;
}

.rx-stepper.rx-stepper-vertical .rx-stepper-step-indicators {
    min-width: 200px;
    padding-right: 20px;
}

.rx-stepper.rx-stepper-vertical .rx-stepper-step-indicator {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding: 28px 0;
}

.rx-stepper.rx-stepper-vertical .rx-stepper-step-indicator.rx-stepper-step-click-disabled {
    cursor: default;
}

.rx-stepper.rx-stepper-vertical .rx-stepper-step-indicator:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 68px;
    left: 20px;
    bottom: -28px;
    width: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.rx-stepper.rx-stepper-vertical .rx-stepper-step-indicator.rx-stepper-step-completed:not(:last-child)::after {
    background: #1976d2;
}

.rx-stepper.rx-stepper-vertical .rx-stepper-step-content-wrapper {
    flex: 1;
    border-left: 1px solid #e0e0e0;
    padding-left: 20px;
}

.rx-stepper-step-indicator {
    transition: all 0.15s ease;
}

.rx-stepper-step-indicator.rx-stepper-step-disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.rx-stepper-step-indicator-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: all 0.15s ease;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    margin-bottom: 8px;
    line-height: 1;
    text-align: center;
}

.rx-stepper-vertical .rx-stepper-step-indicator-icon {
    margin-bottom: 0;
    margin-right: 16px;
    line-height: 1;
    text-align: center;
}

.rx-stepper-step-indicator.rx-stepper-step-selected .rx-stepper-step-indicator-icon {
    border-color: #1976d2;
    background: #1976d2;
    color: white;
    box-shadow: 0 0 0 4px white, 0 0 0 6px #1976d2;
}

.rx-stepper-step-indicator.rx-stepper-step-completed .rx-stepper-step-indicator-icon {
    background: #1976d2;
    border-color: #1976d2;
    color: white;
}

.rx-stepper-step-indicator.rx-stepper-step-invalid .rx-stepper-step-indicator-icon {
    background: #d32f2f;
    border-color: #d32f2f;
    color: white;
}

.rx-stepper-step-indicator.rx-stepper-step-selected.rx-stepper-step-invalid .rx-stepper-step-indicator-icon {
    box-shadow: 0 0 0 4px white, 0 0 0 6px #d32f2f;
}

.rx-stepper-step-indicator.rx-stepper-step-invalid .rx-stepper-step-indicator-label {
    color: #d32f2f;
}

.rx-stepper-step-indicator.rx-stepper-step-warning .rx-stepper-step-indicator-icon {
    background: #f57c00;
    border-color: #f57c00;
    color: white;
}

.rx-stepper-step-indicator.rx-stepper-step-selected.rx-stepper-step-warning .rx-stepper-step-indicator-icon {
    box-shadow: 0 0 0 4px white, 0 0 0 6px #f57c00;
}

.rx-stepper-step-indicator.rx-stepper-step-warning .rx-stepper-step-indicator-label {
    color: #f57c00;
}

.rx-stepper-step-indicator-label {
    font-size: 12px;
    color: #666;
    text-align: center;
    font-weight: 400;
    transition: color 0.15s ease;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rx-stepper-step-indicator.rx-stepper-step-selected .rx-stepper-step-indicator-label {
    color: #1976d2;
    font-weight: 500;
}

.rx-stepper-step-indicator.rx-stepper-step-completed .rx-stepper-step-indicator-label {
    color: #1976d2;
}

.rx-stepper-step-content {
    display: none;
    padding: 20px 0;
}

.rx-stepper-step-content.rx-stepper-step-selected {
    display: block;
    animation: fadeInUp 0.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rx-stepper-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 12px;
}

.rx-button {
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.15s ease;
    min-width: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.rx-button:hover:not(:disabled) {
    border-color: #1976d2;
    color: #fff;
}

.rx-button.rx-button-default {
    background: #1976d2;
    border-color: #1976d2;
    color: white;
}

.rx-button.rx-button-default:hover:not(:disabled) {
    background: #1565c0;
    border-color: #1565c0;
}

.rx-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.rx-stepper-back-button:hover:not(:disabled) {
    color: #333;
}

.demo-content {
    min-height: 200px;
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
}

.demo-content h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.demo-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.controls {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.controls h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.controls button {
    margin: 5px;
    padding: 8px 16px;
    font-size: 12px;
}

.controls select {
    margin: 5px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.descricao li,
.importante li {
    margin-bottom: 14px;
}

.restricoes {
    color: #404040;
    line-height: 1.6rem;
    list-style: disc;
    margin-left: 2.4rem;
    margin-top: 8px;
}
@media (min-width: 992px) {
    .rx-cardview-card-header {
        font-size: 14px;
        line-height: 20px;
    }

    .rx-cardview-title-text {
        font-size: 24px;
        line-height: 28px;
    }

    .rx-cardview-price,
    .rx-cardview-total,
    .rx-cardview-items,
    .rx-cardview-total-label,
    .rx-cardview-items-label {
        font-size: 24px;
        line-height: 24px;
    }

    .rx-cardview-installments {
        font-size: 14px;
        line-height: 20px;
    }

    .rx-cardview-payment-description {
        font-size: 14px;
        line-height: 20px;
    }

    .rx-cardview-buy-btn {
        font-size: 14px;
    }
}