:root {
                --tb-nav-item-spacing: 28px;
                --tb-nav-font-size: 16px;
                --tb-nav-font-weight: 500;
                --tb-nav-text-color: #121212;
                --tb-nav-hover-color: #6366f1;
                --tb-nav-hover-bg-color: transparent;
            }
            .tb-header .tb-logo-img,
            .tb-header .site-logo,
            .tb-navbar .tb-logo-img,
            .tb-navbar .site-logo { 
                max-width: 160px !important; 
                max-height: none !important; 
                width: auto !important; 
                height: auto !important; 
            }
            @media (max-width: 991px) {
                .tb-header .tb-logo-img,
                .tb-header .site-logo,
                .tb-navbar .tb-logo-img,
                .tb-navbar .site-logo { 
                    max-width: 120px !important; 
                }
            }
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #1a1a1a;
        }

        /* Cart Container */
        .cart-page {
            max-width: 1320px;
            margin: 0 auto;
            margin-bottom: 40px
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #666;
        }

        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: #1a1a1a;
        }

        .breadcrumb i {
            font-size: 12px;
        }

        .breadcrumb .current {
            color: #1a1a1a;
            font-weight: 500;
        }

        /* Page Header */
        .cart-header {
            margin-bottom: 20px;
        }

        .cart-header h1 {
            font-size: 26px;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .cart-header p {
            font-size: 16px;
            color: #666;
        }

        /* Main Grid */
        .cart-grid {
            display: grid;
            grid-template-columns: 1fr 330px;
            gap: 15px;
        }

        /* Cart Items Section */
        .cart-items-section {
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            border: 1px solid #ebebeb
        }

        .cart-item {
            display: grid;
            grid-template-columns: 80px 1fr auto;
            gap: 20px;
            padding: 12px 24px;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
        }

        .cart-item:hover {
            background: #fafafa;
        }

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

        .item-image {
            width: 75px;
            height: 75px;
            border-radius: 6px;
            overflow: hidden;
            background: #f5f5f5;
            position: relative;
        }

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

        /* Placeholder Animation */
        .placeholder-image {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            position: relative;
        }

        .placeholder-image::before {
            content: '\f03e';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 40px;
            color: #d0d0d0;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.4;
                transform: scale(1);
            }

            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        .item-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .item-brand {
            font-size: 11px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .item-name {
            font-size: 13px;
            font-weight: 500;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 0px;
        }

        .item-name:hover {
            text-decoration: underline;
        }

        .item-meta {
            display: flex;
            gap: 16px;
            font-size: 12px;
            color: #666;
        }

        .item-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .item-actions {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-end;
            gap: 6px
        }

        .item-price {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .item-price-original {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
            margin-left: 6px;
        }

        .item-discount-badge {
            display: inline-block;
            background: #fee2e2;
            color: #dc2626;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 4px;
            margin-left: 8px;
        }

        .qty-control {
            display: flex;
            align-items: center;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            overflow: hidden;
        }

        .qty-btn {
            width: 28px;
            height: 28px;
            border: none;
            background: #fff;
            cursor: pointer;
            font-size: 13px;
            color: #666;
            transition: all 0.2s;
        }

        .qty-btn:hover {
            background: #f5f5f5;
            color: #1a1a1a;
        }

        .qty-btn:active {
            transform: scale(0.95);
        }

        .qty-value {
            width: 36px;
            text-align: center;
            font-weight: 600;
            font-size: 14px;
            border: none;
            background: #fff;
        }

        .item-remove {
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

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

        /* Empty Cart */
        .empty-cart {
            text-align: center;
            padding: 80px 20px;
            background: #fff;
            border-radius: 6px;
        }

        .empty-cart i {
            font-size: 20px;
            color: #e0e0e0;
            margin-bottom: 4px;
        }

        .empty-cart h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .empty-cart p {
            font-size: 16px;
            color: #666;
            margin-bottom: 32px;
        }

        .empty-cart .btn-shop {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #1a1a1a;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.2s;
        }

        .empty-cart .btn-shop:hover {
            background: #000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Summary Section */
        .cart-summary {
            background: #ffffffff;
            border-radius: 10px;
            padding: 15px;
            border: 1px solid #ebebeb;
            position: sticky;
            top: 20px;
        }

        .summary-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
            padding-bottom: 16px;
            border-bottom: 1px solid #f0f0f0;
            color: #333
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            font-size: 15px;
        }

        .summary-row .label {
            color: #666;
        }

        .summary-row .value {
            font-weight: 600;
            color: #1a1a1a;
        }

        .summary-discount {
            width: 100%;
            margin: 15px 0;
            padding: 12px 16px;
            border: 1px dashed #16a34a;
            border-radius: 8px;
            background: rgba(240, 253, 244, 0.5);
            box-sizing: border-box;
        }

        .summary-discount .summary-row {
            margin-bottom: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .summary-discount .label {
            color: #16a34a;
            font-weight: 600;
        }

        .summary-discount .value {
            color: #16a34a;
            font-weight: 700;
            font-size: 16px;
        }

        .summary-divider {
            height: 1px;
            background: #f0f0f0;
            margin: 15px 0;
        }

        .summary-total {
            display: block;
            justify-content: space-between;
            align-items: right;
            padding: 10px 0 20px 0px;
            font-size: 16px;
            font-weight: 500;
            text-align: right;
        }

        .summary-total .label {
            text-align: right;
            font-size: 14px !important;
        }

        .summary-total .value {
            font-size: 21px;
            color: #1a1a1a;
            font-weight: 500;
        }

        .promo-code {
            margin-bottom: 20px;
        }

        .promo-code-label {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
            display: block;
        }

        .promo-input-group {
            display: flex;
            gap: 8px;
        }

        .promo-input {
            flex: 1;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
        }

        .promo-input:focus {
            outline: none;
            border-color: #1a1a1a;
        }

        .promo-apply-btn {
            padding: 12px 20px;
            background: #f5f5f5;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .promo-apply-btn:hover {
            background: #e5e5e5;
        }

        .checkout-btn {
            width: 100%;
            padding: 16px;
            background: #1a1a1a;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .checkout-btn:hover {
            background: #000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .checkout-btn:active {
            transform: translateY(0);
        }

        .continue-shopping {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #666;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            padding: 12px;
            transition: color 0.2s;
        }

        .continue-shopping:hover {
            color: #1a1a1a;
        }

        .security-badges {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }

        .security-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #666;
        }

        .security-badge i {
            color: #16a34a;
        }

        /* Trust Indicators */
        .trust-section {
            background: #f8f9fa;
            border-radius: 6px;
            padding: 24px;
            margin-top: 24px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .trust-item {
            text-align: center;
        }

        .trust-item i {
            font-size: 32px;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .trust-item h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .trust-item p {
            font-size: 12px;
            color: #666;
        }

        /* Mobile */
        @media (max-width: 1024px) {
            .cart-grid {
                grid-template-columns: 1fr;
            }

            .cart-summary {
                position: static;
            }

            .trust-section {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .cart-page {
                padding: 20px 15px;
            }

            .cart-header h1 {
                font-size: 28px;
            }

            .cart-item {
                grid-template-columns: 80px 1fr;
                padding: 16px;
            }

            .item-image {
                width: 75px;
                height: 75px;
            }

            .item-actions {
                grid-column: span 2;
                margin-top: 12px;
                flex-direction: row;
                justify-content: space-between;
            }

            .summary-total .value {
                font-size: 24px;
            }
        }
        .shipping-premium-banner {
            display: none;
            align-items: center;
            gap: 16px;
            background: #fffbeb;
            color: #1a1a1a;
            border: 1px solid #fde68a;
            padding: 14px 18px;
            border-radius: 10px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: pulse-card-pending 2s infinite;
        }

        .shipping-premium-banner:hover {
            transform: translateY(-2px);
        }

        .shipping-premium-banner.success {
            background: #ecfdf5;
            border-color: #a7f3d0;
            color: #064e3b;
            animation: pulse-card-success 2s infinite;
        }

        @keyframes pulse-card-pending {
            0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2); }
            70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
            100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
        }

        @keyframes pulse-card-success {
            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2); }
            70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        .shipping-banner-icon {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fef3c7;
            border-radius: 50%;
            color: #d97706;
        }

        .shipping-premium-banner.success .shipping-banner-icon {
            background: #d1fae5;
            color: #059669;
        }

        .shipping-banner-icon svg {
            width: 20px;
            height: 20px;
        }

        .shipping-banner-content {
            flex: 1;
        }

        .shipping-banner-title {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 3px;
            letter-spacing: -0.2px;
        }

        .shipping-premium-banner.success .shipping-banner-title {
            color: #064e3b;
        }

        .shipping-banner-desc {
            font-size: 13px;
            color: #6b7280;
        }

        .shipping-premium-banner.success .shipping-banner-desc {
            color: #065f46;
        }
.footer-logo-wrapper img {
                max-width: 230px !important;
                max-height: 60px !important;
                width: 100% !important;
                height: auto !important;
                object-fit: contain !important;
            }