/* ============================================
   BONSAI ISE - Estilos da Loja
   ============================================ */

:root {
    --primary-color: #28a745;
    --primary-dark: #1e7e34;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e5e5e5;
    --bg-light: #f8f9fa;
    --white: #fff;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* Pix Icon */
.pix-icon {
    height: 16px;
    width: auto;
    vertical-align: middle;
    margin-right: 4px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* ============================================
   HERO BANNERS (Banner Principal)
   ============================================ */
.hero-banners {
    width: 100%;
    overflow: hidden;
    margin-top: -20px;
}

.hero-banners-swiper {
    width: 100%;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-banners-swiper .swiper-button-prev,
.hero-banners-swiper .swiper-button-next {
    color: var(--white);
    background: rgba(0,0,0,0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: var(--transition);
}

.hero-banners-swiper .swiper-button-prev:after,
.hero-banners-swiper .swiper-button-next:after {
    font-size: 20px;
}

.hero-banners-swiper .swiper-button-prev:hover,
.hero-banners-swiper .swiper-button-next:hover {
    background: rgba(0,0,0,0.5);
}

.hero-banners-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.7;
    width: 10px;
    height: 10px;
}

.hero-banners-swiper .swiper-pagination-bullet-active {
    background: var(--white);
    opacity: 1;
}

@media (max-width: 767px) {
    .hero-banners-swiper .swiper-button-prev,
    .hero-banners-swiper .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .hero-banners-swiper .swiper-button-prev:after,
    .hero-banners-swiper .swiper-button-next:after {
        font-size: 16px;
    }
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
}

.topbar-content {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.topbar i {
    opacity: 0.9;
}

/* ============================================
   HEADER PRINCIPAL
   ============================================ */
.header-main {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 15px;
}

/* Hamburger Button */
.btn-hamburger {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

.btn-hamburger:hover .hamburger-line {
    background: var(--primary-color);
}

/* Logo */
.header-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
}

.header-logo:hover {
    color: var(--primary-dark);
}

.header-logo-img {
    height: 80px;
    width: auto;
    display: block;
}

/* Search Desktop */
.header-search {
    flex: 1;
    max-width: 500px;
    display: flex;
    background: var(--bg-light);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.header-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 14px;
    outline: none;
}

.header-search-btn {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.header-search-btn:hover {
    background: var(--primary-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.header-action-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.header-action-btn i {
    font-size: 18px;
}

.header-action-text {
    font-weight: 500;
}

/* Cart Badge */
.header-cart {
    position: relative;
}

.header-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #dc3545;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Search Mobile */
.header-search-mobile {
    display: none;
    background: var(--white);
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
}

.header-search-mobile.active {
    display: block;
}

.header-search-mobile-form {
    display: flex;
    gap: 10px;
}

.header-search-mobile-input {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    outline: none;
}

.header-search-mobile-input:focus {
    border-color: var(--primary-color);
}

.header-search-mobile-btn,
.header-search-mobile-close {
    background: none;
    border: none;
    color: var(--text-color);
    padding: 10px;
    cursor: pointer;
}

.header-search-mobile-btn {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* ============================================
   NAVEGACAO DESKTOP
   ============================================ */
.nav-desktop {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.nav-desktop-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-desktop-item {
    position: relative;
}

.nav-desktop-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-desktop-link:hover {
    color: var(--primary-color);
}

.nav-desktop-link i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-desktop-item:hover .nav-desktop-link i {
    transform: rotate(180deg);
}

/* Submenu */
.nav-desktop-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-desktop-item:hover .nav-desktop-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-desktop-submenu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.nav-desktop-submenu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* ============================================
   MENU MOBILE
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-light);
}

.mobile-menu-title {
    font-weight: 600;
    font-size: 16px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-user {
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-user i {
    font-size: 24px;
}

.mobile-menu-login {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background: var(--bg-light);
}

.mobile-menu-link i:first-child {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.mobile-menu-accordion-toggle i:last-child {
    transition: var(--transition);
}

.mobile-menu-accordion-toggle.active i:last-child {
    transform: rotate(180deg);
}

.mobile-menu-accordion-content {
    display: none;
    background: var(--bg-light);
}

.mobile-menu-accordion-content.active {
    display: block;
}

.mobile-menu-sublink {
    display: block;
    padding: 12px 20px 12px 52px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.mobile-menu-sublink:hover {
    color: var(--primary-color);
}

.mobile-menu-footer {
    border-top: 1px solid var(--border-color);
    padding: 15px 20px;
}

.mobile-menu-footer-link {
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
}

.mobile-menu-footer-link i {
    width: 20px;
    margin-right: 10px;
}

.mobile-menu-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.mobile-menu-contact p {
    margin: 5px 0;
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    min-height: calc(100vh - 300px);
    padding: 20px 0;
}

/* ============================================
   PRODUTOS - CARDS
   ============================================ */
.product-card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
    background: var(--bg-light);
}

.product-card .card-img-top[src*="placeholder"] {
    object-fit: contain;
    padding: 20px;
}

.product-card .card-body {
    padding: 15px;
}

.product-card .card-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card .card-title a {
    color: var(--text-color);
}

.product-card .card-title a:hover {
    color: var(--primary-color);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
}

.product-discount {
    background-color: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============================================
   CARRINHO
   ============================================ */
.cart-item {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
}

.quantity-input {
    width: 60px;
    text-align: center;
}

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
}

.checkout-summary .total {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================================
   BOTOES
   ============================================ */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

/* ============================================
   NOTIFICACOES
   ============================================ */
.cart-notification {
    animation: slideIn 0.3s ease-out;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================
   GALERIA DE PRODUTO
   ============================================ */
.product-gallery-main {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.product-gallery-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: var(--primary-color);
}

/* ============================================
   FORMULARIO DE QUANTIDADE
   ============================================ */
.form-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.form-quantity .btn {
    border: none;
    border-radius: 0;
    padding: 8px 15px;
    background: var(--bg-light);
}

.form-quantity .btn:hover {
    background: var(--border-color);
}

.form-quantity .form-control {
    border: none;
    width: 60px;
    text-align: center;
    -moz-appearance: textfield;
}

.form-quantity .form-control::-webkit-outer-spin-button,
.form-quantity .form-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ============================================
   DESCONTO PIX
   ============================================ */
.pix-discount {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: var(--radius);
    padding: 15px;
    margin-top: 15px;
}

.pix-discount .price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

/* ============================================
   STATUS DO PEDIDO
   ============================================ */
.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pendente { background: #fff3cd; color: #856404; }
.status-pago { background: #cce5ff; color: #004085; }
.status-preparando { background: #d4edda; color: #155724; }
.status-enviado { background: #e2e3e5; color: #383d41; }
.status-entregue { background: #d4edda; color: #155724; }
.status-cancelado { background: #f8d7da; color: #721c24; }

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    margin-top: -20px;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
}

/* ============================================
   BENEFITS BAR (Carrossel)
   ============================================ */
.benefits-bar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.benefits-swiper {
    overflow: hidden;
}

.benefits-swiper .swiper-slide {
    width: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 15px;
    white-space: nowrap;
}

.benefit-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.benefit-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-color);
}

.benefit-item span {
    font-size: 12px;
    color: var(--text-light);
}

@media (min-width: 992px) {
    .benefits-swiper .swiper-wrapper {
        justify-content: center;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section-categories {
    padding: 40px 0;
    background: var(--bg-light);
}

.section-products {
    padding: 50px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-categories .section-header {
    justify-content: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.section-categories .section-title {
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.section-categories .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.section-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.section-link:hover {
    text-decoration: underline;
}

.section-count {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   CAROUSEL
   ============================================ */
.section-carousel {
    overflow: hidden;
}

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

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: var(--shadow);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   DESTAQUES SECTION
   ============================================ */
.section-destaques {
    padding: 50px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-destaques::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.section-header-destaques {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-subtitle i {
    font-size: 12px;
}

.section-destaques .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
}

.section-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.section-view-all:hover {
    background: var(--primary-color);
    color: var(--white);
}

.section-view-all i {
    transition: transform 0.3s ease;
}

.section-view-all:hover i {
    transform: translateX(5px);
}

.destaques-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.destaques-swiper {
    overflow: hidden;
    padding: 10px 5px;
}

.destaques-swiper .swiper-slide {
    height: auto;
}

/* Destaque Card */
.destaque-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.destaque-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.destaque-card:hover::before {
    transform: scaleX(1);
}

.destaque-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15);
}

/* Image Container */
.destaque-image-container {
    position: relative;
    padding: 15px;
    background: #f8f9fa;
    overflow: hidden;
}

.destaque-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc3545;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.destaque-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.destaque-wishlist:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.destaque-wishlist i {
    color: #dc3545;
    font-size: 18px;
    transition: all 0.3s ease;
}

.destaque-wishlist:hover i {
    color: var(--white);
}

.destaque-image-link {
    display: block;
    text-align: center;
}

.destaque-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.destaque-card:hover .destaque-image {
    transform: scale(1.08);
}

.destaque-quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    padding: 30px 20px 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.destaque-card:hover .destaque-quick-actions {
    transform: translateY(0);
}

.destaque-quick-view {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.destaque-quick-view:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Destaque Info */
.destaque-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.destaque-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.destaque-name:hover {
    color: var(--primary-color);
}

.destaque-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.destaque-price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.destaque-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.destaque-pix {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.destaque-pix i {
    color: var(--primary-color);
    font-size: 16px;
}

.destaque-pix span {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
}

.destaque-form {
    margin-top: auto;
}

.destaque-btn-cart {
    width: 100%;
    padding: 12px 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.destaque-btn-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.destaque-btn-cart i {
    font-size: 16px;
}

/* Navigation Buttons */
.destaques-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.destaques-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.3);
}

.destaques-nav-btn i {
    font-size: 18px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.destaques-nav-btn:hover i {
    color: var(--white);
}

.destaques-prev {
    left: 0;
}

.destaques-next {
    right: 0;
}

@media (max-width: 991px) {
    .section-header-destaques {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .destaques-carousel-wrapper {
        padding: 0;
    }

    .destaques-nav-btn {
        display: none;
    }

    .section-destaques .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .section-destaques {
        padding: 40px 0;
    }

    .destaque-image {
        height: 150px;
    }

    .destaque-price {
        font-size: 18px;
    }

    .destaque-info {
        padding: 12px;
    }

    .destaque-name {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .destaque-btn-cart {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ============================================
   CATEGORIES CAROUSEL
   ============================================ */
.categories-swiper {
    overflow: hidden;
    flex: 1;
}

.categories-swiper .swiper-slide {
    height: auto;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.3);
}

.category-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    background: #f8f9fa;
}

.category-image::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-image::after {
    opacity: 1;
}

.category-card:hover .category-image {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.25);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 5px;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 6px;
}

.category-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.category-card:hover .category-name::after {
    width: 50px;
}

.category-card:hover .category-name {
    color: var(--primary-color);
    font-size: 15px;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.product-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
}

.product-image-link {
    display: block;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
}

.product-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
}

.product-name:hover {
    color: var(--primary-color);
}

.product-prices {
    margin-bottom: 12px;
}

.product-price-old {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

.product-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.product-price-pix {
    display: block;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.product-form {
    margin: 0;
}

.btn-add-cart {
    width: 100%;
    padding: 10px 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--primary-dark);
}

.btn-add-cart:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================
   PROMO BANNER IMAGE
   ============================================ */
.promo-banner-image {
    padding: 50px 0;
    background: var(--bg-light);
}

.promo-banner-image a {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.promo-banner-image a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.promo-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.promo-banner-image a:hover .promo-banner-img {
    transform: scale(1.02);
}

/* ============================================
   TODOS OS PRODUTOS SECTION
   ============================================ */
.section-todos-produtos {
    padding: 50px 0;
    background: var(--bg-light);
}

.section-header-produtos {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.section-header-produtos .section-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-header-produtos .section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header-produtos .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.section-header-produtos .section-count {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
}

/* Product Card Modern */
.product-card-modern {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.product-card-modern:hover::before {
    transform: scaleX(1);
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.15);
}

.product-badge-modern {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc3545;
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.product-image-wrapper {
    display: block;
    padding: 15px;
    background: #f8f9fa;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-image-modern {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card-modern:hover .product-image-modern {
    transform: scale(1.08);
}

.product-info-modern {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name-modern {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 40px;
    transition: color 0.3s ease;
}

.product-name-modern:hover {
    color: var(--primary-color);
}

.product-prices-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.product-price-old-modern {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-price-modern {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-pix-modern {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    background: #e8f5e9;
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.product-pix-modern i {
    color: var(--primary-color);
}

.product-form-modern {
    margin: 0;
    margin-top: auto;
}

.btn-cart-modern {
    width: 100%;
    padding: 10px 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-cart-modern:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* View All Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}

.btn-view-all:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .section-header-produtos {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-header-produtos .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .section-todos-produtos {
        padding: 40px 0;
    }

    .product-image-wrapper {
        padding: 10px;
    }

    .product-info-modern {
        padding: 12px;
    }

    .product-name-modern {
        font-size: 13px;
        min-height: 36px;
        margin-bottom: 8px;
    }

    .product-price-modern {
        font-size: 16px;
    }

    .product-price-old-modern {
        font-size: 12px;
    }

    .product-pix-modern {
        font-size: 11px;
        padding: 5px 8px;
        margin-bottom: 10px;
    }

    .btn-cart-modern {
        padding: 8px 12px;
        font-size: 12px;
    }

    .btn-view-all {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-header-produtos .section-title {
        font-size: 1.4rem;
    }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-wrapper {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    margin-top: -20px;
    margin-bottom: 20px;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
    padding: 30px 0;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    height: 450px;
    object-fit: contain;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.product-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-thumb:hover,
.product-thumb.active {
    border-color: var(--primary-color);
}

.product-details {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-code {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 20px;
}

.product-price-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.product-price-box .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.product-price-box .current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

.product-price-box .installments {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.product-stock.in-stock {
    color: var(--primary-color);
}

.product-stock.out-of-stock {
    color: #dc3545;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-quantity label {
    font-weight: 500;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--border-color);
}

.quantity-selector input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-buy {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
}

.product-shipping {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
}

.product-shipping h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

.shipping-form {
    display: flex;
    gap: 10px;
}

.shipping-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.product-description {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-top: 30px;
}

.product-description h5 {
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-page {
    padding: 40px 0;
    min-height: 60vh;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cart-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.cart-count {
    font-size: 14px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 20px;
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.cart-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-empty-icon i {
    font-size: 50px;
    color: var(--white);
}

.cart-empty h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
}

.cart-items {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: var(--bg-light);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: var(--transition);
}

.cart-item-name:hover {
    color: var(--primary-color);
}

.cart-item-price-unit {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 5px;
}

.cart-item-stock {
    font-size: 12px;
    color: var(--success);
}

.cart-item-quantity {
    flex-shrink: 0;
}

.cart-item-quantity .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-item-quantity .quantity-selector button {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-quantity .quantity-selector button:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.cart-item-quantity .quantity-selector input {
    width: 50px;
    height: 36px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.cart-item-quantity .quantity-selector input:focus {
    outline: none;
}

.cart-item-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    min-width: 100px;
    text-align: right;
}

.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-remove:hover {
    background: #fee2e2;
    color: #dc3545;
}

.cart-continue {
    margin-top: 20px;
}

.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow);
}

.cart-summary-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.cart-pix-box {
    background: #e8f5e9;
    border-radius: var(--radius);
    padding: 15px;
    margin: 20px 0;
}

.cart-pix-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cart-pix-header i {
    font-size: 28px;
    color: var(--success);
}

.cart-pix-header strong {
    display: block;
    color: var(--success);
    font-size: 14px;
}

.cart-pix-header span {
    font-size: 12px;
    color: var(--text-light);
}

.cart-pix-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.cart-pix-price span {
    font-size: 13px;
    color: var(--text-light);
}

.cart-pix-price strong {
    font-size: 1.25rem;
    color: var(--success);
}

.cart-pix-economy {
    text-align: center;
    font-size: 12px;
    color: var(--success);
    margin-top: 10px;
    font-weight: 500;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}

.cart-summary-total strong {
    color: var(--text-color);
}

.cart-summary-installments {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-checkout-btn {
    margin-bottom: 20px;
}

.cart-security {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.cart-security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-light);
}

.cart-security-item i {
    font-size: 18px;
    color: var(--primary-color);
}

.cart-payment-methods {
    text-align: center;
}

.cart-payment-methods > span {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-page {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: var(--bg-light);
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    width: 100%;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-icon i {
    font-size: 32px;
    color: var(--white);
}

.auth-icon-register {
    background: #6366f1;
}

.auth-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.auth-header p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-label {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.auth-form .form-control {
    padding: 12px 15px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.auth-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.password-input {
    position: relative;
}

.password-input .form-control {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-strength {
    margin-top: 5px;
    min-height: 20px;
}

.auth-btn {
    padding: 14px !important;
    font-weight: 600;
    font-size: 15px;
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    color: var(--text-light);
    position: relative;
}

.auth-divider span {
    background: var(--white);
    padding: 0 15px;
    position: relative;
    z-index: 1;
    font-size: 13px;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-footer {
    text-align: center;
}

.auth-footer p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.auth-footer .btn {
    padding: 12px;
    font-weight: 500;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: var(--text-light);
    font-size: 13px;
    text-decoration: none;
}

.auth-links a:hover {
    color: var(--primary-color);
}

.auth-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.trust-item i {
    color: var(--primary-color);
}

.auth-benefits {
    margin-top: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
}

.auth-benefits h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.auth-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-benefits li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #1a1a1a;
    color: #ccc;
}

footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

footer a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 991px) {
    .header-logo {
        font-size: 1.25rem;
    }

    .header-actions {
        gap: 0;
    }

    .header-action-btn {
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .topbar-content {
        font-size: 11px;
        gap: 15px;
    }

    .product-card .card-img-top {
        height: 160px;
    }

    .product-gallery-main {
        height: 300px;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-total {
        min-width: auto;
    }

    .cart-item-quantity .quantity-selector button {
        width: 32px;
        height: 32px;
    }

    .cart-item-quantity .quantity-selector input {
        width: 40px;
        height: 32px;
    }

    .cart-summary {
        position: static;
        margin-top: 20px;
    }

    .product-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .header-content {
        padding: 10px 0;
    }

    .header-logo {
        font-size: 1.1rem;
    }

    .product-card .card-body {
        padding: 10px;
    }

    .product-card .card-title {
        font-size: 13px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cart-item {
        flex-wrap: wrap;
        padding: 15px;
        padding-right: 40px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-info {
        flex: 1;
        min-width: calc(100% - 80px);
    }

    .cart-item-quantity {
        width: 100%;
        margin-top: 10px;
    }

    .cart-item-total {
        width: 100%;
        text-align: left;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px dashed var(--border-color);
    }

    .cart-security {
        flex-wrap: wrap;
        gap: 15px;
    }

    .cart-security-item {
        width: calc(33.33% - 10px);
    }

    .auth-card {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding: 40px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-card {
        padding: 20px 15px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-icon i {
        font-size: 22px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-image {
        height: 150px;
        object-fit: contain;
        background: var(--bg-light);
        padding: 8px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 13px;
        height: auto;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Carousel mobile */
    .carousel-wrapper {
        gap: 8px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn i {
        font-size: 12px;
    }

    .destaques-swiper .product-image {
        height: 160px;
        object-fit: contain;
        background: var(--bg-light);
        padding: 8px;
    }
}

/* ============================================
   PRODUTOS PAGE - FILTROS
   ============================================ */
.produtos-filtros {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filtros-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filtro-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--bg-light);
    color: var(--text-color);
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.filtro-btn:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filtro-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

@media (max-width: 767px) {
    .filtros-wrapper {
        gap: 8px;
    }

    .filtro-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ============================================
   PRODUTO PAGE - NATIVE
   ============================================ */
.produto-gallery-native {
    position: sticky;
    top: 100px;
}

.produto-img-principal {
    position: relative;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 15px;
}

.produto-img-principal img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .produto-img-principal img {
        height: 280px;
    }

    .produto-nome {
        font-size: 1.3rem;
    }

    .produto-precos .preco-atual {
        font-size: 1.6rem;
    }
}

.produto-desconto-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc3545;
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.produto-miniaturas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.miniatura {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    background: var(--bg-light);
}

.miniatura:hover,
.miniatura.active {
    border-color: var(--primary-color);
}

.miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-cat-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
}

.produto-cat-link:hover {
    text-decoration: underline;
}

.produto-nome {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.produto-sku {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.produto-precos {
    margin-bottom: 15px;
}

.produto-precos .preco-antigo {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 14px;
}

.produto-precos .preco-atual {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.produto-precos .preco-parcelas {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.produto-pix {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.produto-pix i {
    font-size: 24px;
    color: var(--primary-color);
}

.produto-pix strong {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.produto-disponibilidade {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.produto-disponibilidade.disponivel {
    color: var(--primary-color);
}

.produto-disponibilidade.indisponivel {
    color: #dc3545;
}

.produto-qty-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.produto-qty-row label {
    font-weight: 600;
    color: var(--text-color);
}

.produto-qty-controle {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.produto-qty-controle button {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.produto-qty-controle button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.produto-qty-controle input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    -moz-appearance: textfield;
}

.produto-qty-controle input::-webkit-outer-spin-button,
.produto-qty-controle input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.produto-btns {
    margin-bottom: 25px;
}

.produto-vantagens {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.produto-vantagens .vantagem {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.produto-vantagens .vantagem i {
    color: var(--primary-color);
    width: 20px;
}

.produto-calc-frete {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.produto-calc-frete h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

.calc-frete-form {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.calc-frete-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.calc-frete-link {
    font-size: 13px;
    color: var(--primary-color);
}

.produto-descricao h4,
.produto-specs h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.descricao-texto {
    line-height: 1.8;
    color: var(--text-color);
}

.produto-specs table th {
    width: 150px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .produto-gallery-native {
        position: static;
    }
}

@media (max-width: 767px) {
    .produto-img-principal img {
        height: 280px;
    }

    .produto-nome {
        font-size: 1.3rem;
    }

    .produto-precos .preco-atual {
        font-size: 1.6rem;
    }

    .produto-qty-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   CARRINHO PAGE - NATIVE
   ============================================ */
.carrinho-itens {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carrinho-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.carrinho-item-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-light);
}

.carrinho-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carrinho-item-info {
    flex: 1;
    min-width: 0;
}

.carrinho-item-nome {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 5px;
}

.carrinho-item-nome:hover {
    color: var(--primary-color);
}

.carrinho-item-preco-unit {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.carrinho-item-estoque {
    font-size: 13px;
    color: var(--text-light);
}

.carrinho-item-qty {
    flex-shrink: 0;
}

.qty-controle {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-controle button {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-controle button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.qty-controle input {
    width: 45px;
    height: 36px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    -moz-appearance: textfield;
}

.qty-controle input::-webkit-outer-spin-button,
.qty-controle input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.carrinho-item-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
    text-align: right;
}

.carrinho-item-remover {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carrinho-item-remover:hover {
    background: #ffebee;
    color: #dc3545;
}

/* Resumo */
.carrinho-resumo {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 25px;
    position: sticky;
    top: 100px;
}

.resumo-linha {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.resumo-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.resumo-total strong {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.carrinho-pix {
    background: #e8f5e9;
    border-radius: var(--radius);
    padding: 15px;
    margin: 15px 0;
}

.carrinho-pix .pix-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.carrinho-pix .pix-header i {
    font-size: 24px;
    color: var(--primary-color);
}

.carrinho-pix .pix-valor {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.carrinho-vantagens {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.carrinho-vantagens .vantagem-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.carrinho-vantagens .vantagem-item i {
    width: 18px;
}

.carrinho-pagamentos {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.carrinho-pagamentos .pagamento-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

@media (max-width: 991px) {
    .carrinho-resumo {
        position: static;
    }
}

@media (max-width: 767px) {
    .carrinho-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .carrinho-item-img {
        width: 80px;
        height: 80px;
    }

    .carrinho-item-info {
        flex: 1 1 calc(100% - 130px);
    }

    .carrinho-item-qty {
        order: 4;
    }

    .carrinho-item-total {
        order: 3;
        min-width: auto;
        margin-left: auto;
    }

    .carrinho-item-remover {
        order: 5;
    }
}

/* Old produto-page-modern styles removed - keeping for backwards compatibility */
.produto-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.produto-breadcrumb .breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 500;
}

.produto-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Gallery */
.produto-gallery {
    position: sticky;
    top: 100px;
}

.produto-main-image-wrapper {
    position: relative;
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 15px;
    overflow: hidden;
}

.produto-badge-desconto {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc3545;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.produto-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-wishlist-btn:hover,
.produto-wishlist-btn.active {
    background: #dc3545;
    transform: scale(1.1);
}

.produto-wishlist-btn i {
    font-size: 20px;
    color: #dc3545;
    transition: color 0.3s ease;
}

.produto-wishlist-btn:hover i,
.produto-wishlist-btn.active i {
    color: var(--white);
}

.produto-main-image {
    width: 100%;
    height: 450px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.produto-main-image-wrapper:hover .produto-main-image {
    transform: scale(1.05);
}

.produto-zoom-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-zoom-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.produto-zoom-btn i {
    font-size: 18px;
}

/* Thumbs */
.produto-thumbs-wrapper {
    padding: 0 10px;
}

.produto-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px;
}

.produto-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.produto-thumb:hover,
.produto-thumb.active {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.2);
}

.produto-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info */
.produto-info-wrapper {
    padding-left: 20px;
}

.produto-categoria-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #e8f5e9;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.produto-categoria-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.produto-titulo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 10px;
}

.produto-codigo {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.produto-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.produto-rating .stars {
    display: flex;
    gap: 2px;
}

.produto-rating .stars i {
    color: #ffc107;
    font-size: 16px;
}

.produto-rating .rating-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Preco Box */
.produto-preco-box {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
}

.produto-preco-original {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.produto-preco-original .label {
    font-size: 14px;
    color: var(--text-light);
}

.produto-preco-original .valor {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 16px;
}

.produto-preco-original .desconto-badge {
    background: #dc3545;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.produto-preco-atual {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.produto-preco-atual .label {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.produto-preco-atual .valor {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.produto-parcelamento {
    font-size: 14px;
    color: var(--text-light);
}

.produto-parcelamento i {
    margin-right: 8px;
    color: var(--text-light);
}

.produto-parcelamento strong {
    color: var(--text-color);
}

/* Pix Box */
.produto-pix-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #e8f5e9;
    border: 2px solid #a5d6a7;
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    margin-bottom: 20px;
    position: relative;
}

.produto-pix-box .pix-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.produto-pix-box .pix-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.produto-pix-box .pix-info {
    flex: 1;
}

.produto-pix-box .pix-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.produto-pix-box .pix-valor {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.produto-pix-box .pix-economia {
    display: block;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.produto-pix-box .pix-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Estoque */
.produto-estoque {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
}

.produto-estoque.disponivel {
    background: #e8f5e9;
    color: var(--primary-dark);
}

.produto-estoque.disponivel i {
    color: var(--primary-color);
}

.produto-estoque.indisponivel {
    background: #ffebee;
    color: #c62828;
}

.produto-estoque.indisponivel i {
    color: #dc3545;
}

/* Quantidade */
.produto-quantidade-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.produto-quantidade-wrapper label {
    font-weight: 600;
    color: var(--text-color);
}

.produto-quantidade-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.produto-quantidade-selector .qty-btn {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-quantidade-selector .qty-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.produto-quantidade-selector .qty-input {
    width: 60px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: textfield;
}

.produto-quantidade-selector .qty-input::-webkit-outer-spin-button,
.produto-quantidade-selector .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Acoes */
.produto-acoes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-comprar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.btn-comprar:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-comprar i {
    font-size: 18px;
}

.btn-comprar-agora {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-comprar-agora:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Indisponivel Box */
.produto-indisponivel-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.produto-indisponivel-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.produto-indisponivel-box p {
    font-weight: 600;
    margin-bottom: 15px;
}

.avise-me-form {
    display: flex;
    gap: 10px;
}

.avise-me-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.avise-me-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
}

/* Beneficios */
.produto-beneficios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.produto-beneficios .beneficio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.produto-beneficios .beneficio-item i {
    font-size: 20px;
    color: var(--primary-color);
}

.produto-beneficios .beneficio-item strong {
    display: block;
    font-size: 13px;
    color: var(--text-color);
}

.produto-beneficios .beneficio-item span {
    font-size: 11px;
    color: var(--text-light);
}

/* Frete Box */
.produto-frete-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.produto-frete-box h6 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 15px;
}

.produto-frete-box h6 i {
    color: var(--primary-color);
}

.frete-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.frete-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
}

.frete-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.frete-form button:hover {
    background: var(--primary-dark);
}

.frete-link {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
}

.frete-link:hover {
    text-decoration: underline;
}

.frete-erro {
    background: #ffebee;
    color: #c62828;
    padding: 12px 15px;
    border-radius: var(--radius);
    margin-top: 15px;
    font-size: 14px;
}

.frete-loading {
    text-align: center;
    padding: 15px;
    color: var(--text-light);
}

.frete-resultado {
    margin-top: 15px;
}

.frete-opcao {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.frete-tipo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.frete-tipo i {
    font-size: 20px;
    color: var(--primary-color);
}

.frete-tipo strong {
    display: block;
    font-size: 14px;
}

.frete-tipo span {
    font-size: 12px;
    color: var(--text-light);
}

.frete-valor {
    font-weight: 700;
    color: var(--text-color);
}

.frete-valor.gratis {
    color: var(--primary-color);
}

/* Tabs Section */
.produto-tabs-section {
    margin-top: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.produto-tabs-nav {
    display: flex;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

.produto-tabs-nav .tab-btn {
    flex: 1;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.produto-tabs-nav .tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.produto-tabs-nav .tab-btn:hover {
    color: var(--primary-color);
    background: var(--white);
}

.produto-tabs-nav .tab-btn.active {
    color: var(--primary-color);
    background: var(--white);
}

.produto-tabs-nav .tab-btn.active::after {
    transform: scaleX(1);
}

.produto-tabs-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.descricao-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.especificacoes-table {
    width: 100%;
    border-collapse: collapse;
}

.especificacoes-table tr {
    border-bottom: 1px solid var(--border-color);
}

.especificacoes-table th,
.especificacoes-table td {
    padding: 15px;
    text-align: left;
}

.especificacoes-table th {
    width: 200px;
    font-weight: 600;
    color: var(--text-color);
    background: var(--bg-light);
}

.especificacoes-table td {
    color: var(--text-light);
}

.avaliacoes-resumo {
    text-align: center;
    padding: 30px;
}

.rating-grande {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-grande .numero {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.rating-grande .stars {
    display: flex;
    gap: 5px;
}

.rating-grande .stars i {
    font-size: 24px;
    color: #ffc107;
}

.rating-grande .total {
    font-size: 14px;
    color: var(--text-light);
}

/* Relacionados */
.produto-relacionados {
    margin-top: 60px;
}

/* Zoom Modal */
.produto-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.produto-zoom-modal.active {
    display: flex;
}

.produto-zoom-modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zoom-close:hover {
    background: #dc3545;
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .produto-info-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }

    .produto-beneficios {
        grid-template-columns: 1fr;
    }

    .produto-tabs-nav {
        flex-wrap: wrap;
    }

    .produto-tabs-nav .tab-btn {
        flex: 1 1 auto;
        min-width: 33.33%;
    }
}

@media (max-width: 767px) {
    .produto-page-modern {
        padding: 20px 0 40px;
    }

    .produto-content {
        padding: 20px;
    }

    .produto-main-image {
        height: 300px;
    }

    .produto-titulo {
        font-size: 1.4rem;
    }

    .produto-preco-atual .valor {
        font-size: 2rem;
    }

    .produto-pix-box .pix-valor {
        font-size: 1.2rem;
    }

    .produto-quantidade-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .avise-me-form {
        flex-direction: column;
    }

    .produto-tabs-nav .tab-btn {
        padding: 15px 10px;
        font-size: 13px;
    }

    .produto-tabs-nav .tab-btn i {
        display: none;
    }

    .especificacoes-table th {
        width: 120px;
    }
}

/* ============================================
   OFFCANVAS DO CARRINHO
   ============================================ */
#cartOffcanvas {
    width: 380px;
    max-width: 100%;
}

#cartOffcanvas .offcanvas-header {
    background: var(--bg-light);
}

#cartOffcanvas .offcanvas-title {
    font-weight: 600;
    color: var(--text-color);
}

.cart-offcanvas-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-offcanvas-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    position: relative;
}

.cart-offcanvas-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-light);
}

.cart-offcanvas-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-offcanvas-info {
    flex: 1;
    min-width: 0;
}

.cart-offcanvas-nome {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.cart-offcanvas-qty {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.cart-offcanvas-preco {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.cart-offcanvas-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    transition: var(--transition);
    line-height: 1;
}

.cart-offcanvas-remove:hover {
    color: #dc3545;
}

#cartOffcanvasFooter {
    background: var(--white);
}

#cartOffcanvasTotal {
    font-size: 16px;
}

#cartOffcanvasTotalValue {
    font-size: 18px;
}

@media (max-width: 480px) {
    #cartOffcanvas {
        width: 100%;
    }

    .cart-offcanvas-img {
        width: 60px;
        height: 60px;
    }

    .cart-offcanvas-nome {
        font-size: 13px;
    }
}

/* ============================================
   CHECKOUT PAGE - DESIGN NATIVO MODERNO
   ============================================ */

/* Wizard Steps */
.checkout-wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: none;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.wizard-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8eef0;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
}

.wizard-step-label {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.wizard-step.active .wizard-step-number {
    background: #22c55e;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.3);
}

.wizard-step.active .wizard-step-label {
    color: #16a34a;
    font-weight: 700;
}

.wizard-step.completed .wizard-step-number {
    background: #22c55e;
    color: var(--white);
}

.wizard-step.completed .wizard-step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
}

.wizard-step.completed .wizard-step-number span {
    display: none;
}

.wizard-step.completed .wizard-step-label {
    color: #16a34a;
}

.wizard-step-line {
    flex: 1;
    height: 4px;
    background: #e8eef0;
    margin: 0 20px;
    margin-bottom: 28px;
    max-width: 120px;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.wizard-step.completed + .wizard-step-line {
    background: #22c55e;
}

/* Etapas */
.checkout-etapa {
    display: none;
    background: var(--white);
    border-radius: 16px;
    border: none;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.checkout-etapa.active {
    display: block;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.checkout-etapa-header {
    padding: 28px 32px;
    border-bottom: 1px solid #f0f0f0;
    background: #f8fdf9;
}

.checkout-etapa-header h4 {
    margin: 0;
    color: #1f2937;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-etapa-header h4 i {
    color: #22c55e;
    font-size: 22px;
}

.checkout-etapa-header p {
    margin-top: 6px;
    color: #6b7280;
    font-size: 14px;
}

.checkout-etapa-body {
    padding: 32px;
}

.checkout-etapa-body .form-label {
    font-weight: 600;
    color: #374151;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.checkout-etapa-body .form-control,
.checkout-etapa-body .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #fafafa;
}

.checkout-etapa-body .form-control:focus,
.checkout-etapa-body .form-select:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
    background: #fff;
}

.checkout-etapa-body .form-control::placeholder {
    color: #9ca3af;
}

.checkout-etapa-footer {
    padding: 24px 32px;
    border-top: 1px solid #f0f0f0;
    background: #f8fdf9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.checkout-etapa-footer .btn {
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.checkout-etapa-footer .btn-primary {
    background: #22c55e;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.checkout-etapa-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.checkout-etapa-footer .btn-outline-secondary {
    border: 2px solid #e5e7eb;
    color: #6b7280;
    background: transparent;
}

.checkout-etapa-footer .btn-outline-secondary:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.checkout-etapa-footer .btn-success {
    background: #22c55e;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

/* Frete */
.checkout-frete {
    background: #f0fdf4;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #d1fae5;
}

.checkout-frete h6 {
    margin-bottom: 16px;
    color: #166534;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.frete-opcao {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: 2px solid #22c55e;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.frete-opcao input {
    display: none;
}

.frete-opcao::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.frete-info {
    flex: 1;
}

.frete-info strong {
    display: block;
    color: #1f2937;
    font-weight: 600;
}

.frete-info span {
    font-size: 13px;
    color: #6b7280;
}

.frete-preco {
    font-weight: 800;
    font-size: 18px;
    color: #16a34a;
}

/* Opcoes de Pagamento */
.checkout-pagamentos {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkout-pagamento-opcao {
    display: block;
    cursor: pointer;
}

.checkout-pagamento-opcao input {
    display: none;
}

.pagamento-conteudo {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.pagamento-conteudo:hover {
    border-color: #d1d5db;
    background: #fff;
}

.checkout-pagamento-opcao input:checked + .pagamento-conteudo {
    border-color: #22c55e;
    background: #f0fdf4;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.15);
}

.pagamento-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: var(--transition);
}

.pagamento-icon .pix-icon {
    height: 28px;
    width: auto;
}

.checkout-pagamento-opcao input:checked + .pagamento-conteudo .pagamento-icon {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.checkout-pagamento-opcao input:checked + .pagamento-conteudo .pagamento-icon .pix-icon {
    filter: none;
}

.pagamento-info {
    flex: 1;
}

.pagamento-info strong {
    display: block;
    font-size: 17px;
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 2px;
}

.pagamento-descricao {
    font-size: 13px;
    color: #6b7280;
}

.pagamento-valor {
    text-align: right;
}

.pagamento-valor .badge {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pagamento-valor strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
}

/* Resumo Final (Etapa 3) */
.checkout-resumo-final {
    background: #f8fafc;
    border-radius: 14px;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid #e2e8f0;
}

.checkout-resumo-final h6 {
    margin-bottom: 18px;
    color: #1e293b;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.resumo-dados {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.resumo-secao {
    background: var(--white);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
}

.resumo-secao strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resumo-secao strong i {
    color: #22c55e;
}

.resumo-secao p {
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
}

/* Sidebar */
.checkout-sidebar {
    background: var(--white);
    border-radius: 16px;
    border: none;
    padding: 28px;
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.checkout-sidebar-titulo {
    font-weight: 700;
    color: #1f2937;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-sidebar-titulo i {
    color: #22c55e;
}

.checkout-sidebar-itens {
    margin-bottom: 20px;
    max-height: 280px;
    overflow-y: auto;
}

.sidebar-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
}

.sidebar-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-item-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: #22c55e;
    color: var(--white);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.4);
}

.sidebar-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-item-nome {
    font-size: 14px;
    color: #374151;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    line-height: 1.4;
}

.sidebar-item-preco {
    font-weight: 700;
    color: #16a34a;
    font-size: 15px;
}

.checkout-sidebar-totais {
    padding-top: 18px;
    border-top: 2px solid #f3f4f6;
    margin-bottom: 20px;
}

.sidebar-linha {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #6b7280;
}

.sidebar-linha.total {
    padding-top: 18px;
    margin-top: 12px;
    border-top: 2px dashed #e5e7eb;
    font-size: 20px;
}

.sidebar-linha.total strong {
    color: #16a34a;
    font-weight: 800;
}

.checkout-sidebar-seguranca {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    background: #f0fdf4;
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid #d1fae5;
}

.checkout-sidebar-seguranca .seguranca-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #166534;
    font-weight: 500;
}

.checkout-sidebar-seguranca .seguranca-item i {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.checkout-sidebar-bandeiras {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding-top: 12px;
    opacity: 0.8;
}

/* Responsivo */
@media (max-width: 991px) {
    .checkout-sidebar {
        position: static;
        order: -1;
        margin-bottom: 24px;
    }

    .resumo-dados {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .checkout-wizard-steps {
        padding: 16px 12px;
        border-radius: 12px;
    }

    .wizard-step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .wizard-step-label {
        font-size: 10px;
    }

    .wizard-step-line {
        max-width: 40px;
        margin: 0 6px;
        margin-bottom: 22px;
    }

    .checkout-etapa {
        border-radius: 12px;
    }

    .checkout-etapa-header {
        padding: 20px;
    }

    .checkout-etapa-header h4 {
        font-size: 17px;
    }

    .checkout-etapa-body {
        padding: 20px;
    }

    .checkout-etapa-footer {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
    }

    .checkout-etapa-footer .btn {
        width: 100%;
        padding: 16px;
    }

    .pagamento-conteudo {
        flex-wrap: wrap;
        padding: 16px;
    }

    .pagamento-icon {
        width: 48px;
        height: 48px;
    }

    .pagamento-valor {
        width: 100%;
        text-align: left;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px dashed #e5e7eb;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .checkout-sidebar {
        padding: 20px;
        border-radius: 12px;
    }

    .checkout-sidebar-itens {
        max-height: 200px;
    }

    .sidebar-item-img {
        width: 56px;
        height: 56px;
    }
}
