/* ============================================
   PartyPlex App - Modern Booking Interface
   Mobile-First Design inspired by Swiggy/Zomato
   ============================================ */

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary: #a78bfa;
    --accent: #c4b5fd;
    --dark: #1A1A2E;
    --text: #2D3436;
    --text-light: #636E72;
    --bg: #F8F9FA;
    --white: #FFFFFF;
    --success: #00B894;
    --danger: #D63031;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fluid Typography */
    --font-xs: clamp(0.7rem, 2vw, 0.75rem);
    --font-sm: clamp(0.85rem, 2.5vw, 0.9rem);
    --font-base: clamp(0.95rem, 3vw, 1rem);
    --font-lg: clamp(1.1rem, 3.5vw, 1.3rem);
    --font-xl: clamp(1.3rem, 4vw, 1.5rem);
    --font-2xl: clamp(1.5rem, 5vw, 2rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: env(safe-area-inset-bottom);
}

/* ============================================
   Modern Scrollbar Styles
   ============================================ */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.5);
}

*::-webkit-scrollbar-thumb:active {
    background: rgba(139, 92, 246, 0.7);
}

/* Scrollbar for specific containers */
.desktop-sidebar::-webkit-scrollbar,
.app-main::-webkit-scrollbar,
.packages-grid::-webkit-scrollbar,
.addons-container::-webkit-scrollbar {
    width: 8px;
}

.desktop-sidebar::-webkit-scrollbar-thumb,
.app-main::-webkit-scrollbar-thumb,
.packages-grid::-webkit-scrollbar-thumb,
.addons-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(124, 58, 237, 0.4));
    border-radius: 10px;
}

.desktop-sidebar::-webkit-scrollbar-thumb:hover,
.app-main::-webkit-scrollbar-thumb:hover,
.packages-grid::-webkit-scrollbar-thumb:hover,
.addons-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(124, 58, 237, 0.6));
}

/* ============================================
   App Container
   ============================================ */

.app-container {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
}

/* Responsive container width */
@media (min-width: 482px) and (max-width: 767px) {
    .app-container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .app-container {
        max-width: 100%;
    }
}

/* ============================================
   Top Header
   ============================================ */

.app-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 12px 16px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-back, .btn-cart, .btn-header-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.btn-back:active, .btn-cart:active, .btn-header-action:active {
    transform: scale(0.95);
}

.btn-cart {
    position: relative;
}

/* Header Actions Container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header Action Buttons */
.btn-header-action {
    background: var(--bg);
    color: var(--text);
}

.btn-header-action:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
}

.btn-header-action.btn-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.btn-header-action.btn-whatsapp:hover {
    background: #25D366;
    color: white;
}

.btn-header-action.btn-whatsapp:active {
    background: #128C7E;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-title {
    flex: 1;
}

.header-title h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.header-title p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   Main Content
   ============================================ */

.app-main {
    padding-bottom: 160px;
    min-height: calc(100vh - 60px);
}

@media (max-width: 767px) {
    .app-main {
        padding-bottom: 160px;
    }
}

.screen {
    display: none;
    animation: slideIn 0.3s ease;
}

.screen.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Ultra Modern Search & Filters
   ============================================ */

.search-section {
    padding: 16px;
    background: var(--white);
    position: sticky;
    top: 64px;
    z-index: 90;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Modern Search Bar with Glassmorphism */
.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 14px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-bar:focus-within {
    background: white;
    border-color: #8b5cf6;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.search-bar i {
    color: #8b5cf6;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.search-bar:focus-within i {
    transform: scale(1.1);
}

.search-bar input {
    flex: 1;
    border: none;
    background: none;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    font-weight: 500;
}

.search-bar input::placeholder {
    color: var(--text-light);
    font-weight: 500;
}

/* Modern Filter Chips */
.filter-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px;
}

.filter-chips::-webkit-scrollbar {
    display: none;
}

.chip {
    padding: 10px 20px;
    border-radius: 14px;
    border: 2px solid transparent;
    background: rgba(139, 92, 246, 0.08);
    color: #2D3436;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.chip:hover:not(.active) {
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
    color: #2D3436;
}

.filter-chips .chip.active,
.chip.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
    transform: translateY(-2px);
}

/* Ensure text color inheritance */
.filter-chips .chip.active *,
.chip.active * {
    color: #ffffff !important;
}

/* ============================================
   Ultra Modern Package Cards - Dribbble Inspired
   ============================================ */

.packages-grid {
    padding: 16px;
    display: grid;
    gap: 20px;
}

.package-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 50%, #a78bfa 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(139, 92, 246, 0.1);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:active {
    transform: translateY(-4px) scale(1.01);
}

/* Modern Package Image Carousel */
.package-image-carousel {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.package-image-carousel .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: scale(1.1);
}

.package-image-carousel .carousel-image.active {
    opacity: 1;
    transform: scale(1);
}

.package-image-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

/* Modern Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.carousel-indicators .indicator.active {
    width: 28px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Modern Badge with Glassmorphism */
.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #8b5cf6;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.package-badge i {
    color: #FFD700;
    font-size: 0.9rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Modern Package Info Section */
.package-info {
    padding: 20px;
}

.package-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.package-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.package-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.08);
    border-radius: 8px;
    font-weight: 600;
}

.package-meta span i {
    color: #8b5cf6;
    font-size: 0.95rem;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Modern Package Footer */
.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #8b5cf6;
    letter-spacing: -1px;
}

/* Modern View Button */
.btn-view {
    padding: 12px 24px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-view:hover::before {
    left: 100%;
}

.btn-view:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.btn-view:active {
    transform: translateX(2px) scale(0.98);
}

.btn-view i {
    transition: transform 0.3s ease;
}

.btn-view:hover i {
    transform: translateX(4px);
}

/* ============================================
   Package Detail
   ============================================ */

.detail-container {
    padding-bottom: 20px;
}

.detail-carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.detail-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--dark);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav.prev {
    left: 12px;
}

.carousel-nav.next {
    right: 12px;
}

.carousel-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.detail-content {
    padding: 20px;
}

.detail-header {
    margin-bottom: 16px;
}

.detail-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-rating i {
    color: var(--accent);
}

.detail-price {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.detail-price .price-value {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    display: block;
}

.detail-price .price-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

.detail-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-item span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.detail-description {
    margin-bottom: 24px;
}

.detail-description h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.detail-description p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Customization Options
   ============================================ */

.customization-section {
    margin-top: 24px;
}

.customization-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.custom-option {
    background: var(--bg);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-header strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.option-header span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-control button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-control button:active {
    transform: scale(0.9);
    background: var(--primary);
    color: white;
}

.quantity-control span {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    color: var(--dark);
}

/* ============================================
   Ultra Modern Add-ons - Dribbble Inspired
   ============================================ */

.addons-container {
    padding: 20px;
}

.addons-header {
    margin-bottom: 24px;
    text-align: center;
}

.addons-header h2 {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.addons-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Modern Category Tabs */
.category-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    padding: 12px 24px;
    border-radius: 16px;
    border: 2px solid transparent;
    background: rgba(139, 92, 246, 0.08);
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.category-tab.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.category-tab:hover:not(.active) {
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.addon-category {
    display: none;
}

.addon-category.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Addon Item Cards */
.addon-item {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.addon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6 0%, #7c3aed 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.addon-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(139, 92, 246, 0.2);
}

.addon-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.addon-item.selected {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    box-shadow: 
        0 8px 24px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.1);
}

.addon-item.selected::before {
    transform: scaleY(1);
}

.addon-info {
    flex: 1;
}

.addon-info h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.addon-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}

.addon-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: #8b5cf6;
    letter-spacing: -0.5px;
}

/* Modern Add Button */
.btn-add-addon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 2px solid #8b5cf6;
    background: white;
    color: #8b5cf6;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.btn-add-addon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn-add-addon i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-add-addon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.addon-item.selected .btn-add-addon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.addon-item.selected .btn-add-addon i {
    transform: rotate(45deg);
}

.addon-item.selected .btn-add-addon:hover {
    transform: scale(1.1) rotate(90deg);
}

/* ============================================
   Booking Form
   ============================================ */

.booking-container {
    padding: 20px;
}

.booking-container h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 24px 0 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.time-slot {
    padding: 14px;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot.available {
    background: white;
    color: var(--text);
}

.time-slot.available:active {
    transform: scale(0.95);
}

.time-slot.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.time-slot.booked {
    background: #F5F5F5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.loading-slots {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

/* ============================================
   Modern Checkout Summary with Icons
   ============================================ */

.checkout-container {
    padding: 20px;
}

.checkout-container h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.summary-card {
    background: var(--white);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.summary-section {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-section h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-section h3 i {
    color: #8b5cf6;
    font-size: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    gap: 12px;
}

.summary-item span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.summary-item span:first-child i {
    color: #8b5cf6;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.summary-item span:last-child {
    font-weight: 700;
    color: var(--dark);
}

.summary-item.discount {
    color: var(--success);
}

.summary-item.discount span:first-child i {
    color: var(--success);
}

.summary-item.discount span:last-child {
    color: var(--success);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 14px;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.promo-section {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.promo-section .form-input {
    flex: 1;
}

.btn-apply {
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--secondary);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-apply:active {
    transform: scale(0.95);
}

.booking-info-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.info-row i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-row strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-row span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   Bottom Navigation
   ============================================ */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: var(--white);
    border-top: 1px solid #E0E0E0;
    display: flex;
    justify-content: space-around;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    border: none;
    background: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.nav-item i {
    font-size: 1.3rem;
}

.nav-item span {
    font-size: 0.7rem;
    font-weight: 600;
}

.nav-item.active {
    color: var(--primary);
}

/* ============================================
   Bottom Action Bar
   ============================================ */

.bottom-action-bar {
    position: fixed;
    bottom: 68px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: var(--white);
    border-top: 1px solid #E0E0E0;
    padding: 12px 16px;
    z-index: 98;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

.action-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-info .price-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.price-info .price-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

.btn-continue {
    flex: 1;
    padding: 14px 24px;
    border-radius: 28px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-continue:active {
    transform: scale(0.98);
}

.btn-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   Toast Notification
   ============================================ */

.toast-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--dark);
    color: white;
    padding: 14px 20px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-notification i {
    font-size: 1.2rem;
    color: var(--success);
}

/* ============================================
   Loading Overlay
   ============================================ */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
}

.loading-overlay.show {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay p {
    color: white;
    font-weight: 600;
}

/* ============================================
   Desktop Responsive
   ============================================ */

/* Tablet Portrait (482px - 767px) */
@media (min-width: 482px) and (max-width: 767px) {
    .app-container {
        max-width: 100%;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .package-card {
        font-size: 0.9rem;
    }
    
    .package-image-carousel {
        height: 200px;
    }
    
    .package-info h3 {
        font-size: 1.1rem;
    }
    
    .search-section {
        padding: 16px 20px;
    }
    
    .filter-chips {
        gap: 12px;
    }
    
    .detail-carousel-container {
        height: 340px;
    }
    
    .detail-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .addon-category {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .addon-item {
        padding: 18px;
    }
    
    .booking-container,
    .checkout-container,
    .addons-container {
        padding: 20px 24px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    body {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .app-container {
        max-width: 100%;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    
    .app-main {
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 0;
        padding-bottom: 20px;
    }
    
    .main-content {
        overflow-y: auto;
        max-height: calc(100vh - 64px);
    }
    
    .screen {
        grid-column: 1;
    }
    
    .desktop-sidebar {
        grid-column: 2;
        background: var(--bg);
        border-left: 1px solid #E0E0E0;
        padding: 20px;
        position: sticky;
        top: 64px;
        height: calc(100vh - 64px);
        overflow-y: auto;
    }
    
    .bottom-nav,
    .bottom-action-bar {
        display: none;
    }
    
    .desktop-summary {
        background: var(--white);
        border-radius: var(--radius);
        padding: 20px;
        box-shadow: var(--shadow);
        position: sticky;
        top: 20px;
    }
    
    .desktop-summary h3 {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 16px;
    }
    
    .desktop-summary .summary-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #E0E0E0;
        font-size: 0.9rem;
    }
    
    .desktop-summary .summary-total {
        display: flex;
        justify-content: space-between;
        padding: 16px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        border-radius: var(--radius-sm);
        color: white;
        font-size: 1.2rem;
        font-weight: 900;
        margin: 16px 0;
    }
    
    .desktop-summary .btn-continue {
        width: 100%;
        margin-top: 16px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .package-image-carousel {
        height: 200px;
    }
    
    .detail-carousel-container {
        height: 350px;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .search-section {
        position: static;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .app-container {
        max-width: 100%;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    
    .app-main {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 0;
        padding-bottom: 20px;
    }
    
    .main-content {
        overflow-y: auto;
        max-height: calc(100vh - 64px);
    }
    
    .screen {
        grid-column: 1;
    }
    
    .desktop-sidebar {
        grid-column: 2;
        background: var(--bg);
        border-left: 1px solid #E0E0E0;
        padding: 20px;
        position: sticky;
        top: 64px;
        height: calc(100vh - 64px);
        overflow-y: auto;
    }
    
    .bottom-nav,
    .bottom-action-bar {
        display: none;
    }
    
    .desktop-summary {
        background: var(--white);
        border-radius: var(--radius);
        padding: 24px;
        box-shadow: var(--shadow);
        position: sticky;
        top: 20px;
    }
    
    .desktop-summary h3 {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 20px;
    }
    
    .desktop-summary .summary-item {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #E0E0E0;
    }
    
    .desktop-summary .summary-total {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        border-radius: var(--radius-sm);
        color: white;
        font-size: 1.3rem;
        font-weight: 900;
        margin: 20px 0;
    }
    
    .desktop-summary .btn-continue {
        width: 100%;
        margin-top: 20px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .detail-carousel-container {
        height: 400px;
    }
    
    .time-slots {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .search-section {
        position: static;
    }
}

@media (min-width: 1400px) {
    .app-container {
        max-width: 100%;
    }
    
    .app-main {
        grid-template-columns: 1fr 450px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1600px) {
    .packages-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ============================================
   Desktop Progress Steps
   ============================================ */

.progress-steps-desktop {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    transition: var(--transition);
}

.progress-step.active {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary);
}

.progress-step .step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E0E0E0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.progress-step.active .step-circle {
    background: var(--primary);
    color: white;
}

.progress-step.completed .step-circle {
    background: var(--success);
    color: white;
}

.progress-step span {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.progress-step.active span {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 767px) {
    .desktop-sidebar {
        display: none;
    }
    
    .main-content {
        width: 100%;
    }
    
    .app-main {
        display: block;
    }
}

/* Small Mobile (< 482px) */
@media (max-width: 481px) {
    .package-card {
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .package-image-carousel {
        height: 200px;
    }
    
    .package-info {
        padding: 16px;
    }
    
    .package-info h3 {
        font-size: 1.05rem;
    }
    
    .package-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .package-meta span {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .price-value {
        font-size: 1.3rem;
    }
    
    .btn-view {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .detail-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-title h1 {
        font-size: 1rem;
    }
    
    .header-title p {
        font-size: 0.7rem;
    }
    
    /* Adjust header actions for small screens */
    .header-actions {
        gap: 6px;
    }
    
    .btn-header-action, .btn-cart, .btn-back {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    /* Modern addon cards on mobile */
    .addon-item {
        padding: 16px;
        border-radius: 16px;
    }
    
    .addon-info h4 {
        font-size: 0.95rem;
    }
    
    .addon-info p {
        font-size: 0.8rem;
    }
    
    .addon-price {
        font-size: 1.05rem;
    }
    
    .btn-add-addon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    /* Search and filters on mobile */
    .search-bar {
        padding: 12px 16px;
        border-radius: 14px;
    }
    
    .chip {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

.slide-up {
    animation: slideUp 0.3s ease;
}


/* ============================================
   Floating Action Buttons (FAB)
   ============================================ */

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease;
}

.fab:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.fab:active {
    transform: translateY(-2px) scale(1.05);
}

.fab-history {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.fab-history:hover {
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
}

.fab-help {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.fab-help:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 2px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h2 i {
    color: var(--primary);
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--light);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--danger);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body .form-group label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.modal-body .form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-body .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.btn-modal-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .fab {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
    
    .modal-content {
        margin: 20px;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .fab-container {
        bottom: 25px;
        right: 25px;
    }
}

/* Desktop - adjust for sidebar */
@media (min-width: 1200px) {
    .fab-container {
        right: calc((100vw - 1200px) / 2 + 30px);
    }
}
