/**
 * ===========================================================================
 * Exploria CINEMATIC CART & CHECKOUT STYLES
 * Premium Travel Booking Experience
 * ===========================================================================
 * 
 * Design Tokens (Preserved):
 * - Primary: #0F4C5C
 * - Secondary: #2E5D4B
 * - Blue Deep: #1E3A8A
 * - Blue Light: #3B82F6
 * - Yellow Warm: #D97706
 * - Yellow Light: #FCD34D
 * - Dark: #0A0A0A
 * - Dark Secondary: #141414
 * - Dark Tertiary: #1E1E1E
 * - Light: #FFFFFF
 * 
 * Typography:
 * - Body: Inter (400, 500)
 * - Headings: Manrope (600, 700)
 * 
 * Spacing: 8px grid system
 * ===========================================================================
 */

/* ==========================================================================
   ROOT VARIABLES (Preserved)
   ========================================================================== */
:root {
    /* Colors */
    --vy-primary: #0F4C5C;
    --vy-primary-rgb: 15, 76, 92;
    --vy-secondary: #2E5D4B;
    --vy-secondary-rgb: 46, 93, 75;
    --vy-blue-deep: #1E3A8A;
    --vy-blue-light: #3B82F6;
    --vy-yellow-warm: #D97706;
    --vy-yellow-light: #FCD34D;
    --vy-yellow-light-rgb: 252, 211, 77;
    
    /* Dark Palette */
    --vy-dark: #0A0A0A;
    --vy-dark-secondary: #141414;
    --vy-dark-tertiary: #1E1E1E;
    --vy-dark-elevated: #252525;
    
    /* Light */
    --vy-light: #FFFFFF;
    --vy-light-secondary: #F8FAFC;
    --vy-light-tertiary: #F1F5F9;
    
    /* Borders */
    --vy-border: rgba(255, 255, 255, 0.08);
    --vy-border-light: rgba(255, 255, 255, 0.12);
    --vy-border-subtle: rgba(255, 255, 255, 0.05);
    
    /* Gradients */
    --vy-gradient-primary: linear-gradient(135deg, var(--vy-primary) 0%, var(--vy-secondary) 100%);
    --vy-gradient-dark: linear-gradient(180deg, var(--vy-dark) 0%, var(--vy-dark-secondary) 100%);
    --vy-gradient-glow: radial-gradient(ellipse at center, rgba(var(--vy-primary-rgb), 0.15) 0%, transparent 70%);
    --vy-gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    
    /* Typography */
    --vy-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --vy-font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --vy-space-xs: 4px;
    --vy-space-sm: 8px;
    --vy-space-md: 16px;
    --vy-space-lg: 24px;
    --vy-space-xl: 32px;
    --vy-space-2xl: 48px;
    --vy-space-3xl: 64px;
    --vy-space-4xl: 96px;
    
    /* Border Radius */
    --vy-radius-sm: 8px;
    --vy-radius-md: 12px;
    --vy-radius-lg: 16px;
    --vy-radius-xl: 24px;
    --vy-radius-full: 9999px;
    
    /* Shadows */
    --vy-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --vy-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
    --vy-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.25);
    --vy-shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.3);
    --vy-shadow-glow: 0 0 40px rgba(var(--vy-primary-rgb), 0.3);
    
    /* Transitions */
    --vy-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --vy-transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --vy-transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --vy-transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Z-index */
    --vy-z-base: 1;
    --vy-z-elevated: 10;
    --vy-z-modal: 100;
    --vy-z-overlay: 1000;
}

/* ==========================================================================
   ANIMATIONS (Keyframes)
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

@keyframes drawLine {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes cartItemShine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes mapLinePulse {
    0%, 100% { stroke-dashoffset: 0; opacity: 0.3; }
    50% { stroke-dashoffset: 20; opacity: 0.6; }
}

@keyframes stepComplete {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==========================================================================
   BASE CART WRAPPER
   ========================================================================== */
.vy-cart-wrapper {
    min-height: 100vh;
    background: var(--vy-dark);
    color: var(--vy-light);
    font-family: var(--vy-font-body);
    position: relative;
    overflow: hidden;
}

.cart-cinematic {
    padding-bottom: var(--vy-space-4xl);
}

/* ==========================================================================
   CART HERO SECTION (Legacy - Replaced by Premium)
   ========================================================================== */
.cart-hero {
    display: none;
}

/* Import Premium Hero Styles - Note: Copy contents of shop-page-premium-hero.css here or enqueue separately */
/* @import url('shop-page-premium-hero.css'); */

.cart-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cart-hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(var(--vy-primary-rgb), 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(var(--vy-secondary-rgb), 0.06) 0%, transparent 40%);
}

.cart-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        var(--vy-dark) 0%,
        rgba(10, 10, 10, 0.8) 50%,
        var(--vy-dark) 100%
    );
}

.cart-hero-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.map-line {
    stroke-dasharray: 10 5;
    animation: mapLinePulse 3s ease-in-out infinite;
}

.map-line--1 { animation-delay: 0s; }
.map-line--2 { animation-delay: 0.5s; }
.map-line--3 { animation-delay: 1s; }

.cart-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 var(--vy-space-lg);
    max-width: 800px;
}

.cart-hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--vy-space-sm);
    background: var(--vy-gradient-glass);
    border: 1px solid var(--vy-border);
    padding: var(--vy-space-sm) var(--vy-space-md);
    border-radius: var(--vy-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vy-yellow-light);
    margin-bottom: var(--vy-space-lg);
    backdrop-filter: blur(8px);
}

.cart-hero-label svg {
    width: 18px;
    height: 18px;
}

.cart-hero-title {
    font-family: var(--vy-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 var(--vy-space-md);
    background: linear-gradient(
        135deg,
        var(--vy-light) 0%,
        var(--vy-yellow-light) 50%,
        var(--vy-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

.cart-hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 var(--vy-space-xl);
    line-height: 1.6;
}

.cart-hero-subtitle .cart-count {
    color: var(--vy-yellow-light);
    font-weight: 600;
}

/* Progress Steps */
.cart-progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: var(--vy-space-xl);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--vy-space-sm);
}

.step-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vy-dark-tertiary);
    border: 2px solid var(--vy-border);
    position: relative;
    transition: all var(--vy-transition-base);
}

.step-number {
    font-family: var(--vy-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--vy-transition-base);
}

.step-check {
    position: absolute;
    width: 20px;
    height: 20px;
    color: var(--vy-light);
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--vy-transition-spring);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--vy-transition-base);
}

.progress-connector {
    width: 80px;
    height: 2px;
    background: var(--vy-border);
    margin: 0 var(--vy-space-sm);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.progress-connector::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--vy-gradient-primary);
    transition: width var(--vy-transition-slow);
}

/* Active Step */
.progress-step--active .step-indicator {
    background: var(--vy-gradient-primary);
    border-color: var(--vy-primary);
    box-shadow: var(--vy-shadow-glow);
}

.progress-step--active .step-number {
    color: var(--vy-light);
}

.progress-step--active .step-label {
    color: var(--vy-light);
}

/* Completed Step */
.progress-step--completed .step-indicator {
    background: var(--vy-secondary);
    border-color: var(--vy-secondary);
    animation: stepComplete 0.4s ease;
}

.progress-step--completed .step-number {
    opacity: 0;
}

.progress-step--completed .step-check {
    opacity: 1;
    transform: scale(1);
}

.progress-step--completed .step-label {
    color: var(--vy-secondary);
}

.progress-step--completed + .progress-connector::after {
    width: 100%;
}

/* Floating Icons */
.cart-hero-icons {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon svg {
    width: 100%;
    height: 100%;
    color: var(--vy-primary);
}

.floating-icon--1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.floating-icon--2 {
    bottom: 30%;
    right: 15%;
    width: 60px;
    height: 60px;
    animation-delay: 2s;
}

/* ==========================================================================
   CART MAIN LAYOUT
   ========================================================================== */
.cart-main {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--vy-space-lg);
}

.cart-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--vy-space-2xl);
    align-items: start;
}

/* ==========================================================================
   CART ITEMS COLUMN
   ========================================================================== */
.cart-items-column {
    display: flex;
    flex-direction: column;
    gap: var(--vy-space-lg);
}

.cart-items-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--vy-space-md);
    border-bottom: 1px solid var(--vy-border);
}

.cart-section-title {
    display: flex;
    align-items: center;
    gap: var(--vy-space-sm);
    font-family: var(--vy-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--vy-light);
}

.cart-section-title svg {
    width: 24px;
    height: 24px;
    color: var(--vy-primary);
}

.cart-items-count {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: var(--vy-dark-tertiary);
    padding: var(--vy-space-xs) var(--vy-space-md);
    border-radius: var(--vy-radius-full);
}

/* ==========================================================================
   CART ITEMS CINEMATIC
   ========================================================================== */
.cart-items-cinematic {
    display: flex;
    flex-direction: column;
    gap: var(--vy-space-md);
}

/* Cart Item Card */
.cart-item-card {
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr auto auto;
    gap: var(--vy-space-lg);
    align-items: center;
    background: var(--vy-gradient-glass);
    border: 1px solid var(--vy-border);
    border-radius: var(--vy-radius-lg);
    padding: var(--vy-space-lg);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all var(--vy-transition-base);
}

.cart-item-card:hover {
    border-color: var(--vy-border-light);
    transform: translateY(-2px);
    box-shadow: var(--vy-shadow-md);
}

.cart-item-card.removing {
    animation: slideInLeft 0.3s ease reverse forwards;
    opacity: 0;
}

/* Cart Item Image */
.cart-item-image {
    position: relative;
    width: 140px;
    height: 100px;
    border-radius: var(--vy-radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--vy-transition-slow);
}

.cart-item-card:hover .cart-item-image img {
    transform: scale(1.05);
}

.cart-item-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Cart Item Details */
.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-meta {
    margin-bottom: var(--vy-space-xs);
}

.cart-item-destination {
    display: inline-flex;
    align-items: center;
    gap: var(--vy-space-xs);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--vy-primary);
    background: rgba(var(--vy-primary-rgb), 0.15);
    padding: 4px var(--vy-space-sm);
    border-radius: var(--vy-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-item-destination svg {
    width: 14px;
    height: 14px;
}

.cart-item-title {
    font-family: var(--vy-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 var(--vy-space-xs);
    line-height: 1.3;
}

.cart-item-title a {
    color: var(--vy-light);
    text-decoration: none;
    transition: color var(--vy-transition-fast);
}

.cart-item-title a:hover {
    color: var(--vy-yellow-light);
}

.cart-item-details .variation {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--vy-space-xs);
}

/* Cart Item Pricing */
.cart-item-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--vy-space-xs);
    min-width: 100px;
}

.cart-item-price {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.cart-item-subtotal {
    font-family: var(--vy-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vy-light);
}

.cart-item-subtotal .amount {
    color: var(--vy-yellow-light);
}

/* Cart Item Quantity */
.cart-item-quantity {
    display: flex;
    align-items: center;
}

.qty-control {
    display: flex;
    align-items: center;
    background: var(--vy-dark-tertiary);
    border: 1px solid var(--vy-border);
    border-radius: var(--vy-radius-md);
    overflow: hidden;
    transition: border-color var(--vy-transition-fast);
}

.qty-control:focus-within {
    border-color: var(--vy-primary);
}

.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--vy-transition-fast);
}

.qty-btn:hover {
    background: var(--vy-dark-elevated);
    color: var(--vy-light);
}

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

.qty-btn svg {
    width: 18px;
    height: 18px;
}

.qty-input {
    width: 60px;
    height: 40px;
    background: transparent;
    border: none;
    text-align: center;
    font-family: var(--vy-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vy-light);
    -moz-appearance: textfield;
}

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

.qty-input:focus {
    outline: none;
}

/* Cart Item Actions */
.cart-item-actions {
    display: flex;
    align-items: center;
}

.cart-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--vy-border);
    border-radius: var(--vy-radius-md);
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--vy-transition-fast);
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.cart-item-remove svg {
    width: 18px;
    height: 18px;
}

.cart-item-remove span {
    display: none;
}

/* Cart Item Shine Effect */
.cart-item-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: translateX(-100%) skewX(-15deg);
    pointer-events: none;
}

.cart-item-card:hover .cart-item-shine {
    animation: cartItemShine 0.8s ease-out;
}

/* ==========================================================================
   CART ACTIONS ROW
   ========================================================================== */
.cart-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--vy-space-md);
    padding-top: var(--vy-space-lg);
    border-top: 1px solid var(--vy-border);
}

/* Coupon Input */
.cart-coupon {
    flex: 1;
    min-width: 280px;
}

.coupon-input-wrapper {
    display: flex;
    gap: var(--vy-space-sm);
}

.coupon-input {
    flex: 1;
    height: 48px;
    padding: 0 var(--vy-space-md);
    background: var(--vy-dark-tertiary);
    border: 1px solid var(--vy-border);
    border-radius: var(--vy-radius-md);
    font-family: var(--vy-font-body);
    font-size: 0.875rem;
    color: var(--vy-light);
    transition: border-color var(--vy-transition-fast);
}

.coupon-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.coupon-input:focus {
    outline: none;
    border-color: var(--vy-primary);
}

.btn-apply-coupon {
    height: 48px;
    padding: 0 var(--vy-space-lg);
    display: flex;
    align-items: center;
    gap: var(--vy-space-xs);
    background: transparent;
    border: 1px solid var(--vy-primary);
    border-radius: var(--vy-radius-md);
    font-family: var(--vy-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vy-primary);
    cursor: pointer;
    transition: all var(--vy-transition-fast);
}

.btn-apply-coupon:hover {
    background: var(--vy-primary);
    color: var(--vy-light);
}

.btn-apply-coupon svg {
    width: 16px;
    height: 16px;
}

.btn-update-cart {
    height: 48px;
    padding: 0 var(--vy-space-lg);
    display: flex;
    align-items: center;
    gap: var(--vy-space-sm);
    background: var(--vy-dark-tertiary);
    border: 1px solid var(--vy-border);
    border-radius: var(--vy-radius-md);
    font-family: var(--vy-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vy-light);
    cursor: pointer;
    transition: all var(--vy-transition-fast);
}

.btn-update-cart:hover {
    background: var(--vy-dark-elevated);
    border-color: var(--vy-border-light);
}

.btn-update-cart svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   CART SUMMARY COLUMN
   ========================================================================== */
.cart-summary-column {
    position: sticky;
    top: var(--vy-space-lg);
}

/* Summary Panel with Glassmorphism */
.cart-summary-panel {
    background: var(--vy-gradient-glass);
    border: 1px solid var(--vy-border);
    border-radius: var(--vy-radius-xl);
    padding: var(--vy-space-xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--vy-shadow-lg);
}

.summary-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--vy-space-lg);
    padding-bottom: var(--vy-space-md);
    border-bottom: 1px solid var(--vy-border);
}

.summary-panel-title {
    display: flex;
    align-items: center;
    gap: var(--vy-space-sm);
    font-family: var(--vy-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--vy-light);
}

.summary-panel-title svg {
    width: 22px;
    height: 22px;
    color: var(--vy-primary);
}

.summary-badge {
    display: flex;
    align-items: center;
    gap: var(--vy-space-xs);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--vy-secondary);
    background: rgba(46, 93, 75, 0.15);
    padding: 4px var(--vy-space-sm);
    border-radius: var(--vy-radius-full);
}

.summary-badge svg {
    width: 14px;
    height: 14px;
}

/* Trip Summary Card */
.trip-summary-card {
    display: flex;
    align-items: center;
    gap: var(--vy-space-md);
    background: var(--vy-dark-tertiary);
    border: 1px solid var(--vy-border-subtle);
    border-radius: var(--vy-radius-md);
    padding: var(--vy-space-md);
    margin-bottom: var(--vy-space-lg);
}

.trip-summary-image {
    width: 60px;
    height: 60px;
    border-radius: var(--vy-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

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

.trip-summary-info {
    flex: 1;
    min-width: 0;
}

.trip-summary-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.trip-summary-count {
    font-family: var(--vy-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vy-light);
}

/* Summary Items */
.summary-items {
    margin-bottom: var(--vy-space-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--vy-space-sm) 0;
    font-size: 0.9375rem;
}

.summary-label {
    color: rgba(255, 255, 255, 0.7);
}

.summary-value {
    font-weight: 500;
    color: var(--vy-light);
}

.summary-value.discount {
    color: var(--vy-secondary);
}

.summary-subtotal {
    border-bottom: 1px solid var(--vy-border-subtle);
    padding-bottom: var(--vy-space-md);
    margin-bottom: var(--vy-space-sm);
}

/* Summary Total */
.summary-total {
    background: var(--vy-dark-tertiary);
    border-radius: var(--vy-radius-md);
    padding: var(--vy-space-md);
    margin-bottom: var(--vy-space-lg);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-family: var(--vy-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vy-light);
}

.total-value {
    font-family: var(--vy-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vy-yellow-light);
}

.total-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: var(--vy-space-xs) 0 0;
}

/* Summary CTA */
.summary-cta {
    margin-bottom: var(--vy-space-lg);
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vy-space-sm);
    background: var(--vy-gradient-primary);
    border: none;
    border-radius: var(--vy-radius-md);
    font-family: var(--vy-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vy-light);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all var(--vy-transition-base);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: var(--vy-shadow-glow);
}

.btn-checkout .btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform var(--vy-transition-fast);
}

.btn-checkout:hover .btn-icon svg {
    transform: translateX(4px);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    pointer-events: none;
}

/* Trust Badges */
.summary-trust {
    display: flex;
    flex-direction: column;
    gap: var(--vy-space-sm);
    padding: var(--vy-space-md);
    background: var(--vy-dark-tertiary);
    border-radius: var(--vy-radius-md);
    margin-bottom: var(--vy-space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--vy-space-sm);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--vy-primary);
    flex-shrink: 0;
}

/* Continue Shopping */
.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vy-space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--vy-transition-fast);
}

.continue-shopping:hover {
    color: var(--vy-light);
}

.continue-shopping svg {
    width: 18px;
    height: 18px;
    transition: transform var(--vy-transition-fast);
}

.continue-shopping:hover svg {
    transform: translateX(-4px);
}

/* ==========================================================================
   EMPTY CART STATE - Enhanced
   ========================================================================== */
.cart-empty-state {
    position: relative;
    z-index: 20;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.empty-state-content {
    text-align: center;
    max-width: 450px;
    padding: 40px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    animation: fadeInUp 0.6s ease;
}

.empty-state-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 76, 92, 0.2) 0%, rgba(46, 93, 75, 0.2) 100%);
    border: 2px solid rgba(15, 76, 92, 0.3);
    border-radius: 50%;
    position: relative;
}

.empty-state-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(252, 211, 77, 0.2);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state-icon svg {
    width: 70px;
    height: 70px;
    color: #0F4C5C;
    opacity: 0.8;
}

.empty-state-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.empty-state-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0 0 32px;
}

.empty-state-content .vy-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 56px;
    padding: 0 32px;
    background: linear-gradient(135deg, #0F4C5C 0%, #2E5D4B 100%);
    border: none;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.empty-state-content .vy-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 76, 92, 0.4);
}

.empty-state-content .btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.empty-state-content .vy-btn-primary:hover .btn-icon svg {
    transform: translateX(4px);
}

/* ==========================================================================
   BUTTONS (Preserved Styles)
   ========================================================================== */
.vy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--vy-space-sm);
    font-family: var(--vy-font-body);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--vy-radius-md);
    cursor: pointer;
    transition: all var(--vy-transition-base);
    position: relative;
    overflow: hidden;
}

.vy-btn-primary {
    background: var(--vy-gradient-primary);
    border: none;
    color: var(--vy-light);
}

.vy-btn-primary:hover {
    box-shadow: var(--vy-shadow-glow);
    transform: translateY(-1px);
}

.vy-btn-secondary {
    background: var(--vy-dark-tertiary);
    border: 1px solid var(--vy-border-light);
    color: var(--vy-light);
}

.vy-btn-secondary:hover {
    background: var(--vy-dark-elevated);
    border-color: var(--vy-primary);
}

.vy-btn-outline {
    background: transparent;
    border: 1px solid var(--vy-border-light);
    color: var(--vy-light);
}

.vy-btn-outline:hover {
    background: var(--vy-gradient-glass);
    border-color: var(--vy-primary);
}

.vy-btn-large {
    height: 56px;
    padding: 0 var(--vy-space-xl);
    font-size: 1rem;
}

/* ==========================================================================
   PAGE LOADER (Preserved)
   ========================================================================== */
.Exploria-loader {
    position: fixed;
    inset: 0;
    z-index: var(--vy-z-overlay);
    background: var(--vy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.Exploria-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vy-space-md);
    margin-bottom: var(--vy-space-xl);
}

.deco-line {
    width: 40px;
    height: 1px;
    background: var(--vy-border);
}

.deco-diamond {
    width: 8px;
    height: 8px;
    background: var(--vy-primary);
    transform: rotate(45deg);
}

.loader-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--vy-space-lg);
}

.loader-compass {
    width: 100%;
    height: 100%;
    color: var(--vy-primary);
    animation: pulse 2s ease-in-out infinite;
}

.compass-needle {
    transform-origin: center;
    animation: float 3s ease-in-out infinite;
}

.loader-title {
    font-family: var(--vy-font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin: 0 0 var(--vy-space-md);
    color: var(--vy-light);
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: var(--vy-space-sm);
    margin-bottom: var(--vy-space-lg);
}

.loader-dot {
    width: 8px;
    height: 8px;
    background: var(--vy-primary);
    border-radius: 50%;
    animation: pulse 1s ease-in-out infinite;
}

.loader-dot--1 { animation-delay: 0s; }
.loader-dot--2 { animation-delay: 0.2s; }
.loader-dot--3 { animation-delay: 0.4s; }

.loader-progress {
    width: 200px;
    height: 2px;
    background: var(--vy-dark-tertiary);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress-bar {
    height: 100%;
    width: 0;
    background: var(--vy-gradient-primary);
    transition: width 0.3s ease;
}

/* ==========================================================================
   MINI CART DRAWER (Preserved)
   ========================================================================== */
.mini-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    z-index: var(--vy-z-modal);
    pointer-events: none;
    visibility: hidden;
}

.mini-cart-drawer.open {
    pointer-events: auto;
    visibility: visible;
}

.mini-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity var(--vy-transition-base);
}

.mini-cart-drawer.open .mini-cart-overlay {
    opacity: 1;
}

.mini-cart-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--vy-dark-secondary);
    border-left: 1px solid var(--vy-border);
    transform: translateX(100%);
    transition: transform var(--vy-transition-slow);
    display: flex;
    flex-direction: column;
}

.mini-cart-drawer.open .mini-cart-container {
    transform: translateX(0);
}

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--vy-space-lg);
    border-bottom: 1px solid var(--vy-border);
}

.mini-cart-title {
    display: flex;
    align-items: center;
    gap: var(--vy-space-sm);
    font-family: var(--vy-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--vy-light);
}

.mini-cart-title svg {
    width: 24px;
    height: 24px;
    color: var(--vy-primary);
}

.mini-cart-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--vy-border);
    border-radius: var(--vy-radius-md);
    color: var(--vy-light);
    cursor: pointer;
    transition: all var(--vy-transition-fast);
}

.mini-cart-close:hover {
    background: var(--vy-dark-tertiary);
    border-color: var(--vy-border-light);
}

.mini-cart-close svg {
    width: 20px;
    height: 20px;
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--vy-space-md);
}

.mini-cart-item {
    display: flex;
    gap: var(--vy-space-md);
    padding: var(--vy-space-md);
    border-radius: var(--vy-radius-md);
    transition: background var(--vy-transition-fast);
}

.mini-cart-item:hover {
    background: var(--vy-dark-tertiary);
}

.mini-cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--vy-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.mini-cart-item-title {
    display: block;
    font-weight: 500;
    color: var(--vy-light);
    text-decoration: none;
    margin-bottom: var(--vy-space-xs);
}

.mini-cart-item-title:hover {
    color: var(--vy-yellow-light);
}

.mini-cart-item-qty {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.mini-cart-item-price {
    font-weight: 500;
    color: var(--vy-light);
}

.mini-cart-item-remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color var(--vy-transition-fast);
}

.mini-cart-item-remove:hover {
    color: #EF4444;
}

.mini-cart-item-remove svg {
    width: 16px;
    height: 16px;
}

.mini-cart-footer {
    padding: var(--vy-space-lg);
    border-top: 1px solid var(--vy-border);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--vy-space-md);
}

.subtotal-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.subtotal-value {
    font-family: var(--vy-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--vy-light);
}

.mini-cart-actions {
    display: flex;
    gap: var(--vy-space-sm);
}

.vy-btn-view-cart,
.vy-btn-checkout {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--vy-radius-md);
    transition: all var(--vy-transition-base);
}

.vy-btn-view-cart {
    background: transparent;
    border: 1px solid var(--vy-border-light);
    color: var(--vy-light);
}

.vy-btn-view-cart:hover {
    border-color: var(--vy-primary);
}

/* ==========================================================================
   PARTICLES BACKGROUND (Preserved)
   ========================================================================== */
.travel-particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
   FLIGHT PATH ANIMATION (Preserved)
   ========================================================================== */
.flight-path-animation {
    position: fixed;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--vy-transition-base);
}

.flight-path-animation.active {
    opacity: 1;
}

.airplane-marker {
    opacity: 0;
    transition: opacity var(--vy-transition-fast);
}

.flight-path-animation.active .airplane-marker {
    opacity: 1;
}

/* ==========================================================================
   ANIMATION CLASSES
   ========================================================================== */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-stagger-1 { transition-delay: 0.1s; }
.anim-stagger-2 { transition-delay: 0.2s; }
.anim-stagger-3 { transition-delay: 0.3s; }
.anim-stagger-4 { transition-delay: 0.4s; }
.anim-stagger-5 { transition-delay: 0.5s; }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
    .cart-layout-grid {
        grid-template-columns: 1fr;
        gap: var(--vy-space-xl);
    }
    
    .cart-summary-column {
        position: static;
    }
    
    .cart-summary-panel {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .cart-hero {
        height: 35vh;
        min-height: 280px;
    }
    
    .cart-hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .cart-item-card {
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto auto;
    }
    
    .cart-item-image {
        width: 120px;
        height: 90px;
    }
    
    .cart-item-details {
        grid-column: 2;
    }
    
    .cart-item-pricing {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        padding-top: var(--vy-space-md);
        border-top: 1px solid var(--vy-border-subtle);
    }
    
    .cart-item-quantity {
        grid-column: 1;
        justify-content: flex-start;
    }
    
    .cart-item-actions {
        grid-column: 2;
        justify-self: end;
    }
}

@media (max-width: 768px) {
    .cart-hero {
        height: 30vh;
        min-height: 240px;
    }
    
    .cart-progress-steps {
        flex-wrap: wrap;
        gap: var(--vy-space-sm);
    }
    
    .progress-connector {
        display: none;
    }
    
    .progress-step {
        flex: 1;
        min-width: 80px;
    }
    
    .cart-main {
        padding: 0 var(--vy-space-md);
    }
    
    .cart-items-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--vy-space-sm);
    }
    
    .cart-item-card {
        grid-template-columns: 1fr;
    }
    
    .cart-item-image {
        width: 100%;
        height: 160px;
    }
    
    .cart-item-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--vy-space-sm);
    }
    
    .cart-item-quantity,
    .cart-item-actions {
        grid-column: 1;
    }
    
    .cart-actions-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cart-coupon {
        min-width: auto;
    }
    
    .coupon-input-wrapper {
        flex-direction: column;
    }
    
    .btn-apply-coupon,
    .btn-update-cart {
        width: 100%;
        justify-content: center;
    }
    
    .cart-summary-panel {
        padding: var(--vy-space-lg);
    }
    
    .floating-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .cart-hero-label {
        font-size: 0.75rem;
        padding: var(--vy-space-xs) var(--vy-space-sm);
    }
    
    .cart-hero-title {
        font-size: 1.75rem;
    }
    
    .cart-hero-subtitle {
        font-size: 1rem;
    }
    
    .step-indicator {
        width: 40px;
        height: 40px;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .qty-control {
        width: 100%;
        justify-content: center;
    }
    
    .qty-input {
        flex: 1;
    }
    
    .summary-trust {
        padding: var(--vy-space-sm);
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   WOOCOMMERCE NOTICES
   ========================================================================== */
.woocommerce-notices-wrapper {
    position: fixed;
    top: var(--vy-space-lg);
    right: var(--vy-space-lg);
    z-index: var(--vy-z-modal);
    max-width: 400px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--vy-dark-secondary);
    border: 1px solid var(--vy-border);
    border-radius: var(--vy-radius-md);
    padding: var(--vy-space-md) var(--vy-space-lg);
    margin-bottom: var(--vy-space-sm);
    color: var(--vy-light);
    font-size: 0.875rem;
    backdrop-filter: blur(12px);
    animation: slideInRight 0.3s ease;
}

.woocommerce-message {
    border-left: 3px solid var(--vy-secondary);
}

.woocommerce-info {
    border-left: 3px solid var(--vy-blue-light);
}

.woocommerce-error {
    border-left: 3px solid #EF4444;
}
/**
 * ===========================================================================
 * Exploria PREMIUM HERO SECTION STYLES
 * Ultra Cinematic Hero for Cart & Checkout Pages
 * ===========================================================================
 * 
 * Import this file after your main CSS files to add premium hero section styles.
 * ===========================================================================
 */

/* ==========================================================================
   PREMIUM HERO SECTIONS - Base Styles
   ========================================================================== */

/* ==========================================================================
   CART PREMIUM HERO
   ========================================================================== */
.cart-hero-premium {
    position: relative;
    min-height: 40vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0 60px;
}

/* ==========================================================================
   CHECKOUT PREMIUM HERO
   ========================================================================== */
.checkout-hero-premium {
    position: relative;
    min-height: 35vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0 40px;
}

/* ==========================================================================
   HERO BACKGROUND LAYERS
   ========================================================================== */
.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Layer 1: Gradient Base */
.hero-gradient-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        var(--vy-dark) 0%,
        rgba(10, 10, 10, 0.95) 30%,
        rgba(10, 10, 10, 0.9) 70%,
        var(--vy-dark) 100%
    );
}

/* Layer 2: Mesh Gradient */
.hero-mesh-gradient {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: meshFloat 20s ease-in-out infinite;
}

.mesh-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--vy-primary-rgb), 0.3) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.mesh-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--vy-secondary-rgb), 0.25) 0%, transparent 70%);
    bottom: -100px;
    right: -80px;
    animation-delay: -7s;
}

.mesh-orb--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--vy-yellow-light-rgb), 0.15) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%, -50%);
    animation-delay: -14s;
}

@keyframes meshFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(40px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 40px) scale(0.95);
    }
    75% {
        transform: translate(-40px, -20px) scale(1.02);
    }
}

/* Layer 3: Grid Pattern */
.hero-grid-overlay,
.hero-geo-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.grid-svg,
.geo-svg {
    width: 100%;
    height: 100%;
}

/* Layer 4: Flight Paths */
.hero-flight-paths,
.hero-flight-routes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.flight-paths-svg,
.flight-routes-svg {
    width: 100%;
    height: 100%;
}

/* Flight Route Animation */
.flight-route {
    stroke-dasharray: 8 4;
    animation: routeDash 25s linear infinite;
}

.flight-route--main {
    animation-duration: 18s;
}

.flight-route--secondary {
    animation-duration: 30s;
    animation-direction: reverse;
}

.flight-route--tertiary {
    animation-duration: 22s;
}

@keyframes routeDash {
    to {
        stroke-dashoffset: -300;
    }
}

/* Route Lines */
.route-line {
    stroke-dasharray: 6 4;
    animation: routeLineFlow 12s linear infinite;
}

.route-line--1 { animation-delay: 0s; }
.route-line--2 { animation-delay: 2s; }
.route-line--3 { animation-delay: 4s; }
.route-line--4 { animation-delay: 6s; }
.route-line--5 { animation-delay: 8s; }

@keyframes routeLineFlow {
    to {
        stroke-dashoffset: -100;
    }
}

/* Destination Dots */
.dest-dot {
    animation: destPulse 3s ease-in-out infinite;
}

@keyframes destPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Animated Airplane/Traveler */
.hero-airplane,
.hero-traveler {
    position: absolute;
    width: 32px;
    height: 32px;
    color: var(--vy-primary);
    offset-path: path('M-50,450 Q150,200 400,350 T700,250 T1100,400 T1490,200');
    offset-rotate: auto;
    animation: flyPath 18s ease-in-out infinite;
}

.hero-airplane svg,
.hero-traveler svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0,0.5));
}

@keyframes flyPath {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}

/* Layer 5: Floating Elements */
.hero-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.15;
    animation: floatAround 20s ease-in-out infinite;
}

.floating-element--compass {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element--location {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 15%;
    animation-delay: -5s;
}

.floating-element--globe {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 25%;
    animation-delay: -10s;
}

.floating-element--shield {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 5%;
    animation-delay: -3s;
}

.floating-element--lock {
    width: 70px;
    height: 70px;
    bottom: 25%;
    right: 20%;
    animation-delay: -8s;
}

.floating-element--check {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 15%;
    animation-delay: -12s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translate(20px, -15px) rotate(5deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(-15px, 20px) rotate(-5deg);
        opacity: 0.12;
    }
    75% {
        transform: translate(-20px, -10px) rotate(3deg);
        opacity: 0.18;
    }
}

/* Layer 6: Bottom Fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--vy-dark), transparent);
    z-index: 2;
}

/* ==========================================================================
   HERO CONTENT
   ========================================================================== */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--vy-space-lg);
}

.hero-content-inner {
    text-align: center;
}

/* Status/Security Badge */
.hero-status-badge,
.hero-security-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--vy-space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--vy-border-light);
    padding: var(--vy-space-sm) var(--vy-space-md);
    border-radius: var(--vy-radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--vy-light);
    margin-bottom: var(--vy-space-xl);
    backdrop-filter: blur(8px);
}

.status-dot,
.security-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vy-secondary);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-status-badge svg,
.hero-security-badge svg {
    width: 16px;
    height: 16px;
    color: var(--vy-primary);
}

/* ==========================================================================
   HERO TITLE
   ========================================================================== */
.hero-title {
    font-family: var(--vy-font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 var(--vy-space-lg);
}

.title-line {
    display: block;
}

.title-highlight {
    background: linear-gradient(
        135deg,
        var(--vy-yellow-light) 0%,
        var(--vy-primary) 50%,
        var(--vy-secondary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGradient 5s ease infinite;
}

@keyframes titleGradient {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* ==========================================================================
   HERO SUBTITLE
   ========================================================================== */
.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 var(--vy-space-xl);
    line-height: 1.6;
}

.count-highlight {
    color: var(--vy-yellow-light);
    font-weight: 600;
}

/* ==========================================================================
   HERO PROGRESS TRACKER
   ========================================================================== */
.hero-progress {
    margin-bottom: var(--vy-space-xl);
}

.progress-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--vy-space-sm);
}

.step-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vy-dark-tertiary);
    border: 2px solid var(--vy-border);
    transition: all var(--vy-transition-base);
}

.step-node svg {
    width: 18px;
    height: 18px;
    color: var(--vy-light);
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    transition: stroke-dashoffset 0.4s ease;
}

.step-number {
    font-family: var(--vy-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--vy-transition-base);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--vy-transition-base);
}

.progress-line {
    width: 80px;
    height: 2px;
    background: var(--vy-dark-tertiary);
    margin: 0 var(--vy-space-xs);
    margin-bottom: 26px;
    position: relative;
    overflow: hidden;
}

.progress-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--vy-gradient-primary);
    transition: width var(--vy-transition-slow);
}

/* Completed Step */
.progress-step--completed .step-node {
    background: var(--vy-secondary);
    border-color: var(--vy-secondary);
    box-shadow: 0 0 15px rgba(var(--vy-secondary-rgb), 0.4);
}

.progress-step--completed .step-node svg {
    stroke-dashoffset: 0;
}

.progress-step--completed .step-label {
    color: var(--vy-secondary);
}

.progress-step--completed + .progress-line .progress-line-fill {
    width: 100%;
}

/* Active Step */
.progress-step--active .step-node {
    background: var(--vy-gradient-primary);
    border-color: var(--vy-primary);
    box-shadow: var(--vy-shadow-glow);
    animation: nodePulse 2s ease-in-out infinite;
}

.progress-step--active .step-number {
    color: var(--vy-light);
}

.progress-step--active .step-label {
    color: var(--vy-light);
}

@keyframes nodePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(var(--vy-primary-rgb), 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(var(--vy-primary-rgb), 0.5);
    }
}

/* ==========================================================================
   HERO QUICK STATS / CHECKOUT PREVIEW
   ========================================================================== */
.hero-quick-stats,
.hero-checkout-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vy-space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--vy-border);
    border-radius: var(--vy-radius-xl);
    padding: var(--vy-space-md) var(--vy-space-xl);
    backdrop-filter: blur(12px);
    margin-top: var(--vy-space-lg);
}

.stat-item,
.preview-item {
    display: flex;
    align-items: center;
    gap: var(--vy-space-md);
}

.stat-icon,
.preview-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vy-dark-tertiary);
    border-radius: var(--vy-radius-md);
    flex-shrink: 0;
}

.stat-icon svg,
.preview-icon svg {
    width: 24px;
    height: 24px;
    color: var(--vy-primary);
}

.preview-icon--secure svg {
    color: var(--vy-secondary);
}

.stat-content,
.preview-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value,
.preview-value {
    font-family: var(--vy-font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vy-light);
    line-height: 1;
}

.stat-label,
.preview-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.stat-divider,
.preview-divider {
    width: 1px;
    height: 40px;
    background: var(--vy-border);
}

/* ==========================================================================
   HERO SCROLL INDICATOR
   ========================================================================== */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--vy-space-sm);
    margin-top: var(--vy-space-xl);
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%, 0);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   RESPONSIVE HERO
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-quick-stats,
    .hero-checkout-preview {
        gap: var(--vy-space-md);
        padding: var(--vy-space-md) var(--vy-space-lg);
    }
    
    .progress-line {
        width: 60px;
    }
}

@media (max-width: 992px) {
    .cart-hero-premium,
    .checkout-hero-premium {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .hero-quick-stats,
    .hero-checkout-preview {
        flex-direction: column;
        gap: var(--vy-space-md);
        padding: var(--vy-space-md);
    }
    
    .stat-divider,
    .preview-divider {
        width: 60px;
        height: 1px;
    }
    
    .progress-track {
        flex-wrap: wrap;
    }
    
    .progress-line {
        display: none;
    }
    
    .progress-step {
        flex: 1 0 0px;
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .cart-hero-premium,
    .checkout-hero-premium {
        min-height: 45vh;
    }
    
    .hero-mesh-gradient {
        display: none;
    }
    
    .hero-floating-elements {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-quick-stats,
    .hero-checkout-preview {
        flex-direction: row;
        width: 100%;
    }
    
    .stat-divider,
    .preview-divider {
        width: 1px;
        height: 40px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .cart-hero-premium,
    .checkout-hero-premium {
        min-height: 40vh;
    }
    
    .hero-status-badge,
    .hero-security-badge {
        font-size: 0.75rem;
        padding: var(--vy-space-xs) var(--vy-space-sm);
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .step-node {
        width: 36px;
        height: 36px;
    }
    
    .hero-quick-stats,
    .hero-checkout-preview {
        padding: var(--vy-space-sm) var(--vy-space-md);
    }
    
    .stat-icon,
    .preview-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-value,
    .preview-value {
        font-size: 1rem;
    }
}

/* ==========================================================================
   ADDITIONAL FIXES FOR CONTENT VISIBILITY
   ========================================================================== */

/* Ensure hero content is always visible */
.hero-content-wrapper {
    position: relative;
    z-index: 10 !important;
}

.hero-content-inner {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Make sure cart main is properly positioned after hero */
.cart-main {
    position: relative;
    z-index: 15;
    background: transparent;
    padding-top: var(--vy-space-2xl);
}

/* Animation classes */
.anim-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-stagger-1 { transition-delay: 0.1s; }
.anim-stagger-2 { transition-delay: 0.2s; }
.anim-stagger-3 { transition-delay: 0.3s; }
.anim-stagger-4 { transition-delay: 0.4s; }
.anim-stagger-5 { transition-delay: 0.5s; }

/* Quantity changed animation */
.qty-control.quantity-changed {
    animation: qtyChanged 0.3s ease;
}

@keyframes qtyChanged {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 10px rgba(252, 211, 77, 0.3); }
}

/* Value updated animation */
.value-updated {
    animation: valuePop 0.3s ease;
}

@keyframes valuePop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); color: #FCD34D !important; }
}

/* Summary panel updating state */
.cart-summary-panel.updating {
    opacity: 0.7;
    pointer-events: none;
}

.cart-summary-panel.updating::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulse active step */
.pulse-active .step-node {
    animation: nodePulse 2s ease-in-out infinite;
}

/* Flight path animation active */
#flight-path-svg.active {
    opacity: 1;
}

#flight-path-svg {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Page loader hidden state */
.Exploria-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Body loading state */
body.loading {
    overflow: hidden;
}

/* Make sure floating elements don't block interactions */
.hero-floating-elements {
    pointer-events: none;
}

/* Hero bottom fade improved */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--vy-dark, #0A0A0A) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}


/* ==========================================================================
   EMPTY CART VISIBILITY FIX - Ensure content is visible without JS
   ========================================================================== */

/* Empty state should always be visible */
.cart-empty-state,
.cart-empty-state *,
.cart-empty-state .empty-state-content,
.cart-empty-state .empty-state-content.anim-fade-up {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Remove the anim-fade-up hiding effect for empty state */
.cart-empty-state .anim-fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure cart main section is properly visible */
.cart-main {
    position: relative;
    z-index: 20;
    min-height: 400px;
    padding-top: 24px;
}

/* Hero section should not block cart content */
.cart-hero-premium {
    z-index: 1;
}

/* Additional fallback for hero content */
.hero-content-inner {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.hero-content-inner .anim-fade-up {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force hero quick stats to be visible */
.hero-quick-stats {
    opacity: 1 !important;
    visibility: visible !important;
}


/* ==========================================================================
   QUANTITY CONTROL STYLES
   ========================================================================== */

/* Quantity Control Container */
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

/* Quantity Buttons */
.qty-btn-plus,
.qty-btn-minus,
.qty-plus,
.qty-minus {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 76, 92, 0.1);
    border: 1px solid rgba(15, 76, 92, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #0F4C5C;
    font-size: 18px;
    font-weight: 600;
    user-select: none;
}

.qty-btn-plus:hover,
.qty-btn-minus:hover,
.qty-plus:hover,
.qty-minus:hover {
    background: #0F4C5C;
    color: white;
    border-color: #0F4C5C;
    transform: scale(1.05);
}

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

/* Disabled State */
.qty-btn-plus:disabled,
.qty-btn-minus:disabled,
.qty-plus:disabled,
.qty-minus:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Limit Reached Animation */
.qty-limit-reached {
    animation: qtyShake 0.3s ease;
    background: rgba(239, 68, 68, 0.2) !important;
    border-color: #EF4444 !important;
}

/* Quantity Input */
.qty-input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid rgba(15, 76, 92, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
    background: white;
    transition: all 0.3s ease;
}

.qty-input:focus {
    outline: none;
    border-color: #0F4C5C;
    box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.1);
}

.qty-input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #f5f5f5;
}

/* ==========================================================================
   PRICE UPDATE ANIMATIONS
   ========================================================================== */

/* Price Update Animation */
.anim-price-update {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Item Subtotal */
.cart-item-subtotal {
    font-weight: 600;
    font-size: 1.1rem;
    color: #0A0A0A;
    transition: all 0.3s ease;
}

.cart-item-subtotal.anim-price-update {
    transform: scale(1.05);
}

/* Cart Totals */
.cart-subtotal,
.cart-total {
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Value Updated State */
.value-updated {
    animation: valuePulse 0.3s ease;
}

/* ==========================================================================
   LOADING STATES
   ========================================================================== */

/* Updating State */
.is-updating {
    pointer-events: none;
    opacity: 0.7;
}

.cart-item-card.is-updating {
    position: relative;
}

.cart-item-card.is-updating::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: inherit;
    z-index: 10;
}

/* Quantity Spinner */
.qty-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-spinner .spinner-svg {
    width: 20px;
    height: 20px;
    color: #0F4C5C;
    animation: spin 1s linear infinite;
}

/* ==========================================================================
   CART ITEM CARD STATES
   ========================================================================== */

/* Success State */
.cart-item-card.update-success {
    animation: successPulse 0.5s ease;
}

/* Removing State */
.cart-item-card.removing {
    animation: slideOutLeft 0.4s ease forwards;
}

/* Quantity Changed Feedback */
.qty-control.quantity-changed {
    animation: qtyChange 0.3s ease;
}

/* Fragment Updated */
.fragment-updated {
    animation: fragmentFade 0.3s ease;
}

/* ==========================================================================
   NOTIFICATION STYLES
   ========================================================================== */

#Exploria-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.Exploria-notification {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    max-width: 350px;
}

.Exploria-notification.error {
    background: rgba(239, 68, 68, 0.95);
    color: white;
}

.Exploria-notification.success {
    background: rgba(16, 185, 129, 0.95);
    color: white;
}

.Exploria-notification.info {
    background: rgba(59, 130, 246, 0.95);
    color: white;
}

.Exploria-notification svg {
    flex-shrink: 0;
}

.Exploria-notification span {
    font-size: 14px;
    line-height: 1.4;
}

/* ==========================================================================
   MINI CART ENHANCEMENTS
   ========================================================================== */

/* Mini Cart Content */
.mini-cart-content {
    transition: all 0.3s ease;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid rgba(15, 76, 92, 0.1);
    transition: all 0.3s ease;
}

.mini-cart-item:hover {
    background: rgba(15, 76, 92, 0.05);
}

.mini-cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.mini-cart-item-name {
    display: block;
    font-weight: 500;
    color: #0A0A0A;
    text-decoration: none;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-item-name:hover {
    color: #0F4C5C;
}

.mini-cart-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.mini-cart-item-price {
    font-weight: 600;
    color: #0F4C5C;
}

.mini-cart-item-remove {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #999;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.mini-cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.mini-cart-item-remove svg {
    width: 16px;
    height: 16px;
}

/* Mini Cart Footer */
.mini-cart-footer {
    padding: 16px;
    border-top: 1px solid rgba(15, 76, 92, 0.1);
    background: rgba(15, 76, 92, 0.02);
}

.mini-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-weight: 600;
}

.mini-cart-total-value {
    font-size: 1.2rem;
    color: #0F4C5C;
}

.mini-cart-actions {
    display: flex;
    gap: 10px;
}

.mini-cart-view-btn,
.mini-cart-checkout-btn {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mini-cart-view-btn {
    background: rgba(15, 76, 92, 0.1);
    color: #0F4C5C;
}

.mini-cart-view-btn:hover {
    background: rgba(15, 76, 92, 0.2);
}

.mini-cart-checkout-btn {
    background: #0F4C5C;
    color: white;
}

.mini-cart-checkout-btn:hover {
    background: #0d3f4c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.3);
}

/* ==========================================================================
   CART COUNT BADGE
   ========================================================================== */

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #FCD34D;
    color: #0A0A0A;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-count.value-updating {
    transform: scale(1.2);
    background: #FCD34D;
    box-shadow: 0 0 0 4px rgba(252, 211, 77, 0.3);
}

/* ==========================================================================
   EMPTY CART MESSAGE
   ========================================================================== */

.cart-empty-message {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty-message svg {
    opacity: 0.3;
    margin-bottom: 20px;
}

.cart-empty-message h3 {
    margin-bottom: 10px;
    color: #0F4C5C;
}

.cart-empty-message p {
    color: #666;
    margin-bottom: 20px;
}

.cart-empty-message .vy-btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #0F4C5C;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-empty-message .vy-btn-primary:hover {
    background: #0d3f4c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.3);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes successPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes qtyShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

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

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-100%) scale(0.9);
    }
}

@keyframes fragmentFade {
    0% {
        opacity: 0.5;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes qtyChange {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes valuePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 768px) {
    .qty-btn-plus,
    .qty-btn-minus,
    .qty-plus,
    .qty-minus {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .qty-input {
        width: 50px;
        height: 32px;
        font-size: 14px;
    }
    
    .cart-item-subtotal {
        font-size: 1rem;
    }
    
    .mini-cart-item {
        padding: 10px;
    }
    
    .mini-cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    #Exploria-notifications {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .Exploria-notification {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .qty-control {
        gap: 4px;
    }
    
    .qty-btn-plus,
    .qty-btn-minus,
    .qty-plus,
    .qty-minus {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .qty-input {
        width: 40px;
        height: 28px;
        font-size: 13px;
    }
    
    .mini-cart-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   DARK MODE SUPPORT (Optional)
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .qty-btn-plus,
    .qty-btn-minus,
    .qty-plus,
    .qty-minus {
        background: rgba(252, 211, 77, 0.1);
        border-color: rgba(252, 211, 77, 0.2);
        color: #FCD34D;
    }
    
    .qty-btn-plus:hover,
    .qty-btn-minus:hover,
    .qty-plus:hover,
    .qty-minus:hover {
        background: #FCD34D;
        color: #0A0A0A;
        border-color: #FCD34D;
    }
    
    .qty-input {
        background: #141414;
        border-color: rgba(252, 211, 77, 0.2);
        color: #FFFFFF;
    }
    
    .cart-item-subtotal {
        color: #FCD34D;
    }
}

/* ==========================================================================
   HIGH CONTRAST MODE
   ========================================================================== */

@media (prefers-contrast: high) {
    .qty-btn-plus,
    .qty-btn-minus,
    .qty-plus,
    .qty-minus {
        border-width: 2px;
    }
    
    .qty-input {
        border-width: 2px;
    }
    
    .cart-count {
        border: 2px solid #0A0A0A;
    }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .anim-price-update,
    .cart-item-card,
    .cart-count,
    .qty-btn-plus,
    .qty-btn-minus,
    .qty-plus,
    .qty-minus,
    .qty-input {
        transition: none !important;
        animation: none !important;
    }
}
