.cart-container {
            max-width: 1000px;
            margin: 30px auto;
            padding: 0 20px;
            text-align: center;
        }
        .cart-table {
            width: 100%;
            border-collapse: collapse;
            background: #0a0a0a;
            border: 1px solid #222;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .cart-table th {
            background: #111;
            color: #d4af37;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
            padding: 15px;
            text-align: center;
        }
        .cart-table td {
            padding: 15px;
            text-align: center;
            vertical-align: middle;
            border-bottom: 1px solid #222;
        }
        .cart-product-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        .cart-img {
            width: 55px;
            height: 55px;
            object-fit: cover;
            border-radius: 6px;
            border: 1px solid #333;
        }
        .qty-control {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .btn-qty-sm {
            width: 28px;
            height: 28px;
            background: #151515;
            color: #d4af37;
            border: 1px solid #d4af37;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        .btn-qty-sm:hover {
            background: #d4af37;
            color: #000;
        }
        
        /* BLOQUE INFERIOR CENTRADO */
        .cart-summary-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
            margin-top: 20px;
        }
        .summary-box {
            background: #0a0a0a;
            border: 1px solid #d4af37;
            border-radius: 8px;
            padding: 25px;
            width: 100%;
            max-width: 450px;
            box-sizing: border-box;
        }
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 15px;
        }
        .summary-row.total {
            font-size: 20px;
            font-weight: bold;
            color: #d4af37;
            border-top: 1px dashed #333;
            padding-top: 15px;
            margin-bottom: 20px;
        }
        .btn-ws {
            display: block;
            width: 100%;
            background: #25d366;
            color: #fff;
            text-align: center;
            padding: 14px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 15px;
            text-decoration: none;
            transition: 0.3s;
            box-sizing: border-box;
        }
        .btn-ws:hover {
            background: #1ebd56;
            box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
        }
        .bottom-nav-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        .btn-outline-gold {
            display: inline-block;
            border: 1px solid #d4af37;
            color: #d4af37;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }
        .btn-outline-gold:hover {
            background: #d4af37;
            color: #000;
        }
        .btn-danger-link {
            color: #ff5252;
            text-decoration: none;
            font-size: 14px;
        }
        .btn-danger-link:hover {
            text-decoration: underline;
        }
        
        /* BARRA SUPERIOR */
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 30px;
            background: #000;
            border-bottom: 1px solid #222;
        }
        .nav-side {
            flex: 1;
            display: flex;
            align-items: center;
        }
        .nav-side.right {
            justify-content: flex-end;
        }
        .nav-center {
            text-align: center;
        }
        .logo-img {
            height: 45px;
            width: auto;
        }