/* ====== GRAB N GO SPECIALS STYLING ====== */

:root {
    --primary-red: #cc0000;
    --secondary-orange: #ff6b35;
    --accent-gold: #ffd700;
    --warm-orange: #f7931e;
    --dark-red: #8b0000;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: rgba(0, 0, 0, 0.8);
    --text-light: rgba(0, 0, 0, 0.6);
    
    --shadow-light: 0 8px 25px rgba(204, 0, 0, 0.15);
    --shadow-medium: 0 15px 35px rgba(204, 0, 0, 0.25);
    --shadow-heavy: 0 25px 50px rgba(204, 0, 0, 0.35);
    
    --border-radius-small: 15px;
    --border-radius-medium: 25px;
    --border-radius-large: 30px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Section styling with dynamic background */
.today {
    padding: 5rem 0 0 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, var(--white) 0%, var(--light-gray) 25%, var(--white) 50%, var(--light-gray) 75%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    margin-bottom: 0;
}

.today::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(204, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.today::after {
    content: '🍕';
    position: absolute;
    font-size: 8rem;
    opacity: 0.02;
    top: 10%;
    right: 10%;
    pointer-events: none;
    z-index: 0;
}



.grabngo-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(45deg, var(--secondary-orange), var(--warm-orange), var(--accent-gold), var(--warm-orange), var(--secondary-orange));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}



/* Star icon styling removed from title */



/* Swiper container styling */
.specials-swiper {
    padding-bottom: 0;
    overflow: visible;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.specials-swiper .swiper-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.specials-swiper .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #cc0000, #ff4444);
    opacity: 0.4;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.specials-swiper .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.specials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.specials-swiper .swiper-pagination-bullet-active::before {
    width: 8px;
    height: 8px;
}

/* Navigation buttons styling removed */

/* Special item card styling with glass morphism */
.special-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 560px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.special-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(204, 0, 0, 0.08) 0%, 
        rgba(255, 107, 53, 0.12) 20%,
        rgba(255, 215, 0, 0.06) 40%,
        transparent 60%, 
        rgba(255, 107, 53, 0.08) 80%,
        rgba(204, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    border-radius: var(--border-radius-large);
}

.special-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(255, 215, 0, 0.15) 0deg,
        rgba(255, 107, 53, 0.12) 72deg,
        rgba(204, 0, 0, 0.1) 144deg,
        rgba(255, 215, 0, 0.08) 216deg,
        rgba(255, 107, 53, 0.15) 288deg,
        rgba(255, 215, 0, 0.15) 360deg
    );
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.special-item:hover::before {
    opacity: 1;
}

.special-item:hover::after {
    opacity: 0.3;
}

.special-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Image section at top of card */
.special-image {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    margin: 12px 12px 0 12px;
    border-radius: 24px;
}

.special-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
    transition: all 0.4s ease;
}

.special-item:hover .special-image::after {
    background: linear-gradient(
        180deg,
        rgba(204, 0, 0, 0.05) 0%,
        transparent 60%,
        rgba(204, 0, 0, 0.1) 100%
    );
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-bounce);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    transform-origin: center;
    border-radius: 24px;
}

.special-item:hover .special-image img {
    transform: scale(1.08);
}



/* Content section below image */
.special-content {
    position: relative;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    flex: 1;
    background: #ffffff;
}

.special-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.special-item:hover .special-title {
    transform: translateY(-5px) scale(1.02);
}



.special-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    font-weight: 400;
    flex: 1;
}

.special-item:hover .special-description {
    color: rgba(0, 0, 0, 0.8);
}

.special-price {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 1rem;
    display: inline-block;
    letter-spacing: -0.01em;
}

.special-price::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-orange), var(--accent-gold), var(--secondary-orange));
    border-radius: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Price currency symbol removed to prevent duplication - JavaScript already includes $ */

.special-item:hover .special-price::after {
    width: 110%;
}

/* Price hover effect for currency symbol removed */



.special-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6366f1;
    font-weight: 600;
    background: #e0e7ff;
    padding: 0.35rem 0.8rem;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.special-item:hover .special-category {
    background: #c7d2fe;
    color: #4f46e5;
}

/* No specials / Error states */
.special-item.no-specials,
.special-item.error {
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px dashed rgba(204, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.special-item.no-specials::before,
.special-item.error::before {
    content: '🍕';
    font-size: 6rem;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    animation: float 3s ease-in-out infinite;
}

.special-item.no-specials h3,
.special-item.error h3 {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 1;
    position: relative;
    background: linear-gradient(45deg, #cc0000, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.special-item.no-specials p,
.special-item.error p {
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    font-size: 1.1rem;
    z-index: 1;
    position: relative;
}

.special-item.error {
    border-color: rgba(255, 68, 68, 0.5);
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.special-item.error::before {
    content: '⚠️';
    color: #ff4444;
}

.special-item.error h3 {
    background: linear-gradient(45deg, #ff6b6b, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive design for all devices */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .today {
        padding: 6rem 0 0 0;
        min-height: 80vh;
        margin-bottom: 0;
    }
    
    .grabngo-title {
        font-size: clamp(3rem, 6vw, 5rem);
        margin-bottom: 4rem;
    }
    
    .special-item {
        height: 520px;
    }
    
    .special-image {
        height: 360px;
    }
    
    .special-image img {
        object-fit: cover;
        object-position: center;
    }
    
    .special-content {
        padding: 2.5rem;
    }
    
    .special-title {
        font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    }
    
    .special-price {
        color: #dc2626;
        font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    }
}

/* Desktop (1024px to 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .today {
        padding: 5rem 0 0 0;
        min-height: 70vh;
        margin-bottom: 0;
    }
    
    .grabngo-title {
        font-size: clamp(2.8rem, 5vw, 4.5rem);
        margin-bottom: 3rem;
    }
    
    .special-item {
        height: 480px;
    }
    
    .special-image {
        height: 240px;
    }
    
    .special-content {
        padding: 2rem;
    }
    
    .special-title {
        font-size: clamp(1.4rem, 2.5vw, 1.7rem);
    }
    
    .special-price {
        font-size: clamp(1.6rem, 3vw, 2rem);
    }
}

/* Tablet (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .today {
        padding: 6rem 0 0 0;
        min-height: 90vh;
        margin-bottom: 0;
    }
    
    .grabngo-title {
        font-size: clamp(2.5rem, 4.5vw, 3.5rem);
        margin-bottom: 4rem;
    }
    
    .special-item {
        height: 450px;
    }
    
    .special-image {
        height: 230px;
        border-radius: 22px 22px 0 0;
    }
    
    .special-image img {
        object-fit: contain;
        object-position: center;
        border-radius: 22px 22px 0 0;
    }
    
    .special-content {
        padding: 1.8rem;
        border-radius: 0 0 22px 22px;
    }
    
    .special-title {
        font-size: clamp(1.3rem, 2.3vw, 1.6rem);
    }
    
    .special-description {
        font-size: 0.92rem;
        margin-bottom: 1.1rem;
    }
    
    .special-price {
        font-size: clamp(1.5rem, 2.8vw, 1.8rem);
    }
    
    .special-category {
        font-size: 0.78rem;
        padding: 0.4rem 1.1rem;
    }
}

/* Small Tablet/Large Phone (640px to 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    .today {
        padding: 4rem 0 0 0;
        min-height: 80vh;
        margin-bottom: 0;
    }
    
    .grabngo-title {
        font-size: clamp(2.2rem, 4vw, 3rem);
        margin-bottom: 3.5rem;
    }
    
    .special-item {
        height: 420px;
    }
    
    .special-image {
        height: 220px;
        border-radius: 20px 20px 0 0;
    }
    
    .special-content {
        padding: 1.5rem;
        border-radius: 0 0 20px 20px;
    }
    
    .special-title {
        font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    }
    
    .special-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .special-price {
        font-size: clamp(1.4rem, 2.6vw, 1.7rem);
    }
    
    .special-category {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
}

/* Mobile Phones (481px to 639px) */
@media (min-width: 481px) and (max-width: 639px) {
    .today {
        padding: 3rem 0 0 0;
        margin-bottom: 0;
        min-height: 70vh;
    }
    
    .grabngo-title {
        font-size: clamp(2rem, 3.8vw, 2.5rem);
        margin-bottom: 2.5rem;
    }
    
    .specials-swiper {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .specials-swiper .swiper-pagination {
        bottom: -1rem;
        margin-bottom: 0;
    }
    
    .special-item {
        height: 360px;
        border-radius: 18px;
    }
    
    .special-image {
        height: 180px;
        border-radius: 18px 18px 0 0;
    }
    
    .special-content {
        padding: 1.3rem;
        border-radius: 0 0 18px 18px;
    }
    
    .special-title {
        font-size: clamp(1.15rem, 2.1vw, 1.4rem);
        margin-bottom: 0.7rem;
    }
    
    .special-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .special-price {
        font-size: clamp(1.3rem, 2.4vw, 1.6rem);
        margin-bottom: 0.6rem;
    }
    
    .special-category {
        font-size: 0.72rem;
        padding: 0.32rem 0.9rem;
    }
}

/* Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .today {
        padding: 3rem 0 0 0;
        margin-bottom: 0;
        min-height: 60vh;
    }
    
    .grabngo-title {
        font-size: clamp(1.8rem, 3.5vw, 2.2rem);
        margin-bottom: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .specials-swiper {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .specials-swiper .swiper-pagination {
        bottom: -1.5rem;
        margin-bottom: 0;
    }
    
    /* Optimized for 2 images per row on mobile */
    .special-item {
        height: 380px;
        border-radius: 12px;
        box-shadow: 
            0 2px 12px rgba(0, 0, 0, 0.06),
            0 1px 3px rgba(0, 0, 0, 0.08);
    }
    
    .special-image {
        height: 180px;
        margin: 8px 8px 0 8px;
        border-radius: 18px;
        overflow: hidden;
    }
    
    .special-image img {
        object-fit: cover;
        object-position: center;
        border-radius: 18px;
        width: 100%;
        height: 100%;
    }
    
    .special-content {
        padding: 1rem;
    }
    
    .special-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .special-description {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .special-price {
        color: #dc2626;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .special-category {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
        border-radius: 8px;
        margin-bottom: 0.4rem;
    }
    
    .special-title {
        font-size: clamp(1rem, 2vw, 1.2rem);
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .special-description {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .special-price {
        font-size: clamp(1.2rem, 2.2vw, 1.4rem);
        margin-bottom: 0.5rem;
    }
    
    .special-category {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        letter-spacing: 1px;
    }
}
    
    .grabngo-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    /* Optimized for 2 images per row on mobile */
    .special-item {
        height: 320px;  /* Reduced height for better 2-column layout */
        border-radius: 15px;
    }
    
    .special-image {
        height: 140px;  /* Reduced image height */
        border-radius: 15px 15px 0 0;
    }
    
    .special-content {
        padding: 1rem;  /* Reduced padding */
        border-radius: 0 0 15px 15px;
    }
    
    .special-title {
        font-size: 1.1rem;  /* Slightly smaller font */
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .special-description {
        font-size: 0.8rem;  /* Smaller description */
        margin-bottom: 0.6rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;  /* Limit to 2 lines */
        line-clamp: 2;  /* Standard property for compatibility */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .special-price {
        font-size: 1.3rem;  /* Adjusted price size */
        margin-bottom: 0.5rem;
    }
    
    .special-category {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        letter-spacing: 1px;
    }

/* Extra Small Mobile Phones (max-width: 380px) */
@media (max-width: 380px) {
    .today {
        padding: 2.5rem 0 0 0;
        min-height: 55vh;
    }
    
    .grabngo-title {
        font-size: clamp(1.6rem, 3.2vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .special-item {
        height: 360px;
        border-radius: 10px;
        box-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.05),
            0 1px 2px rgba(0, 0, 0, 0.06);
    }
    
    .special-image {
        height: 170px;
        margin: 6px 6px 0 6px;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .special-image img {
        object-fit: cover;
        object-position: center;
        border-radius: 16px;
        width: 100%;
        height: 100%;
    }
    
    .special-content {
        padding: 0.8rem;
    }
    
    .special-title {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .special-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .special-price {
        color: #dc2626;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .special-category {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        border-radius: 6px;
        margin-bottom: 0.3rem;
    }
    
    .special-title {
        font-size: clamp(0.95rem, 1.8vw, 1.1rem);
        line-height: 1.1;
        margin-bottom: 0.4rem;
    }
    
    .special-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .special-price {
        color: #dc2626;
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        margin-bottom: 0.4rem;
    }
    
    .special-category {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
        letter-spacing: 0.8px;
    }
    
    .specials-swiper .swiper-pagination {
        bottom: -2rem;
    }
    
    .specials-swiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
}

/* Ultra Small Mobile Phones (max-width: 320px) */
@media (max-width: 320px) {
    .today {
        padding: 2rem 0 0 0;
        min-height: 50vh;
    }
    
    .grabngo-title {
        font-size: clamp(1.4rem, 3vw, 1.8rem);
        margin-bottom: 1.2rem;
    }
    
    .special-item {
        height: 340px;
        border-radius: 8px;
        box-shadow: 
            0 1px 8px rgba(0, 0, 0, 0.04),
            0 1px 2px rgba(0, 0, 0, 0.06);
    }
    
    .special-image {
        height: 160px;
        margin: 6px 6px 0 6px;
        border-radius: 14px;
        overflow: hidden;
    }
    
    .special-image img {
        object-fit: cover;
        object-position: center;
        border-radius: 14px;
        width: 100%;
        height: 100%;
    }
    
    .special-content {
        padding: 0.7rem;
    }
    
    .special-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .special-description {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .special-price {
        color: #dc2626;
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .special-category {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        border-radius: 4px;
        margin-bottom: 0.25rem;
    }
    
    .special-title {
        font-size: clamp(0.9rem, 1.6vw, 1rem);
        line-height: 1.05;
        margin-bottom: 0.3rem;
    }
    
    .special-description {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        line-height: 1.15;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    
    .special-price {
        font-size: clamp(1rem, 1.8vw, 1.2rem);
        margin-bottom: 0.3rem;
    }
    
    .special-category {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
        letter-spacing: 0.5px;
    }
    
    .specials-swiper .swiper-pagination {
        bottom: -2.5rem;
    }
    
    .specials-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

/* Loading animation for when specials are being fetched */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.special-item.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #ffffff 37%, #f0f0f0 63%);
    background-size: 400px 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Enhanced entrance animation removed */
.special-item {
    opacity: 1;
}



/* Stagger animation removed - static display */

/* Enhanced glow effect on hover - static version */



/* Responsive navigation arrows styling removed */
