@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Shades of Olive Theme Palette */
    --bg-main: #f4f5f0;        /* Bright clean background */
    --bg-card: rgba(255, 255, 255, 0.94); /* Brighter, professional white glass card */
    --bg-input: #ffffff;
    
    --primary: #707143;        /* Dark Olive - Main buttons & headers */
    --primary-hover: #4d502c;  /* Deep Olive for hover */
    --secondary: #98995a;      /* Dusty Olive - Whisper of olive, kissed by sun */
    --forest-green: #35371e;   /* Forest Green accents */
    --black-olive: #252610;    /* Black Olive for sharp high-contrast typography */
    
    --army-red: #c23b22;       /* Bright Army Red for alerts & urgency */
    --army-red-glow: rgba(194, 59, 34, 0.25);
    --teal: #4c6a46;           /* Saga Army Green */
    
    --text-main: #17180a;      /* Extremely crisp deep black-olive reading text */
    --text-muted: #35382e;     /* Deepened high-contrast muted text */
    --border-light: rgba(152, 153, 90, 0.35); /* Increased opacity for clear contrast */
    --border-active: rgba(112, 113, 67, 0.6);  /* Dark Olive focused borders */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-premium: 0 12px 35px -10px rgba(37, 38, 16, 0.12);
    --shadow-glow: 0 0 25px 0 rgba(112, 113, 67, 0.15);
}

/* Reset & Scrollbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #d4d6cd;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(at 10% 20%, rgba(152, 153, 90, 0.25) 0px, transparent 60%),
        radial-gradient(at 90% 80%, rgba(112, 113, 67, 0.2) 0px, transparent 60%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 4rem;
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black-olive);
}

.gradient-text {
    background: linear-gradient(135deg, var(--black-olive) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 560px; /* Perfect sleek smartphone column width */
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

/* Visual Components */

/* 1. Header Profile & Poster */
.bio-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.poster-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
}

.poster-wrapper:hover {
    transform: translateY(-2px);
    border-color: var(--border-active);
}

.event-poster {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block;
    object-fit: contain !important;
}

.urgency-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--army-red) 0%, #991b1b 100%);
    color: #fff;
    padding: 0.45rem 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(194, 59, 34, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulseGlow 1.8s infinite;
}

/* 2. Sleek Glassmorphism Card Container */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
}

.glass-card.highlight {
    border-color: var(--border-active);
    box-shadow: var(--shadow-glow), var(--shadow-premium);
    background: #ffffff;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--black-olive);
}

/* 3. Countdown System styling */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    text-align: center;
    margin-top: 0.5rem;
}

.countdown-box {
    background: #f7f8f3;
    border: 1.5px solid var(--border-light);
    border-radius: 14px;
    padding: 0.85rem 0.25rem;
    transition: border-color 0.25s ease;
}

.countdown-box:hover {
    border-color: var(--primary);
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 850;
    color: var(--black-olive);
    line-height: 1.1;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 0.25rem;
}

/* 4. Progress bar */
.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.progress-track {
    width: 100%;
    height: 12px;
    background: #e9ebd9;
    border-radius: 99px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 99px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(112, 113, 67, 0.3);
}

/* 5. Urgency Bar Info Box */
.urgency-bar-container {
    background: linear-gradient(135deg, rgba(194, 59, 34, 0.06) 0%, rgba(152, 153, 90, 0.04) 100%);
    border: 1.5px dashed var(--army-red);
    border-radius: 18px;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(194, 59, 34, 0.05);
}

.urgency-icon {
    font-size: 1.6rem;
    animation: wiggle 1.2s infinite;
}

.urgency-text {
    font-size: 0.88rem;
    color: var(--black-olive);
    font-weight: 600;
    line-height: 1.4;
}

/* 6. Pricing & Savings Display */
.price-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    background: #f7f8f3;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1.5px solid var(--border-light);
}

.price-details {
    display: flex;
    flex-direction: column;
}

.original-price {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.offer-price {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 850;
    color: var(--black-olive);
}

.save-badge {
    background: rgba(194, 59, 34, 0.1);
    border: 1px solid var(--army-red);
    color: var(--army-red);
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* 7. Forms Control & Elegant Inputs */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    background: var(--bg-input);
    border: 1.5px solid #d4d6cd;
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    color: var(--black-olive);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(112, 113, 67, 0.15);
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.qty-btn {
    background: #e9ebd9;
    border: 1px solid var(--border-light);
    color: var(--black-olive);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.qty-input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--black-olive);
    font-size: 1.2rem;
    font-weight: 800;
}

/* Premium Buttons & Call to Action */
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--forest-green) 100%);
    color: #ffffff;
    border: none;
    padding: 1.1rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(112, 113, 67, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: translateY(-2.5px);
    box-shadow: 0 10px 25px rgba(112, 113, 67, 0.45);
}

.btn-primary:active {
    transform: translateY(1px);
}

/* 8. Success / Confirmation Visuals */
.status-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.status-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
}

.status-icon.success {
    background: rgba(152, 153, 90, 0.15);
    border: 2px solid var(--secondary);
    color: var(--primary);
    box-shadow: 0 0 25px rgba(152, 153, 90, 0.2);
}

.status-icon.pending {
    background: rgba(194, 59, 34, 0.08);
    border: 2px solid var(--army-red);
    color: var(--army-red);
    box-shadow: 0 0 25px rgba(194, 59, 34, 0.15);
}

.details-box {
    background: #f7f8f3;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    color: var(--text-main);
}

.details-row:last-child {
    margin-bottom: 0;
    border-top: 1.5px solid var(--border-light);
    padding-top: 0.65rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.bank-textarea {
    background: #ffffff;
    border: 1.5px dashed var(--primary);
    padding: 1.1rem;
    border-radius: 12px;
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-line;
    margin-top: 0.5rem;
    color: var(--black-olive);
    font-weight: 600;
}

/* Tabs Navigation for payment options */
.confirm-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: #e9ebd9;
    padding: 0.35rem;
    border-radius: 12px;
}

.tab-btn {
    border: none;
    background: transparent;
    padding: 0.65rem 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tab-btn.active {
    background: #ffffff;
    color: var(--black-olive);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* File Upload drag-and-drop zone styling */
.upload-zone {
    border: 2px dashed var(--border-light);
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 1.5rem;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--primary);
    background: #f7f8f3;
}

.upload-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.upload-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--black-olive);
}

.upload-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.upload-preview {
    margin-top: 1rem;
    padding: 0.5rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-align: left;
    background: #f4f5f0;
}

/* Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 4px 10px var(--army-red-glow);
    }
    50% {
        box-shadow: 0 4px 20px rgba(194, 59, 34, 0.6);
    }
    100% {
        box-shadow: 0 4px 10px var(--army-red-glow);
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .countdown-value {
        font-size: 1.45rem;
    }
    .countdown-box {
        padding: 0.6rem 0.1rem;
    }
}

/* Premium High-Impact Pricing Bento Card & Animations */
.price-premium-card {
    background: linear-gradient(135deg, rgba(112, 113, 67, 0.06) 0%, rgba(152, 153, 90, 0.03) 100%);
    border: 2px solid var(--primary);
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow), var(--shadow-premium);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.price-premium-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(112, 113, 67, 0.25), var(--shadow-glow);
    border-color: var(--primary-hover);
}

/* Shiny sweep line swipe across card */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shineSwipe 4.5s infinite ease-in-out;
}

@keyframes shineSwipe {
    0% { left: -100%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

.save-badge-glow {
    background: linear-gradient(135deg, var(--army-red) 0%, #b91c1c 100%);
    color: #fff;
    padding: 0.3rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(185, 28, 28, 0.3);
    text-transform: uppercase;
    animation: pulseGlow 1.5s infinite ease-in-out;
    display: inline-block;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(185, 28, 28, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 3px 20px rgba(185, 28, 28, 0.65);
        transform: scale(1.03);
    }
}

/* Trust Indicators Layout */
.trust-indicators-container {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow: var(--shadow-premium);
}

.trust-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    text-align: left;
}

.trust-item-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.trust-item-content h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--black-olive);
    margin-bottom: 0.15rem;
}

.trust-item-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 500;
}

/* Secure Badges List */
.secure-badges-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    opacity: 0.75;
}

.secure-badge-logo {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Rich Text WYSIWYG Output Styling */
.event-desc-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
}

.event-desc-content img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px;
    margin: 0.85rem 0;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-light);
    display: block;
}

.event-desc-content h1, .event-desc-content h2, .event-desc-content h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--black-olive);
}

.event-desc-content ul, .event-desc-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.event-desc-content li {
    margin-bottom: 0.25rem;
}

/* Modal Overlay & Sheet Styling */
.modal-overlay {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(37, 38, 16, 0.45); 
    z-index: 1000; 
    justify-content: center; 
    align-items: center; 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeInModal 0.25s ease-out;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    width: 100%; 
    max-width: 540px; 
    background: #ffffff !important;
    border: 1px solid var(--border-active) !important;
    box-shadow: 0 20px 50px rgba(37, 38, 16, 0.25) !important;
    position: relative; 
    margin: 1rem;
    animation: slideUpModal 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* SVG icons helpers */
.inline-svg-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.inline-svg-icon.large {
    width: 2.5rem;
    height: 2.5rem;
}

/* Premium Rotating Gear Animation */
@keyframes spinGear {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile-First Modal Adjustments */
@media (max-width: 560px) {
    .modal-content {
        padding: 1.5rem !important;
        margin: 0.5rem !important;
        border-radius: 16px !important;
    }
    
    .modal-content .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .modal-content .form-group {
        margin-bottom: 0.75rem !important;
    }
}

/* Mobile-First Import/Export Console Adjustments */
@media (max-width: 768px) {
    .desktop-only-divider {
        display: none !important;
    }
    .import-export-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }
    .import-export-actions form {
        width: 100%;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }
    .import-export-actions .view-btn, 
    .import-export-actions label.view-btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }
}

/* Premium Left Sidebar Structural Grid Layout */
body.admin-body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
}

@media (min-width: 992px) {
    body.admin-body {
        display: grid;
        grid-template-columns: 280px 1fr;
        min-height: 100vh;
    }
    
    .admin-sidebar {
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-right: 1px solid var(--border-light);
        padding: 2rem 1.5rem;
        height: 100vh;
        position: sticky;
        top: 0;
        display: flex;
        flex-direction: column;
        z-index: 100;
        box-shadow: 4px 0 25px rgba(37, 38, 16, 0.04);
        justify-content: space-between;
    }
    
    .admin-main-content {
        padding: 2.5rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        transition: max-width 0.3s ease;
    }
    
    body.admin-body.wide-view .admin-main-content {
        max-width: 100% !important;
    }
    
    /* Layout formatting for nested cards */
    .admin-sidebar-nav {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        height: 100%;
        justify-content: space-between;
    }
    
    .sidebar-brand {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding-bottom: 0.5rem;
    }
    
    .sidebar-divider {
        height: 1px;
        background: var(--border-light);
        margin: 0.25rem 0;
    }
    
    .sidebar-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        flex-grow: 1;
        margin-top: 1rem;
    }
    
    .sidebar-links .nav-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1.1rem;
        width: 100%;
        text-align: left;
        border: 1px solid transparent;
        transition: all 0.2s ease;
    }
    
    .sidebar-links .nav-item:hover {
        background: rgba(112, 113, 67, 0.05);
        color: var(--black-olive);
        border-color: var(--border-light);
    }
    
    .sidebar-links .nav-item.active {
        background: rgba(112, 113, 67, 0.12) !important;
        border-color: var(--border-active) !important;
        color: var(--black-olive) !important;
        font-weight: 700;
    }
    
    .sidebar-toggle-container {
        margin-top: auto;
        padding-top: 1rem;
    }
    
    .sidebar-logout {
        padding-top: 0.5rem;
    }
    
    .logout-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: rgba(194, 59, 34, 0.08);
        border: 1px solid rgba(194, 59, 34, 0.25);
        color: var(--army-red) !important;
        padding: 0.75rem 1.1rem;
        border-radius: 12px;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 700;
        transition: all 0.25s ease;
        width: 100%;
        text-align: center;
    }
    
    .logout-btn:hover {
        background: var(--army-red);
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(194, 59, 34, 0.2);
    }
}

/* Mobile responsive menu bar transformation if min-width: 992px not satisfied */
@media (max-width: 991px) {
    .admin-sidebar-nav {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .sidebar-brand {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .sidebar-divider, .sidebar-toggle-container, .sidebar-logout {
        display: none !important; /* Hide sidebar cogs & logout from nav content, let normal horizontal handles manage */
    }
    
    .sidebar-links {
        display: flex;
        gap: 0.35rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive Desktop Split Grid for Landing Page */
.landing-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .container.main-landing-container {
        max-width: 1040px !important; /* Wide Split View container */
        padding: 2rem 1rem;
    }
    
    .landing-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr; /* Elegant unequal split ratio */
        gap: 2rem;
        align-items: start;
    }
    
    .bio-header {
        grid-column: span 2; /* Span full screen */
        margin-bottom: 2rem;
    }
}

/* Invoice breakdown card styling */
.price-breakdown {
    background: rgba(0, 0, 0, 0.015);
    border: 1px solid var(--border-light);
    padding: 1rem 1.25rem;
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.price-breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-breakdown-row.total {
    margin-bottom: 0;
    border-top: 1.5px dashed var(--border-light);
    padding-top: 0.65rem;
    font-weight: 800;
    font-size: 1rem;
    color: var(--black-olive);
}

/* Premium Responsive Video Embeds (YouTube iframe / video tags) */
.event-desc-content iframe,
.event-desc-content video,
.event-desc-content .ql-video,
iframe.ql-video {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    margin: 1.25rem 0;
    display: block;
}

/* Bespoke Native Settings Section Layouts */
.settings-section-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.settings-section-card:hover {
    box-shadow: var(--shadow-glow), var(--shadow-premium);
    border-color: var(--border-active);
}

.settings-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.settings-section-card.accent-secondary::before {
    background: var(--secondary);
}

.settings-section-card.accent-teal::before {
    background: var(--teal);
}

.settings-section-card.accent-red::before {
    background: var(--army-red);
}

.settings-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black-olive);
    border-bottom: 1.5px solid var(--border-light);
    padding-bottom: 0.5rem;
}

/* Bespoke Custom Carousel Slider Framework */
.custom-carousel {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    margin-bottom: 1.5rem;
    aspect-ratio: 16 / 10;
    background: #000;
}

.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient overlay for text readability */
.carousel-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(37, 38, 16, 0.85) 0%, rgba(37, 38, 16, 0.4) 40%, transparent 100%);
    pointer-events: none;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.25rem 1.75rem 1.75rem 1.75rem;
    color: #ffffff;
    z-index: 10;
    pointer-events: none;
    text-align: left;
}

.carousel-caption h4 {
    color: #ffffff !important;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

/* Glassmorphism Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.25s ease;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    scale: 1.05;
}

.carousel-arrow:active {
    scale: 0.95;
}

.carousel-arrow.prev {
    left: 15px;
}

.carousel-arrow.next {
    right: 15px;
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
}

/* Page indicator dots */
.carousel-dots {
    position: absolute;
    bottom: 12px;
    right: 15px;
    display: flex;
    gap: 6px;
    z-index: 20;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.25s ease;
}

.carousel-dot.active {
    background: #ffffff;
    width: 20px;
    border-radius: 99px;
}

/* Premium Button Active/Hover Feedbacks */
.btn-primary:active,
.qty-btn:active,
.tab-btn:active,
.view-btn:active {
    transform: scale(0.97) !important;
}

.btn-primary,
.view-btn {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Countdown soft warm yellow background styling */
.countdown-yellow-card {
    background: #fef9c3 !important; /* Soft warm yellow */
    border: 2px solid #facc15 !important;
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.18) !important;
}

.countdown-yellow-card .card-title {
    color: #854d0e !important;
}

.countdown-yellow-card .card-title svg {
    color: #ca8a04 !important;
}

.countdown-yellow-card .countdown-box {
    background: #ffffff !important;
    border: 1.5px solid #fef08a !important;
}

.countdown-yellow-card .countdown-value {
    color: #713f12 !important;
}

.countdown-yellow-card .countdown-label {
    color: #a16207 !important;
}

/* Bright Red Glow for custom red discount badges */
.save-badge-glow.bg-red-glow {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%) !important;
    box-shadow: 0 3px 12px rgba(239, 68, 68, 0.45) !important;
    animation: pulseRedGlow 1.5s infinite ease-in-out !important;
}

@keyframes pulseRedGlow {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(239, 68, 68, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 3px 20px rgba(239, 68, 68, 0.75);
        transform: scale(1.03);
    }
}

/* Outer Carousel Slider Framework with Outer Navigation Arrows */
.carousel-wrapper {
    position: relative;
    padding: 0;
    margin-bottom: 1.5rem;
    width: 100%;
}

.carousel-wrapper .custom-carousel {
    margin-bottom: 0;
}

.carousel-wrapper .carousel-arrow {
    background: var(--bg-card) !important;
    border: 1.5px solid var(--border-light) !important;
    color: var(--primary) !important;
    box-shadow: var(--shadow-premium) !important;
    z-index: 30;
}

.carousel-wrapper .carousel-arrow:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
}

/* Desktop layout positioning arrows floating OUTSIDE slide placeholder boundaries */
@media (min-width: 992px) {
    .carousel-wrapper .carousel-arrow.prev {
        left: -58px;
    }

    .carousel-wrapper .carousel-arrow.next {
        right: -58px;
    }
}

/* Tablet & Mobile layout positioning arrows floating safely INSIDE overlay boundary */
@media (max-width: 991px) {
    .carousel-wrapper .carousel-arrow.prev {
        left: 15px;
    }

    .carousel-wrapper .carousel-arrow.next {
        right: 15px;
    }
}

/* YouTube Video Embed inside Slider aspect ratios */
.carousel-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive mobile sizing refinements */
@media (max-width: 768px) {
    .carousel-wrapper .carousel-arrow {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.45) !important;
        border-color: rgba(152, 153, 90, 0.25) !important;
    }
    .carousel-wrapper .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
}


