/* ============================================
   CARRINHO.CSS - VERSÃO OTIMIZADA
   ============================================ */

/* ============================================
   PÁGINA DO CARRINHO
   ============================================ */
.cart-main {
    padding: 60px 0;
    min-height: 500px;
    background: #f8fafc;
}

.cart-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    color: #0f172a;
    font-size: 32px;
    font-weight: 800;
}

.page-title i {
    color: #2563eb;
    margin-right: 12px;
}

/* ============================================
   CARRINHO VAZIO
   ============================================ */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.empty-cart i {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-size: 64px;
}

.empty-cart h2 {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 24px;
}

.empty-cart p {
    margin-bottom: 30px;
    color: #94a3b8;
    font-size: 16px;
}

.empty-cart .btn-primary,
.empty-cart-message .btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.empty-cart .btn-primary:hover,
.empty-cart-message .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-message i {
    font-size: 64px;
    color: #cbd5e1;
    display: block;
    margin-bottom: 20px;
}

.empty-cart-message h2 {
    color: #0f172a;
    font-size: 24px;
    margin-bottom: 8px;
}

.empty-cart-message p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 24px;
}

/* ============================================
   CONTEÚDO DO CARRINHO
   ============================================ */
.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    background: #f1f5f9;
    padding: 16px 20px;
    font-weight: 700;
    color: #475569;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   ITENS DO CARRINHO
   ============================================ */
.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    animation: fadeIn 0.3s ease;
}

.cart-item:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: #f1f5f9;
}

.cart-product .product-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-product h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.cart-product .cart-period {
    font-size: 12px;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 12px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.cart-product .item-meta {
    font-size: 12px;
    color: #94a3b8;
}

.cart-discount-badge {
    font-size: 11px;
    color: #059669;
    background: #d1fae5;
    padding: 2px 10px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
}

.cart-plan {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

/* Planos no carrinho */
.cart-plans {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cart-plans .plano-option {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cart-plans .plano-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.cart-plans .plano-option.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cart-plans .plano-option .plano-badge {
    background: rgba(255,255,255,0.2);
    padding: 0 6px;
    border-radius: 10px;
    font-size: 0.55rem;
    font-weight: 600;
}

.cart-plans .plano-option.active .plano-badge {
    background: rgba(255,255,255,0.25);
}

.cart-plans .plano-option .plano-discount {
    color: #059669;
    font-weight: 600;
}

.cart-plans .plano-option.active .plano-discount {
    color: #34d399;
}

.cart-price {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.price-original {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 13px;
    margin-right: 6px;
}

.price-converted {
    font-size: 0.75rem;
    color: #94a3b8;
    display: block;
}

.cart-subtotal {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

/* ============================================
   REMOVER ITEM
   ============================================ */
.cart-remove .remove-item {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 8px;
}

.cart-remove .remove-item:hover {
    color: #e74c3c;
    background: #fef2f2;
}

/* ============================================
   DOMÍNIOS NO CARRINHO
   ============================================ */
.dominio-icon {
    width: 80px;
    height: 80px;
    background: #e3f2fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #2563eb;
    flex-shrink: 0;
}

.dominio-name {
    font-weight: 600;
    color: #0f172a;
}

.cart-item.dominio-item .cart-plan {
    color: #2563eb;
}

/* Seção de domínio no carrinho */
.carrinho-dominio-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

.carrinho-dominio-section .dominio-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.carrinho-dominio-section .dominio-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.carrinho-dominio-section .dominio-header .dominio-opcional {
    font-size: 12px;
    color: #64748b;
    margin-left: auto;
}

.carrinho-dominio-info {
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #92400e;
}

.carrinho-dominio-info i {
    color: #d97706;
    font-size: 16px;
    margin-top: 2px;
}

.carrinho-dominio-info .info-text {
    flex: 1;
}

.carrinho-dominio-info .info-text small {
    color: #b45309;
    display: block;
    margin-top: 4px;
}

.carrinho-dominio-info .info-text small i {
    font-size: 11px;
    margin-top: 0;
}

.carrinho-dominio-selecionado {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #065f46;
}

.carrinho-dominio-selecionado i {
    color: #059669;
    font-size: 16px;
}

.carrinho-dominio-selecionado .dominio-verificacao-badge {
    font-size: 11px;
    color: #065f46;
    background: #d1fae5;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 4px;
}

.carrinho-dominio-selecionado .btn-remover-dominio {
    margin-left: auto;
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s;
}

.carrinho-dominio-selecionado .btn-remover-dominio:hover {
    background: #fef2f2;
}

.carrinho-dominio-selecionado .btn-remover-dominio i {
    color: #dc2626;
}

.carrinho-dominio-preview {
    margin-top: 12px;
    padding: 10px 16px;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 3px solid #2563eb;
    display: none;
}

.carrinho-dominio-preview.show {
    display: block;
}

/* ============================================
   RESUMO DO PEDIDO
   ============================================ */
.cart-summary {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-summary h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
    color: #475569;
}

.summary-line:not(:last-child) {
    border-bottom: 1px solid #f8fafc;
}

.summary-line.total {
    border-top: 2px solid #f1f5f9;
    margin-top: 12px;
    padding-top: 20px;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.summary-line.total span:last-child {
    color: #2563eb;
}

.btn-checkout {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-top: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    cursor: pointer;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-continue {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-top: 12px;
    background: #f1f5f9;
    color: #475569;
}

.btn-continue:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

/* ============================================
   CONVERSÃO DE MOEDA
   ============================================ */
.currency-disclaimer {
    background: #f0f7ff;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #1565c0;
    border-left: 4px solid #2563eb;
}

.currency-disclaimer i {
    margin-right: 10px;
}

.currency-disclaimer.hidden {
    display: none;
}

/* ============================================
   SIDE CART - ESTILO WOOCOMMERCE
   ============================================ */
.cart-floap-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cart-floap-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-floap {
    position: fixed;
    top: 0;
    right: -480px;
    width: 450px;
    max-width: 90vw;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-floap.open {
    right: 0;
}

.cart-floap-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    flex-shrink: 0;
    min-height: 70px;
}

.cart-floap-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-floap-header h3 i {
    color: #2563eb;
}

.cart-floap-header .cart-floap-count {
    background: #2563eb;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 8px;
}

.cart-floap-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #94a3b8;
    padding: 8px;
    line-height: 1;
    transition: all 0.3s;
    border-radius: 8px;
}

.cart-floap-close:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.cart-floap-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    background: #f8fafc;
}

.cart-floap-body::-webkit-scrollbar {
    width: 6px;
}

.cart-floap-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.cart-floap-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.cart-floap-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.cart-floap-item:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

.cart-floap-item.removing {
    animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100%); }
}

.cart-floap-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background: #f1f5f9;
}

.cart-floap-item .item-info {
    flex: 1;
    min-width: 0;
}

.cart-floap-item .item-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-floap-item .item-period {
    font-size: 11px;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 12px;
    display: inline-block;
}

.cart-floap-item .item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.cart-floap-item .item-price {
    font-weight: 700;
    color: #0f172a;
    font-size: 15px;
}

.cart-floap-item .item-qty {
    font-size: 12px;
    color: #94a3b8;
}

.cart-floap-item .item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.remove-floap-item {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-floap-item:hover {
    color: #e74c3c;
    background: #fef2f2;
}

.cart-floap-footer {
    padding: 20px 24px;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.cart-floap-footer .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-floap-footer .total-label {
    font-weight: 600;
    color: #475569;
    font-size: 16px;
}

.cart-floap-footer .total-value {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.btn-view-cart {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-view-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.cart-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty-state i {
    font-size: 56px;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.cart-empty-state p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 16px;
}

.btn-explore {
    display: inline-block;
    padding: 12px 32px;
    background: #2563eb;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.floap-currency-message {
    background: #f0f7ff;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: #1565c0;
    border-left: 3px solid #2563eb;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.floap-currency-message i {
    color: #2563eb;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================
   BOTÃO FLUTUANTE DO CARRINHO
   ============================================ */
.cart-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    cursor: pointer;
    z-index: 99997;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
}

.cart-floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
}

.cart-floating-btn:active {
    transform: scale(0.95);
}

.cart-floating-btn .cart-icon {
    position: relative;
    font-size: 24px;
}

.cart-floating-btn .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    animation: badgePop 0.3s ease;
}

.cart-floating-btn .cart-tooltip {
    position: absolute;
    right: 75px;
    background: #0f172a;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cart-floating-btn .cart-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #0f172a;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.cart-floating-btn:hover .cart-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.cart-floating-btn.pulse {
    animation: pulse 2s infinite;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* ============================================
   BADGE DO CARRINHO NO HEADER
   ============================================ */
#cart-count {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 5px;
}

.cart-bounce {
    animation: cartBounce 0.4s ease;
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ============================================
   TOAST / NOTIFICAÇÃO
   ============================================ */
.toast-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    z-index: 99999;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 420px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    cursor: pointer;
}

.toast-message i {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-message.success {
    background: linear-gradient(135deg, #059669, #047857);
    border-left: 4px solid #34d399;
}

.toast-message.error {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-left: 4px solid #f87171;
}

.toast-message.info {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-left: 4px solid #60a5fa;
}

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================================
   SPINNER
   ============================================ */
.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #e2e8f0;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 992px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-header {
        display: none;
    }
    .cart-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
    .cart-product {
        flex-direction: column;
        text-align: center;
    }
    .cart-product img {
        width: 100px;
        height: 100px;
    }
    .cart-product .product-details {
        align-items: center;
    }
    .cart-price,
    .cart-subtotal,
    .cart-plan,
    .cart-remove {
        text-align: center;
    }
    .cart-plans {
        justify-content: center;
    }
    .cart-plans .plano-option {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
    .cart-summary {
        padding: 20px;
    }
    .page-title {
        font-size: 24px;
    }
    .dominio-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .cart-floap {
        width: 100%;
        max-width: 100vw;
        right: -100%;
    }
    .cart-floap.open {
        right: 0;
    }
    .cart-floap-header {
        padding: 16px 20px;
        min-height: 60px;
    }
    .cart-floap-body {
        padding: 16px 20px;
    }
    .cart-floap-footer {
        padding: 16px 20px;
    }
    .cart-floap-item img {
        width: 56px;
        height: 56px;
    }
    .cart-floap-footer .total-value {
        font-size: 18px;
    }
    .floap-currency-message {
        font-size: 0.7rem;
        padding: 10px 14px;
    }
    .carrinho-dominio-info {
        font-size: 12px;
        padding: 8px 12px;
        flex-wrap: wrap;
    }
    .carrinho-dominio-selecionado {
        font-size: 12px;
        padding: 8px 12px;
        flex-wrap: wrap;
    }
    .carrinho-dominio-selecionado .btn-remover-dominio {
        margin-left: 0;
    }
    .carrinho-dominio-selecionado .dominio-verificacao-badge {
        font-size: 10px;
        padding: 1px 6px;
    }
    .carrinho-dominio-section {
        padding: 16px 18px;
    }
    .cart-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    .cart-floating-btn .cart-icon {
        font-size: 20px;
    }
    .cart-floating-btn .cart-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
    .cart-floating-btn .cart-tooltip {
        display: none;
    }
    .toast-message {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: 100%;
        font-size: 14px;
        padding: 14px 18px;
    }
}

@media (max-width: 480px) {
    .cart-main {
        padding: 30px 0;
    }
    .cart-item {
        padding: 12px;
    }
    .cart-product img {
        width: 80px;
        height: 80px;
    }
    .carrinho-dominio-section {
        padding: 12px 14px;
    }
    .carrinho-dominio-section .dominio-header {
        flex-wrap: wrap;
    }
    .cart-floating-btn {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .cart-floating-btn .cart-icon {
        font-size: 18px;
    }
    .cart-floating-btn .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: -5px;
        right: -5px;
    }
}