/* Premium UI Components - World Class Features */

/* ============================================
   FLOATING CART (Sticky)
   ============================================ */

.floating-cart-premium {
    position: fixed;
    bottom: 1.5em;
    right: 1.5em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1em 1.5em;
    border-radius: 50px;
    box-shadow: 0 0.5em 2em rgba(235, 23, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    min-width: 10em;
}

.floating-cart-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0.75em 3em rgba(235, 23, 0, 0.5);
}

.floating-cart-premium .cart-icon {
    font-size: 1.5rem;
    position: relative;
}

.floating-cart-premium .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--text-primary);
    width: 1.25em;
    height: 1.25em;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-cart-premium .cart-content {
    display: flex;
    flex-direction: column;
}

.floating-cart-premium .cart-label {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

.floating-cart-premium .cart-amount {
    font-size: 1.125rem;
    font-weight: 700;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 1.5em;
    left: 1.5em;
    width: 3em;
    height: 3em;
    background: var(--bg-primary);
    border: 2px solid var(--border-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.back-to-top svg {
    width: 1.25em;
    height: 1.25em;
}

/* ============================================
   PROMOTIONAL CAROUSEL
   ============================================ */

.promo-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
}

.promo-slide {
    min-width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1.75em 2em;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.promo-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 20em;
    height: 20em;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.promo-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.promo-slide h2 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 0.4em;
    line-height: 1.2;
}

.promo-slide p {
    font-size: 0.9375em;
    opacity: 0.95;
    margin-bottom: 0.75em;
}

.promo-slide .promo-code {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(0.625em);
    padding: 0.5em 1em;
    border-radius: 0.5em;
    font-size: 0.875em;
    font-weight: 700;
    border: 0.125em dashed rgba(255, 255, 255, 0.5);
    letter-spacing: 0.125em;
}

.carousel-dots {
    display: flex;
    gap: 0.5em;
    justify-content: center;
    padding: 0.75em 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.carousel-dot {
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background: var(--border-medium);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    width: 1.5em;
    border-radius: 0.25em;
    background: var(--primary);
}

/* ============================================
   TESTIMONIALS SECTION - Story + Cards Layout
   ============================================ */

.testimonials-section {
    padding: 3em 0 4em 0;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
}

.testimonials-section h2 {
    font-size: 1.75em;
    font-weight: 700;
    color: #202124;
    margin-bottom: 0.5em;
}

.testimonials-subtitle {
    font-size: 1em;
    color: #5f6368;
    margin-bottom: 2.5em;
    font-weight: 400;
}

/* Customer Story Section */
.customer-story-section {
    display: grid;
    grid-template-columns: 31.25em 1fr;
    gap: 2.5em;
    align-items: center;
    margin-bottom: 3em;
    background: white;
    padding: 2.5em;
    border-radius: 1.25em;
    box-shadow: 0 0.125em 0.5em rgba(0, 0, 0, 0.04), 0 0.25em 0.75em rgba(0, 0, 0, 0.02);
}

.story-image-wrapper {
    position: relative;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.12);
}

.story-image {
    width: 100%;
    height: 25em;
    object-fit: cover;
    display: block;
}

.story-content h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: #202124;
    margin-bottom: 1em;
    line-height: 1.3;
}

.story-content p {
    font-size: 1em;
    line-height: 1.7;
    color: #3c4043;
    margin-bottom: 1em;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    margin-top: 1.75em;
    padding-top: 1.75em;
    border-top: 1px solid #F1F3F4;
}

.story-stat-item {
    text-align: center;
}

.story-stat-item .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5em;
    display: block;
}

.story-stat-item .stat-text {
    font-size: 0.9375rem;
    color: #5f6368;
}

.story-stat-item strong {
    display: block;
    font-size: 1.125rem;
    color: #202124;
    font-weight: 700;
    margin-bottom: 0.25em;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
}

.testimonial-card {
    background: white;
    padding: 1.75em;
    border-radius: 1em;
    box-shadow: 0 2px 0.25em rgba(0, 0, 0, 0.06), 0 0.25em 0.375em rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.1), 0 0.25em 0.5em rgba(0, 0, 0, 0.06);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1em;
}

.testimonial-avatar-img {
    width: 3.5em;
    height: 3.5em;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.1);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-info .author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 0.25em;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating .star {
    color: #FBBC04;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #3c4043;
    margin: 0;
    flex: 1;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1em;
    border-top: 1px solid #F1F3F4;
    font-size: 0.8125rem;
}

.meta-location {
    color: #5f6368;
}

.meta-verified {
    color: #0E8345;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 75em) {
    .customer-story-section {
        grid-template-columns: 25em 1fr;
        gap: 2.5em;
        padding: 2.5em;
    }

    .story-image {
        height: 21.875em;
    }
}

@media (max-width: 60.5em) {
    .customer-story-section {
        grid-template-columns: 1fr;
        gap: 2em;
        padding: 2em;
    }

    .story-image {
        height: 18.75em;
    }

    .story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1em;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25em;
    }
}

@media (max-width: 40em) {
    .testimonials-section {
        padding: 3.75em 0 5em 0;
    }

    .testimonials-section h2 {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        margin-bottom: 2.5em;
    }

    .customer-story-section {
        padding: 1.5em;
        margin-bottom: 3em;
    }

    .story-content h3 {
        font-size: 1.5rem;
    }

    .story-content p {
        font-size: 1rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 1.25em;
    }

    .testimonial-card {
        padding: 1.5em;
    }
}

/* ============================================
   STATS COUNTER
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4em 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3em;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75em;
    display: block;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 500;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1em;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   EXPERIENCE SECTION - Visual Journey
   ============================================ */

.experience-section {
    padding: 5em 0 6.25em 0;
    background: white;
}

.experience-header {
    margin-bottom: 4em;
}

.experience-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #202124;
    margin-bottom: 1em;
}

.experience-subtitle {
    font-size: 1.25rem;
    color: #5f6368;
    font-weight: 400;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin-bottom: 4em;
}

.experience-card {
    background: white;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.04), 0 0.25em 0.75em rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0.75em 2em rgba(0, 0, 0, 0.1), 0 0.25em 1em rgba(0, 0, 0, 0.06);
}

.experience-image-wrapper {
    position: relative;
    width: 100%;
    height: 15em;
    overflow: hidden;
}

.experience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover .experience-image {
    transform: scale(1.08);
}

.experience-content {
    padding: 2em 1.75em;
    text-align: center;
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1em;
    display: block;
}

.experience-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #202124;
    margin-bottom: 0.75em;
}

.experience-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5f6368;
    margin: 0;
}

/* Call to Action */
.experience-cta {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    padding: 3em 3.5em;
    border-radius: 1.25em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    box-shadow: 0 0.5em 1.5em rgba(255, 0, 0, 0.2);
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5em;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.btn-large {
    padding: 18px 2.5em;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    background: white;
    color: #FF0000;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.75em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.btn-large:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.15);
}

.btn-large svg {
    transition: transform 0.3s;
}

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

/* Responsive */
@media (max-width: 64em) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em;
    }

    .experience-grid .experience-card:last-child {
        grid-column: 1 / -1;
        max-width: 37.5em;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 48em) {
    .experience-section {
        padding: 3.75em 0 5em 0;
    }

    .experience-header h2 {
        font-size: 2rem;
    }

    .experience-subtitle {
        font-size: 1.125rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.25em;
    }

    .experience-grid .experience-card:last-child {
        grid-column: 1;
        max-width: none;
    }

    .experience-cta {
        flex-direction: column;
        text-align: center;
        padding: 2.5em 2em;
    }

    .cta-content h3 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 30em) {
    .experience-image-wrapper {
        height: 12.5em;
    }

    .experience-content {
        padding: 1.5em 1.25em;
    }

    .experience-content h3 {
        font-size: 1.25rem;
    }

    .experience-cta {
        padding: 2em 1.5em;
    }
}

/* ============================================
   TRUST BADGES - Modern Premium Design
   ============================================ */

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
    padding: 0;
    margin: 0;
}

.trust-badge {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 1.25em;
    padding: 2.5em 2em;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0.0625em solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 0.125em 0.5em rgba(0, 0, 0, 0.03), 0 0.25em 1em rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.25em;
    background: linear-gradient(90deg, #FF0000, #FF4444);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover::before {
    transform: scaleX(1);
}

.trust-badge:hover {
    transform: translateY(-0.5em);
    box-shadow: 0 0.75em 2em rgba(0, 0, 0, 0.08), 0 0.5em 1.5em rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 0, 0, 0.1);
}

.badge-icon {
    font-size: 3.5em;
    line-height: 1;
    margin-bottom: 0.4em;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: grayscale(0.3);
}

.trust-badge:hover .badge-icon {
    transform: scale(1.15) rotate(5deg);
    filter: grayscale(0);
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.badge-title {
    font-size: 1.125em;
    font-weight: 700;
    color: #202124;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.badge-desc {
    font-size: 0.9375em;
    color: #5f6368;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 64em) {
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em;
    }
}

@media (max-width: 40em) {
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.25em;
    }

    .trust-badge {
        padding: 2em 1.5em;
    }

    .badge-icon {
        font-size: 3em;
    }

    .badge-title {
        font-size: 1.0625em;
    }

    .badge-desc {
        font-size: 0.875em;
    }
}

/* ============================================
   PREMIUM RESTAURANT CARDS - Material Design Inspired
   ============================================ */

.restaurant-card-premium {
    position: relative;
    background: var(--bg-primary);
    border-radius: 1em;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    box-shadow: 0 2px 0.25em rgba(0, 0, 0, 0.06), 0 0.25em 0.375em rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.restaurant-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.1), 0 0.25em 0.5em rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
}

.restaurant-card-premium .card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio for better readability */
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
}

.restaurant-card-premium .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.restaurant-card-premium:hover .card-image {
    transform: scale(1.05);
}

/* Favorite Button - Material Design */
.restaurant-card-premium .favorite-btn {
    position: absolute;
    top: 0.75em;
    right: 0.75em;
    width: 2.5em;
    height: 2.5em;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.15);
}

.restaurant-card-premium .favorite-btn svg {
    width: 1.25em;
    height: 1.25em;
    color: #5f6368;
    transition: all 0.2s;
}

.restaurant-card-premium .favorite-btn:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 0.25em 0.75em rgba(0, 0, 0, 0.2);
}

.restaurant-card-premium .favorite-btn.active {
    background: var(--primary);
}

.restaurant-card-premium .favorite-btn.active svg {
    fill: white;
    stroke: white;
}

/* Badge Styles - Material Design */
.restaurant-card-premium .card-badge {
    position: absolute;
    top: 0.75em;
    left: 0.75em;
    padding: 0.375em 0.75em;
    border-radius: 0.25em;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.25em;
}

.restaurant-card-premium .card-badge.badge-success {
    background: #0E8345;
    color: white;
}

.restaurant-card-premium .card-badge.badge-warning {
    background: #FFA000;
    color: white;
}

.restaurant-card-premium .card-badge.badge-info {
    background: #1976D2;
    color: white;
}

/* Card Content - Material Design Typography */
.restaurant-card-premium .card-content {
    padding: 1.25em;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.restaurant-card-premium .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75em;
    margin-bottom: 0.25em;
}

.restaurant-card-premium .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #202124;
    line-height: 1.4;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurant-card-premium .card-rating {
    display: flex;
    align-items: center;
    gap: 0.25em;
    padding: 0.25em 0.5em;
    background: #F8F9FA;
    border-radius: 0.25em;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
    color: #5f6368;
}

.restaurant-card-premium .card-rating.high-rating {
    background: #E8F5E9;
    color: #2E7D32;
}

.restaurant-card-premium .card-rating .star {
    color: #FBBC04;
    font-size: 0.875rem;
}

.restaurant-card-premium .rating-value {
    font-weight: 600;
}

.restaurant-card-premium .card-subtitle {
    font-size: 0.875rem;
    color: #5f6368;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.restaurant-card-premium .card-info {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.875rem;
    color: #5f6368;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.5em;
    border-top: 1px solid #F1F3F4;
}

.restaurant-card-premium .info-item {
    display: flex;
    align-items: center;
    gap: 0.25em;
    font-weight: 400;
    color: #5f6368;
}

.restaurant-card-premium .info-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    color: #80868b;
}

.restaurant-card-premium .card-divider {
    color: #DADCE0;
    font-size: 0.75rem;
    margin: 0 2px;
}

/* Responsive adjustments */
@media (max-width: 48em) {
    .restaurant-card-premium .card-content {
        padding: 1em;
    }

    .restaurant-card-premium .card-title {
        font-size: 1rem;
    }

    .restaurant-card-premium .card-info {
        font-size: 0.8125rem;
    }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
    position: fixed;
    top: 5em;
    right: 1.5em;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
    max-width: 380px;
}

.toast {
    background: var(--bg-primary);
    padding: 1em 1.25em;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1em;
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 0.25em solid var(--primary);
}

.toast.success {
    border-left-color: var(--success-color);
}

.toast.error {
    border-left-color: var(--danger-color);
}

.toast.warning {
    border-left-color: var(--warning-color);
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25em 0;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.toast-close {
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all 0.2s;
}

.toast-close:hover {
    background: var(--border-medium);
    color: var(--text-primary);
}

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

@media (max-width: 48em) {
    .floating-cart-premium {
        bottom: 1em;
        right: 1em;
        left: 1em;
        justify-content: center;
    }

    .back-to-top {
        bottom: 5em;
        left: 1em;
    }

    .promo-slide {
        padding: 2em 1.5em;
    }

    .promo-slide h2 {
        font-size: 1.75rem;
    }

    .app-download-content {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .toast-container {
        right: 1em;
        left: 1em;
        max-width: none;
    }
}