.elementor-7 .elementor-element.elementor-element-26aa4ff{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-00d92d4 *//* ==============================================================
   ASTRO CART PAGE - PREMIUM STYLES
   Theme: Deep Gold, Amber Gradient, Glassmorphism
   Matches Shop Page Design
   ============================================================== */

/* --- Container & Background --- */
.astro-cart-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 40px;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
    background: linear-gradient(180deg, #FFE4A8 0%, #FFF3D1 20%, #FFFEF9 40%, #FFFFFF 60%, #FFFEF9 100%);
    min-height: 100vh;
    overflow: hidden;
}

.astro-cart-container * {
    box-sizing: border-box;
}

/* Mesh Overlay */
.astro-cart-container::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 80% at 10% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse 80% 60% at 90% 80%, rgba(249, 115, 22, 0.12) 0%, transparent 40%);
    z-index: 0;
}

/* --- Floating Particles --- */
.cart-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cp1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: cartFloat 20s ease-in-out infinite;
}

.cp2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.15) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation: cartFloat 25s ease-in-out infinite reverse;
}

.cp3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 193, 7, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cartPulse 15s ease-in-out infinite;
}

@keyframes cartFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes cartPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* --- Header --- */
.cart-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.cart-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #D97706, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.cart-title {
    font-size: 3.5rem;
    color: #1a1a1a;
    font-weight: 800;
    margin: 0;
}

.cart-title .highlight {
    background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Empty Cart State --- */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

.empty-icon {
    font-size: 6rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.empty-cart h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.empty-cart p {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 30px;
}

.btn-shop {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    color: white;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

/* --- Cart Content Grid --- */
.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Cart Items Section --- */
.cart-items-section {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 30px;
}

.cart-items-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr 120px 150px 40px;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.item-emoji {
    font-size: 3rem;
    text-align: center;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-name {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
}

.item-name a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.item-name a:hover {
    color: #F59E0B;
}

.item-price {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 600;
}

.item-quantity label {
    display: block;
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 5px;
}

.qty-input {
    width: 70px;
    padding: 8px 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.qty-input:focus {
    outline: none;
    border-color: #F59E0B;
}

.item-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.subtotal-label {
    font-size: 0.85rem;
    color: #6B7280;
}

.subtotal-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
}

.btn-remove {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EF4444;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove:hover {
    background: #DC2626;
    transform: scale(1.1);
}

/* Cart Actions */
.cart-actions {
    margin-top: 20px;
    text-align: right;
}

.btn-update {
    background: #111827;
    color: white;
    padding: 12px 30px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-update:hover {
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    transform: translateY(-2px);
}

/* --- Cart Totals Sidebar --- */
.cart-totals-section {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.totals-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.totals-title {
    font-size: 1.5rem;
    margin: 0 0 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    color: #374151;
}

.totals-row.total {
    border-bottom: none;
    border-top: 2px solid #F59E0B;
    padding-top: 20px;
    margin-top: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.total-amount {
    color: #F59E0B;
    font-size: 1.8rem;
}

/* Coupon Form */
.coupon-form {
    display: flex;
    gap: 10px;
    margin: 25px 0;
}

.coupon-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.coupon-input:focus {
    outline: none;
    border-color: #F59E0B;
}

.btn-coupon {
    padding: 12px 20px;
    background: #111827;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-coupon:hover {
    background: #374151;
}

/* Checkout Button */
.btn-checkout {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

/* Trust Indicators */
.cart-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-trust .trust-item {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 600;
    text-align: center;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-totals-section {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .astro-cart-container {
        padding: 60px 20px;
    }

    .cart-title {
        font-size: 2.5rem;
    }

    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }

    .item-quantity,
    .item-subtotal {
        grid-column: 2;
    }

    .btn-remove {
        grid-column: 2;
        justify-self: end;
    }
}/* End custom CSS */