/* Cart Module */
.cart-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(217, 63, 66, 0.2);
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    background: #ffffff;
    color: #1a202c;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-toggle-btn:hover {
    border-color: #d93f42;
    box-shadow: 0 12px 30px rgba(217, 63, 66, 0.15);
}

.cart-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff3f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d93f42;
    font-size: 0.95rem;
}

.cart-toggle-count {
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #d93f42;
    color: #fff;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mobile-cart-toggle {
    width: 100%;
    border: none;
    background: #d93f42;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10010;
}

.cart-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -20px 0 40px rgba(15, 23, 42, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 10011 !important;
    display: flex;
    flex-direction: column;
}

.cart-panel.is-visible {
    transform: translateX(0);
}

.cart-panel-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cart-panel-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-panel-footer {
    padding: 1.5rem;
    border-top: 1px solid #f1f5f9;
    border-bottom: none;
}

.cart-panel-footer {
    border-top: 1px solid #f1f5f9;
    border-bottom: none;
}

.cart-panel-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
}

.cart-panel-subtitle {
    color: #64748b;
    font-weight: 500;
}

.cart-panel-close {
    border: none;
    background: #f8fafc;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #0f172a;
}

.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #475569;
}

.cart-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff3f3;
    color: #d93f42;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cart-empty-cta {
    display: block;
    margin-top: 0.75rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-thumb {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
    background: #f8fafc;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #0f172a;
}

.cart-item-price {
    color: #d93f42;
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-weight: 700;
}

.cart-qty-value {
    min-width: 36px;
    text-align: center;
    font-weight: 600;
}

.cart-edit-btn {
    border: none;
    background: #D93F42;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cart-edit-btn:hover {
    background: #B91C1C;
}

.cart-remove-btn {
    border: none;
    background: none;
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-panel-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-panel-checkout,
.cart-panel-view {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.cart-panel-checkout {
    background: linear-gradient(135deg, #d93f42, #b91c1c);
    color: #fff;
    border: none;
    margin-bottom: 0.75rem;
}

.cart-panel-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-panel-view {
    border: 2px solid #e2e8f0;
    color: #0f172a;
    text-decoration: none;
    background: #fff;
}

.cart-panel-checkout:hover:not(:disabled),
.cart-panel-view:hover {
    transform: translateY(-2px);
}

body.cart-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .cart-panel {
        width: 100%;
        max-width: 100%;
    }
}

/* Custom CSS for Fanshy Eat Laravel Application */

/* 1980s Diner Theme CSS Variables */
:root {
    --primary-red: #860037;
    /* Dark pink */
    --secondary-red: #7b1c1f;
    /* Red */
    --accent-orange: #f26f28;
    /* Orange */
    --accent-yellow: #fee47a;
    /* Pastel yellow */
    --gray-orange: #da9b71;
    /* Gray orange */
    --accent-blue: #f26f28;
    /* Replacing old blue with Orange for consistency */
    --white: #FFFFFF;
    --black: #000000;

    /* Diner-specific variables */
    --neon-glow: 0 0 10px var(--accent-yellow), 0 0 20px var(--accent-yellow), 0 0 30px var(--accent-yellow);
    --red-glow: 0 0 10px var(--primary-red), 0 0 20px var(--primary-red);
    --checkerboard-size: 20px;
}

/* Import retro fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One:wght@400&family=Righteous&family=Orbitron:wght@400;700;900&display=swap');

/* Basic styles with diner theme */
body {
    font-family: 'Figtree', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: #ffffff;
    background-attachment: fixed;
    position: relative;
}

/* Add checkerboard pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, var(--white) 25%, transparent 25%),
        linear-gradient(-45deg, var(--white) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--white) 75%),
        linear-gradient(-45deg, transparent 75%, var(--white) 75%);
    background-size: var(--checkerboard-size) var(--checkerboard-size);
    background-position: 0 0, 0 calc(var(--checkerboard-size) / 2), calc(var(--checkerboard-size) / 2) calc(-1 * var(--checkerboard-size) / 2), calc(-1 * var(--checkerboard-size) / 2) 0;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

/* 1980s Diner Header Styles */
.header-sticky {
    background: linear-gradient(135deg, #860037 0%, #7b1c1f 100%) !important;
    box-shadow: none !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--accent-yellow) !important;
    position: relative;
}

.header-sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg,
            var(--white) 0px,
            var(--white) 10px,
            var(--black) 10px,
            var(--black) 20px);
}

.header-1 {
    padding: 15px 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Header main layout */
.header-main {
    min-height: 30px;
    position: relative;
}

/* Diner Logo styles */
.header-logo {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.header-logo img {
    /* width: 90px !important; */
    /* height: 90px !important; */
    width: auto;
    height: 100%;
    max-height: none !important;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px var(--accent-yellow));
}

/* Diner Navigation */
.header-center .nav-link {
    color: var(--white) !important;
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    font-size: 20px;
    text-decoration: none;
    padding: 12px 20px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: none !important;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header-center .nav-link:hover {
    color: var(--accent-yellow) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important;
    border-color: var(--accent-yellow);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 255, 255, 0.2), rgba(255, 215, 0, 0.25));
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px) scale(1.05);
}

.header-center .nav-link:active {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.header-center .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-blue));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.header-center .nav-link:hover::after {
    width: 100%;
}

/* Active state for current page */
.header-center .nav-link.active,
.header-center .nav-link[aria-current="page"] {
    color: var(--accent-yellow) !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 255, 255, 0.15), rgba(255, 215, 0, 0.2));
    border-color: var(--accent-yellow);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.header-center .nav-link.active::after,
.header-center .nav-link[aria-current="page"]::after {
    width: 100%;
}

/* Mobile Navigation Font */
.mobile-nav-link {
    font-family: 'Fredoka One', cursive !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-shadow: none !important;
    color: var(--white) !important;
    transition: all 0.3s ease !important;
}

.mobile-nav-link:hover {
    color: var(--accent-yellow) !important;
    text-shadow: var(--neon-glow) !important;
    transform: translateX(5px) !important;
}

/* Diner Mobile hamburger button */
.navbar-toggler {
    padding: 12px;
    border: 3px solid var(--accent-yellow) !important;
    outline: none !important;
    box-shadow: var(--neon-glow) !important;
    background: var(--accent-blue) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: var(--primary-red) !important;
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: var(--neon-glow) !important;
}

.navbar-toggler-icon {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--accent-yellow);
}

/* Diner Button Styles */
.btn {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid;
    border-radius: 8px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-accent {
    background: var(--accent-blue);
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    text-shadow: none !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:hover {
    background: var(--accent-yellow);
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Hero Section Button Enhancements */
.hero-actions .btn-accent {
    font-size: 20px;
    padding: 20px 45px;
    border-width: 4px;
    animation: pulse-glow 2s infinite;
    position: relative;
}

.hero-actions .btn-accent::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4), 0 0 20px rgba(255, 235, 59, 0.3);
    }

    50% {
        box-shadow: 0 6px 20px rgba(30, 64, 175, 0.6), 0 0 30px rgba(255, 235, 59, 0.5);
    }
}

@keyframes sparkle {

    0%,
    100% {
        transform: translateY(-50%) scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-50%) scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.btn-secondary {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--white);
    text-shadow: none !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
}

.btn-secondary::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.6s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px) scale(1.05);
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Hero Section Secondary Button */
.hero-actions .btn-secondary {
    font-size: 20px;
    padding: 20px 45px;
    border-width: 4px;
    position: relative;
}

.hero-actions .btn-secondary::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    border-width: 4px;
}

/* 1980s Diner Hero Section */
.modern-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 235, 59, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-slide {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    opacity: 0.1;
}

.hero-bg-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.hero-bg-icon:nth-child(odd) {
    animation-delay: -2s;
}

.hero-bg-icon:nth-child(even) {
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.floating-food-emojis {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.food-emoji {
    position: absolute;
    font-size: 1.5rem;
    animation: bounce 3s ease-in-out infinite;
    background: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.food-emoji:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.food-emoji:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.food-emoji:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.food-emoji:nth-child(4) {
    top: 70%;
    right: 25%;
    animation-delay: 1.5s;
}

.food-emoji:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: 2s;
}

.food-emoji:nth-child(6) {
    top: 80%;
    right: 10%;
    animation-delay: 2.5s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 60vh;
}

.hero-text {
    color: var(--white);
    z-index: 3;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: none !important;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: none !important;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 3;
}

.hero-image-container {
    position: relative;
    text-align: center;
}

.hero-food-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    animation: spin 4s linear infinite;
    background: var(--accent-yellow);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.6);
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-bg-icons {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

/* 1980s Diner Section Styling */
.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: none !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

/* Decorative lines removed per user request
.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-blue));
    border-radius: 2px;
}

.section-title::before {
    left: -120px;
}

.section-title::after {
    right: -120px;
}
*/

/* All decorative section title lines removed per user request
.menu-items-slider-section .section-title::before,
.menu-items-slider-section .section-title::after,
.products-grid-section .section-title::before,
.products-grid-section .section-title::after {
    background: repeating-linear-gradient(
        90deg,
        #1E40AF 0px,
        #1E40AF 8px,
        transparent 8px,
        transparent 16px
    ) !important;
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    width: 100px !important;
    height: 4px !important;
    border-radius: 2px !important;
    z-index: 10 !important;
}

.menu-items-slider-section .section-title::before,
.products-grid-section .section-title::before {
    left: -120px !important;
}

.menu-items-slider-section .section-title::after,
.products-grid-section .section-title::after {
    right: -120px !important;
}

.menu-items-slider-section .section-title,
.products-grid-section .section-title,
.menu-items-slider-section h1,
.products-grid-section h1,
.diner-section-red .section-title,
.diner-section-red h1 {
    position: relative !important;
}

.menu-items-slider-section .section-title::before,
.menu-items-slider-section .section-title::after,
.products-grid-section .section-title::before,
.products-grid-section .section-title::after,
.menu-items-slider-section h1::before,
.menu-items-slider-section h1::after,
.products-grid-section h1::before,
.products-grid-section h1::after,
.diner-section-red .section-title::before,
.diner-section-red .section-title::after,
.diner-section-red h1::before,
.diner-section-red h1::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    width: 100px !important;
    height: 4px !important;
    background: repeating-linear-gradient(
        90deg,
        #1E40AF 0px,
        #1E40AF 8px,
        transparent 8px,
        transparent 16px
    ) !important;
    border-radius: 2px !important;
    z-index: 1 !important;
}

.menu-items-slider-section .section-title::before,
.products-grid-section .section-title::before,
.menu-items-slider-section h1::before,
.products-grid-section h1::before,
.diner-section-red .section-title::before,
.diner-section-red h1::before {
    left: -120px !important;
}

.menu-items-slider-section .section-title::after,
.products-grid-section .section-title::after,
.menu-items-slider-section h1::after,
.products-grid-section h1::after,
.diner-section-red .section-title::after,
.diner-section-red h1::after {
    right: -120px !important;
}

.menu-items-slider-section .section-title::before,
.menu-items-slider-section .section-title::after,
.products-grid-section .section-title::before,
.products-grid-section .section-title::after,
.diner-section-red .section-title::before,
.diner-section-red .section-title::after {
    background: repeating-linear-gradient(
        90deg,
        #1E40AF 0px,
        #1E40AF 8px,
        transparent 8px,
        transparent 16px
    ) !important;
}
*/

.section-subtitle {
    font-family: 'Righteous', cursive;
    font-size: 1.2rem;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Diner Card Styles */
.catagory-product-card-2 {
    background: var(--white) !important;
    border: 4px solid var(--accent-yellow) !important;
    border-radius: 15px !important;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 0 0 2px var(--primary-red) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Removed gradient hover effect */

.catagory-product-card-2:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
    border-color: var(--accent-blue) !important;
}

.catagory-product-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.catagory-product-content h4 {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: none !important;
    transition: color 0.3s ease;
}

/* Removed text color change on hover */

/* Diner Menu Item Cards */
.menu-item-card {
    background: var(--white) !important;
    border: 3px solid var(--primary-red) !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg,
            var(--accent-yellow) 0px,
            var(--accent-yellow) 10px,
            var(--accent-blue) 10px,
            var(--accent-blue) 20px);
}

.menu-item-card:hover {
    transform: translateY(-5px) !important;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25),
        var(--red-glow) !important;
    border-color: var(--accent-yellow) !important;
}

.menu-item-card h5 {
    font-family: 'Righteous', cursive;
    color: var(--primary-red);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.menu-item-card .price {
    font-family: 'Fredoka One', cursive;
    color: var(--accent-blue);
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: none !important;
}

/* Diner Dividers - Stars Only */
.diner-divider {
    height: 6px;
    background: transparent;
    margin: 40px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diner-divider::before {
    content: '✦ ✦ ✦';
    background: var(--white);
    color: var(--primary-red);
    padding: 8px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Diner Background Sections */
.diner-section {
    background: var(--white);
    position: relative;
    padding: 60px 0;
}

.diner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 235, 59, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.diner-section-red {
    background: #ffffff !important;
    color: var(--black);
}

.diner-section-red .section-title {
    color: #1E40AF;
}

.diner-section-red .section-subtitle {
    color: #1E40AF;
}

/* Diner Checkerboard Pattern */
.checkerboard {
    background-image:
        linear-gradient(45deg, var(--white) 25%, transparent 25%),
        linear-gradient(-45deg, var(--white) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--white) 75%),
        linear-gradient(-45deg, transparent 75%, var(--white) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.checkerboard-red {
    background-image:
        linear-gradient(45deg, var(--primary-red) 25%, transparent 25%),
        linear-gradient(-45deg, var(--primary-red) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--primary-red) 75%),
        linear-gradient(-45deg, transparent 75%, var(--primary-red) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* 1980s Diner Vision Section Styling */
.diner-vision-title {
    font-family: 'Fredoka One', cursive !important;
    color: #FFEB3B !important;
    text-shadow: none !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
    position: relative;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    display: block !important;
}

/* Removed decorative line from vision title */

/* Remove decorative lines from Our Vision section */
.about-section .section-title::before,
.about-section .section-title::after {
    display: none !important;
}

.diner-vision-text {
    font-family: 'Righteous', cursive !important;
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
    color: #FFFFFF !important;
    text-shadow: none !important;
    background: #063873 !important;
    padding: 30px !important;
    border-radius: 20px !important;
    border: 3px solid var(--accent-yellow) !important;
    box-shadow: none !important;
    position: relative;
    margin-top: 20px !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
}

.diner-vision-text::before {
    content: '💭';
    position: absolute;
    top: -15px;
    left: -10px;
    background: var(--white);
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 1.2rem;
    border: 3px solid var(--accent-yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Diner Image Container */
.diner-image-container {
    position: relative;
    padding: 20px;
    background: #063873;
    border-radius: 20px;
    border: 4px solid var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.diner-about-img {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px !important;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3)) !important;
    transition: transform 0.3s ease !important;
}

.diner-image-container:hover .diner-about-img {
    transform: scale(1.05) !important;
}

.diner-image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-star {
    position: absolute;
    font-size: 1.5rem;
    animation: twinkle 2s ease-in-out infinite;
    background: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent-yellow);
}

.decoration-star:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.decoration-star:nth-child(2) {
    bottom: 20%;
    left: 15%;
    animation-delay: 0.7s;
}

.decoration-star:nth-child(3) {
    top: 60%;
    right: 20%;
    animation-delay: 1.4s;
}

@keyframes twinkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

/* Diner Certificates Styling */
.diner-certificates-title {
    font-family: 'Fredoka One', cursive !important;
    color: #FFEB3B !important;
    text-shadow: none !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    position: relative;
}

.certificate-card {
    background: #ffffff !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 30px 20px !important;
    text-align: center !important;
}

/* Removed gradient hover effect */

.certificate-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2) !important;
    border-color: #1E40AF !important;
}

.certificate-image {
    position: relative;
    z-index: 2;
    margin-bottom: 25px !important;
    margin-right: 0 !important;
    height: 120px !important;
    width: 120px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%) !important;
    border-radius: 15px !important;
    padding: 20px !important;
    margin: 0 auto 25px auto !important;
    border: 1px solid #dbeafe !important;
}

.certificate-image img {
    max-height: 80px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: grayscale(20%) !important;
    transition: all 0.3s ease !important;
}

.certificate-card:hover .certificate-image img {
    filter: grayscale(0%) !important;
    transform: scale(1.1) !important;
}

.certificate-content {
    position: relative;
    z-index: 2;
}

.certificate-content h4 {
    font-family: 'Righteous', cursive !important;
    color: #1E40AF !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin-bottom: 20px !important;
    text-shadow: none !important;
    transition: color 0.3s ease !important;
}

/* Removed text color change on hover */

.certificate-badge {
    background: linear-gradient(135deg, #1E40AF 0%, #3b82f6 100%) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 25px !important;
    font-family: 'Righteous', cursive !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

.certificate-badge span,
.certificate-badge i {
    color: white !important;
}

.certificate-card:hover .certificate-badge {
    background: linear-gradient(135deg, #1E40AF 0%, #3b82f6 100%) !important;
    color: white !important;
    transform: scale(1.05) !important;
}

/* Responsive Design for Vision Section */
@media (max-width: 1200px) {
    .diner-vision-title {
        font-size: 2.2rem !important;
    }

    .about-image {
        min-height: 350px;
    }
}

@media (max-width: 992px) {
    .diner-vision-title {
        font-size: 2rem !important;
        text-align: center !important;
    }

    .diner-vision-text {
        font-size: 1.2rem !important;
        text-align: center !important;
    }

    .about-image {
        min-height: 300px;
        margin-bottom: 30px;
    }

    .about-content {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .diner-vision-title {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }

    .diner-vision-text {
        font-size: 1.1rem !important;
        padding: 20px !important;
        margin-top: 15px !important;
    }

    .about-image {
        min-height: 250px;
        padding: 15px;
    }

    .about-section {
        padding: 40px 0;
    }

    .decoration-star {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .diner-vision-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .diner-vision-text {
        font-size: 1rem !important;
        padding: 15px !important;
    }

    .about-image {
        min-height: 200px;
        padding: 10px;
    }
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu */
.mobile-menu-container {
    background-color: #fff;
    border-top: 1px solid #eee;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: #e90000;
    background-color: #f8f9fa;
    padding-left: 30px;
}

.mobile-contact-btn {
    background-color: #e90000 !important;
    color: #fff !important;
    text-align: center;
    margin: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.mobile-contact-btn:hover {
    background-color: #c70000 !important;
    color: #fff !important;
    padding-left: 20px !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .header-main {
        min-height: 70px;
    }

    .header-logo img {
        width: 70px !important;
        height: 70px !important;
    }
}

/* Tablet-specific optimizations (768px - 1199px) - Includes iPad Pro - Mobile Layout */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .header-1 {
        padding: 12px 0;
    }

    .header-main {
        min-height: 70px;
        gap: 0;
        flex-wrap: nowrap;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* Logo on the left */
    .logo {
        flex-shrink: 0;
        min-width: 70px;
        max-width: 70px;
        order: 1;
        margin-right: auto;
    }

    .header-logo img {
        width: 70px !important;
        height: 70px !important;
        max-width: 100%;
        object-fit: contain;
    }

    .logo a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hide desktop menu and right section */
    .header-center {
        display: none !important;
    }

    .header-right {
        display: none !important;
    }

    .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Mobile elements on the right - same as mobile */
    .d-xl-none.d-flex,
    .d-lg-none.d-flex {
        display: flex !important;
        gap: 15px;
        align-items: center;
        flex-shrink: 0;
        order: 2;
        margin-left: auto;
    }

    .cart-icon-button {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
        order: 1;
        margin-right: 0;
    }

    .cart-icon-button .cart-icon {
        font-size: 1.5rem;
    }

    .cart-count-badge {
        min-width: 20px;
        min-height: 20px;
        font-size: 0.7rem;
        top: -2px;
        right: -2px;
        padding: 2px 5px;
    }

    .navbar-toggler {
        width: 46px;
        height: 46px;
        padding: 12px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
        margin-left: 0;
    }

    .navbar-toggler-icon {
        width: 28px;
        height: 22px;
    }

    .mobile-menu-inner {
        padding: 30px 35px;
    }

    .mobile-nav-link {
        font-size: 17px;
        padding: 16px 0;
    }

    .mobile-contact-btn {
        padding: 14px 0;
        font-size: 16px;
        margin-top: 15px;
    }

    /* Prevent header overflow */
    .mega-menu-wrapper {
        overflow: visible;
        width: 100%;
    }

    /* Ensure header-main doesn't wrap */
    .header-main>* {
        flex-shrink: 0;
    }

    /* Fix for potential flexbox issues */
    #header-sticky {
        overflow: visible;
    }

    /* Custom mobile menu positioning for tablet */
    .custom-mobile-menu {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .header-1 {
        padding: 8px 0;
    }

    .header-main {
        min-height: 60px;
    }

    .header-logo img {
        width: 60px !important;
        height: 60px !important;
    }

    .mobile-nav-link {
        font-size: 15px;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .header-1 {
        padding: 6px 0;
    }

    .header-main {
        min-height: 55px;
    }

    .header-logo img {
        width: 50px !important;
        height: 50px !important;
    }

    .mobile-nav-link {
        font-size: 14px;
        padding: 10px 15px;
    }

    .mobile-contact-btn {
        margin: 8px 15px;
        font-size: 14px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .header-main {
        min-height: 50px;
    }

    .header-logo img {
        width: 45px !important;
        height: 45px !important;
    }

    .mobile-nav-link {
        font-size: 13px;
        padding: 8px 12px;
    }

    .mobile-contact-btn {
        margin: 6px 12px;
        font-size: 13px;
        padding: 10px 15px;
    }
}

/* Sticky header behavior */
.header-sticky.sticky {
    background: linear-gradient(135deg, #860037 0%, #7b1c1f 100%) !important;
    backdrop-filter: blur(10px);
    box-shadow: none !important;
}

/* Force theme background - override any conflicting styles */
.header-1,
.header-main,
#header-sticky,
.section-bg {
    background: linear-gradient(135deg, #860037 0%, #7b1c1f 100%) !important;
    background-color: #860037 !important;
}

/* Force white navigation text - override any conflicting styles */
.header-center .nav-link,
.header-main .main-menu ul li a,
.mobile-nav-link,
.nav-link {
    color: var(--white) !important;
}

/* Custom Blue Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e3a8a 100%);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, var(--accent-blue) 100%);
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.5);
}

/* Firefox scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) #f1f1f1;
}

/* Footer White Text and Icons Styling */
.footer-section {
    background: linear-gradient(135deg, #860037 0%, #7b1c1f 100%) !important;
    color: #FFFFFF !important;
}

.footer-section .single-footer-widget h4 {
    color: var(--white) !important;
    font-family: 'Fredoka One', cursive !important;
    text-shadow: none !important;
    margin-bottom: 20px !important;
}

.footer-section .footer-content p {
    color: var(--white) !important;
    font-family: 'Righteous', cursive !important;
    line-height: 1.6 !important;
}

.footer-section .list-items li a {
    color: var(--white) !important;
    font-family: 'Righteous', cursive !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.footer-section .list-items li a:hover {
    color: var(--accent-yellow) !important;
    text-shadow: var(--neon-glow) !important;
    transform: translateX(5px) !important;
}

.footer-section .list-items li a::before {
    content: '✦' !important;
    position: absolute !important;
    left: -20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: var(--accent-yellow) !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
}

.footer-section .list-items li a:hover::before {
    opacity: 1 !important;
    left: -15px !important;
}

/* Social Media Icons with Original Platform Colors */
.footer-section .social-icon a {
    color: var(--white) !important;
    background: #FFFFFF !important;
    border: 2px solid var(--accent-yellow) !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 8px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.footer-section .social-icon a:hover {
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Facebook Icon - Original Blue */
.footer-section .social-icon a[href*="facebook"] i {
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    color: #1877F2 !important;
}

.footer-section .social-icon a[href*="facebook"]:hover i {
    transform: scale(1.2) !important;
    color: #1877F2 !important;
}

/* Instagram Icon - Original Gradient Colors */
.footer-section .social-icon a[href*="instagram"] i {
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.footer-section .social-icon a[href*="instagram"]:hover i {
    transform: scale(1.2) !important;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* TikTok Icon - Original Black */
.footer-section .social-icon a[href*="tiktok"] i {
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    color: #000000 !important;
}

.footer-section .social-icon a[href*="tiktok"]:hover i {
    transform: scale(1.2) !important;
    color: #000000 !important;
}

/* Support Text */
.footer-section .support-text h3 a {
    color: var(--white) !important;
    font-family: 'Fredoka One', cursive !important;
    font-size: 2.5rem !important;
    text-shadow: none !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.footer-section .support-text h3 a:hover {
    color: var(--accent-yellow) !important;
    text-shadow: var(--neon-glow) !important;
    transform: scale(1.05) !important;
}

/* Footer Bottom */
.footer-bottom {
    background: #fee47a !important;
    border-top: 3px solid #860037 !important;
}

.footer-bottom p {
    color: #860037 !important;
    font-family: 'Righteous', cursive !important;
    text-shadow: none !important;
    margin: 0 !important;
}

/* Footer Logo - Match Navbar Styling */
.footer-section .widget-head img {
    /* width: 90px !important; */
    /* height: 90px !important; */
    width: auto;
    height: 100%;
    max-height: none !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
    filter: drop-shadow(0 0 10px var(--accent-yellow)) !important;
}

.footer-section .widget-head img:hover {
    filter: drop-shadow(0 0 15px var(--accent-yellow)) !important;
    transform: scale(1.05) !important;
}

/* General Footer Text Override */
.footer-section * {
    color: var(--white) !important;
}

.footer-section .single-footer-widget p,
.footer-section .single-footer-widget span,
.footer-section .single-footer-widget div {
    color: var(--white) !important;
}

/* Specific Footer Text Elements - Force White */
.footer-section .widget-content p,
.footer-section .widget-content span,
.footer-section .widget-content div,
.footer-section .widget-content a,
.footer-section .widget-content li,
.footer-section .widget-content h1,
.footer-section .widget-content h2,
.footer-section .widget-content h3,
.footer-section .widget-content h4,
.footer-section .widget-content h5,
.footer-section .widget-content h6,
.footer-section .widget-content strong,
.footer-section .widget-content em,
.footer-section .widget-content b,
.footer-section .widget-content i {
    color: var(--white) !important;
}

/* Footer Links and List Items */
.footer-section .list-items li,
.footer-section .list-items li a,
.footer-section .footer-links li,
.footer-section .footer-links li a,
.footer-section .quick-links li,
.footer-section .quick-links li a,
.footer-section .footer-menu li,
.footer-section .footer-menu li a {
    color: var(--white) !important;
}

/* Footer Widget Content */
.footer-section .single-footer-widget .widget-content,
.footer-section .single-footer-widget .widget-content p,
.footer-section .single-footer-widget .widget-content span,
.footer-section .single-footer-widget .widget-content div,
.footer-section .single-footer-widget .widget-content a {
    color: var(--white) !important;
}

/* Footer Support Text */
.footer-section .support-text,
.footer-section .support-text p,
.footer-section .support-text span,
.footer-section .support-text div {
    color: var(--white) !important;
}

/* Footer Description Text */
.footer-section .footer-description,
.footer-section .footer-description p,
.footer-section .footer-description span,
.footer-section .footer-description div {
    color: var(--white) !important;
}

/* ULTRA SPECIFIC FOOTER OVERRIDES - Force White Text */
footer *,
.footer *,
.footer-section *,
.footer-widget *,
.footer-content *,
.footer-main * {
    color: #FFFFFF !important;
}

.footer-bottom * {
    color: #860037 !important;
}

/* Target specific text elements with maximum specificity */
.footer-section .single-footer-widget .widget-content p,
.footer-section .single-footer-widget .widget-content span,
.footer-section .single-footer-widget .widget-content div,
.footer-section .single-footer-widget .widget-content a,
.footer-section .single-footer-widget .widget-content li,
.footer-section .single-footer-widget .widget-content h1,
.footer-section .single-footer-widget .widget-content h2,
.footer-section .single-footer-widget .widget-content h3,
.footer-section .single-footer-widget .widget-content h4,
.footer-section .single-footer-widget .widget-content h5,
.footer-section .single-footer-widget .widget-content h6 {
    color: #FFFFFF !important;
}

/* Override any theme colors */
.footer-section .single-footer-widget .widget-content p[style*="color"],
.footer-section .single-footer-widget .widget-content span[style*="color"],
.footer-section .single-footer-widget .widget-content div[style*="color"],
.footer-section .single-footer-widget .widget-content a[style*="color"] {
    color: #FFFFFF !important;
}

/* Force white on all text elements */
.footer-section p,
.footer-section span,
.footer-section div,
.footer-section a,
.footer-section li,
.footer-section h1,
.footer-section h2,
.footer-section h3,
.footer-section h4,
.footer-section h5,
.footer-section h6,
.footer-section strong,
.footer-section em,
.footer-section b,
.footer-section i {
    color: #FFFFFF !important;
}

/* Override any inline styles */
.footer-section [style*="color"] {
    color: #FFFFFF !important;
}

/* NUCLEAR OPTION - Force white text with maximum specificity */
body footer *,
body .footer *,
body .footer-section *,
body .footer-widget *,
body .footer-content *,
body .footer-main *,
html body footer *,
html body .footer *,
html body .footer-section * {
    color: #FFFFFF !important;
}

body .footer-bottom *,
html body .footer-bottom * {
    color: #860037 !important;
}

/* Override any theme or framework colors */
.footer-section .single-footer-widget,
.footer-section .single-footer-widget *,
.footer-section .widget-content,
.footer-section .widget-content *,
.footer-section .list-items,
.footer-section .list-items *,
.footer-section .footer-links,
.footer-section .footer-links * {
    color: #FFFFFF !important;
}

/* Force white on specific text elements */
.footer-section p,
.footer-section span,
.footer-section div,
.footer-section a,
.footer-section li,
.footer-section h1,
.footer-section h2,
.footer-section h3,
.footer-section h4,
.footer-section h5,
.footer-section h6,
.footer-section strong,
.footer-section em,
.footer-section b,
.footer-section i,
.footer-section .widget-content p,
.footer-section .widget-content span,
.footer-section .widget-content div,
.footer-section .widget-content a,
.footer-section .widget-content li {
    color: #FFFFFF !important;
}

/* Animation for mobile menu */
.collapse.show {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.navbar-toggler:focus-visible {
    outline: 2px solid #e90000;
    outline-offset: 2px;
}

.mobile-nav-link:focus-visible {
    outline: 2px solid #e90000;
    outline-offset: -2px;
}


/* Hero section - Full Width */
.home-slider-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.single-home-slider {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Hero Typography */
.hero-title {
    font-size: 60px;
    font-weight: 700;
    color: #ffeb3b !important;
    margin-bottom: 20px;
    line-height: 1.2;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.hero-title .hero-highlight {
    color: #FFB936;
    animation: pulse 2s ease-in-out infinite 1.5s;
}

.hero-welcome {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: none !important;
}

.hero-subtitle {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: none !important;
}

/* Legacy support for existing classes */
.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: none !important;
}

.hero-content h1 span {
    color: #FFB936;
}

.hero-content h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: none !important;
}

.hero-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: none !important;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Food category cards */
.catagory-product-card-2 {
    background: #fff;
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.catagory-product-card-2:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #ffc107;
}

.catagory-product-card-2.active {
    background: #fff;
}

.catagory-product-image {
    text-align: center;
    margin-bottom: 20px;
}

.catagory-product-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.catagory-product-card-2:hover .catagory-product-image img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.catagory-product-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.catagory-product-content h4 a {
    color: #212121;
    text-decoration: none;
    transition: all 0.3s ease;
}

.catagory-product-content h4 a:hover {
    color: #00813D;
    transform: translateY(-2px);
}

.catagory-product-card-2:hover .catagory-product-content h4 a {
    color: #000;
}

/* Products Slider */
.products-slider {
    padding: 20px 0;
}

.productSwiper {
    padding: 20px 0 50px;
}

.productSwiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.productSwiper .swiper-pagination {
    bottom: 0;
}

.productSwiper .swiper-pagination-bullet {
    background: #00813D;
    opacity: 0.5;
}

.productSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #00813D;
}

.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
    color: #00813D;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
}

.productSwiper .swiper-button-next:after,
.productSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Hero Slider Styles */
.heroSwiper {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.heroSwiper .swiper-slide {
    height: 100%;
}

.heroSwiper .single-home-slider {
    height: 100%;
    min-height: 600px;
}

.heroSwiper .swiper-pagination {
    bottom: 30px;
    z-index: 10;
}

.heroSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #FFD700;
    transform: scale(1.2);
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: #FFD700 !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700 !important;
}

.heroSwiper .swiper-button-disabled {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
}

.heroSwiper .swiper-button-lock {
    display: none !important;
}

.heroSwiper .swiper-button-next {
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.heroSwiper .swiper-button-prev {
    left: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* Ensure buttons are not hidden by other elements */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive adjustments for hero slider */
@media (max-width: 991.98px) {
    .heroSwiper {
        height: 80vh;
        min-height: 600px;
    }

    .heroSwiper .single-home-slider {
        min-height: 600px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-welcome {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .home-slider-section {
        min-height: 80vh;
    }

    .single-home-slider {
        min-height: 80vh;
    }

    .heroSwiper {
        height: 80vh;
        min-height: 500px;
    }

    .heroSwiper .single-home-slider {
        min-height: 500px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-welcome {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-content {
        padding: 20px 0;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
        margin-top: -25px;
    }

    .heroSwiper .swiper-button-next:after,
    .heroSwiper .swiper-button-prev:after {
        font-size: 20px;
    }

    .heroSwiper .swiper-button-next {
        right: 15px;
    }

    .heroSwiper .swiper-button-prev {
        left: 15px;
    }

    .heroSwiper .swiper-pagination {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .home-slider-section {
        min-height: 70vh;
    }

    .single-home-slider {
        min-height: 70vh;
    }

    .heroSwiper {
        height: 70vh;
        min-height: 400px;
    }

    .heroSwiper .single-home-slider {
        min-height: 400px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.1;
    }

    .hero-welcome {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .hero-content {
        padding: 15px 0;
    }

    .heroSwiper .swiper-pagination {
        bottom: 15px;
    }

    .heroSwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .home-slider-section {
        min-height: 60vh;
    }

    .single-home-slider {
        min-height: 60vh;
    }

    .heroSwiper {
        height: 60vh;
        min-height: 350px;
    }

    .heroSwiper .single-home-slider {
        min-height: 350px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-welcome {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-content {
        padding: 10px 0;
    }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {

    /* Optimize background images for mobile */
    .single-home-slider {
        background-attachment: scroll;
        background-position: center center;
    }

    /* Improve touch targets */
    .heroSwiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }

    /* Better spacing for mobile */
    .container-fluid.px-3.px-md-4 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 576px) {

    /* Further optimize for small screens */
    .single-home-slider {
        background-size: cover;
        background-position: center center;
    }

    /* Reduce animation complexity on mobile */
    .wow {
        animation-duration: 0.6s !important;
    }

    /* Optimize text rendering */
    .hero-title,
    .hero-welcome,
    .hero-subtitle {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Modern Hero Section Styles */
.modern-hero {
    position: relative;
    min-height: 80vh;
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* margin: 40px 0; */
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 80vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hide inactive slides completely to avoid overlap/opacity issues */
    display: none !important;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    display: flex !important;
    z-index: 2;
}

/* Full Cover Hero Image Styles */
.hero-image-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e3a8a;
    z-index: 1;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.hero-bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-bg-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: floatIcon 6s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Floating food emojis in red circles */
.floating-food-emojis {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.food-emoji {
    position: absolute;
    font-size: 1.8rem;
    animation: floatFood 8s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Position food emojis in the red circles */
.food-emoji:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.food-emoji:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.food-emoji:nth-child(3) {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.food-emoji:nth-child(4) {
    top: 70%;
    right: 20%;
    animation-delay: 3s;
}

.food-emoji:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

.food-emoji:nth-child(6) {
    top: 50%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes floatFood {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.9;
    }

    75% {
        transform: translateY(-20px) rotate(3deg);
        opacity: 0.7;
    }
}

.hero-bg-icon:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.hero-bg-icon:nth-child(2) {
    top: 20%;
    left: 75%;
    animation-delay: 1s;
}

.hero-bg-icon:nth-child(3) {
    top: 35%;
    left: 25%;
    animation-delay: 2s;
}

.hero-bg-icon:nth-child(4) {
    top: 45%;
    left: 80%;
    animation-delay: 3s;
}

.hero-bg-icon:nth-child(5) {
    top: 60%;
    left: 10%;
    animation-delay: 4s;
}

.hero-bg-icon:nth-child(6) {
    top: 70%;
    left: 65%;
    animation-delay: 5s;
}

.hero-bg-icon:nth-child(7) {
    top: 15%;
    left: 50%;
    animation-delay: 0.5s;
}

.hero-bg-icon:nth-child(8) {
    top: 55%;
    left: 40%;
    animation-delay: 1.5s;
}

.hero-bg-icon:nth-child(9) {
    top: 80%;
    left: 30%;
    animation-delay: 2.5s;
}

.hero-bg-icon:nth-child(10) {
    top: 25%;
    left: 90%;
    animation-delay: 3.5s;
}

.hero-bg-icon:nth-child(11) {
    top: 50%;
    left: 5%;
    animation-delay: 4.5s;
}

.hero-bg-icon:nth-child(12) {
    top: 85%;
    left: 70%;
    animation-delay: 5.5s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }

    25% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-5px) rotate(-3deg);
        opacity: 0.25;
    }

    75% {
        transform: translateY(-15px) rotate(3deg);
        opacity: 0.18;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0px 20px; */
    gap: 80px;
    margin-top: -24px !important;
    /* lift the whole hero block slightly */
}

.hero-text {
    flex: 1;
    max-width: 600px;
    color: white !important;
}

.hero-badge {
    display: inline-block;
    background: #8B0000 !important;
    /* dark red */
    /* border: 1px solid #b91c1c93; */
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Remove hover animation/effects for the badge */
.hero-badge:hover {
    background: #8B0000 !important;
}

/* Force override for hero badge - must be last */
.hero-slide .hero-badge,
.modern-hero .hero-badge,
.hero-badge {
    background: #8B0000 !important;
    color: white !important;
}

.hero-title,
.modern-hero .hero-title,
.hero-slide .hero-title,
h1.hero-title {
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 24px;
    /* text-shadow: 
        0 0 10px rgba(255, 235, 59, 0.8),
        0 0 20px rgba(255, 235, 59, 0.6),
        0 0 30px rgba(255, 235, 59, 0.4),
        0 0 40px rgba(255, 235, 59, 0.2),
        2px 2px 8px rgba(0, 0, 0, 0.4); */
    color: #ffeb3b !important;
}

@keyframes titleGlow {
    0% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    }

    100% {
        text-shadow: 2px 2px 12px rgba(247, 220, 79, 0.6), 0 0 20px rgba(247, 220, 79, 0.3);
    }
}

.hero-subtitle,
.modern-hero .hero-subtitle,
.hero-slide .hero-subtitle,
p.hero-subtitle {
    font-size: 1.8rem !important;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0.95;
    color: #e0f2fe;
    font-weight: 400;
    text-shadow: none !important;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-accent {
    background: #FFD700;
    color: #bb0000;
    border-color: #FFD700;
}

.btn-accent:hover {
    background: #FFD700;
    color: #bb0000;
    border-color: #FFD700;
    /* Removed transform and box-shadow for no hover animation */
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #bb0000;
    /* Removed transform and box-shadow for no hover animation */
}

.btn-large {
    padding: 18px 35px;
    font-size: 18px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    max-width: 520px;
    width: 100%;
    padding: 20px;
    background: #1e3a8a;
    /* blue background instead of white */
    border-radius: 24px;
    margin-top: -20px;
    /* lift the image card a bit */
}

@media (max-width: 768px) {
    .hero-image-container {
        margin-top: 0;
        /* avoid overlap on smaller screens */
    }

    .hero-content {
        margin-top: 0 !important;
    }
}

.hero-food-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    filter: brightness(1.05) contrast(1.1);
}

.hero-food-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2.2rem;
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.floating-element:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1s;
}

.element-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 4;
    pointer-events: auto;
    padding: 0 20px;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-nav-btn.prev {
    left: 40px;
}

.hero-nav-btn.next {
    right: 40px;
}

.hero-nav-btn svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    stroke: #000000 !important;
    fill: none !important;
    color: #000000 !important;
}

/* RTL adjustments: place arrows appropriately and flip icons */
[dir="rtl"] .hero-nav-btn.prev {
    right: 40px;
    left: auto;
}

[dir="rtl"] .hero-nav-btn.next {
    left: 40px;
    right: auto;
}

[dir="rtl"] .hero-nav-btn.prev svg,
[dir="rtl"] .hero-nav-btn.next svg {
    transform: scaleX(-1);
}

.hero-nav-btn:hover svg {
    transform: scale(1.1);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 60px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #FFD700;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.8);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Enhanced Hero Section Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Text Animations */
.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.hero-image-container {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

/* Removed conflicting hero-badge animation rule */

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-actions {
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* Responsive Background Icons */
@media (max-width: 768px) {
    .hero-bg-icon {
        font-size: 1.5rem;
        opacity: 0.1;
    }

    .hero-bg-icon:nth-child(1) {
        top: 5%;
        left: 10%;
    }

    .hero-bg-icon:nth-child(2) {
        top: 15%;
        left: 80%;
    }

    .hero-bg-icon:nth-child(3) {
        top: 30%;
        left: 20%;
    }

    .hero-bg-icon:nth-child(4) {
        top: 40%;
        left: 85%;
    }

    .hero-bg-icon:nth-child(5) {
        top: 55%;
        left: 5%;
    }

    .hero-bg-icon:nth-child(6) {
        top: 65%;
        left: 70%;
    }

    .hero-bg-icon:nth-child(7) {
        top: 10%;
        left: 45%;
    }

    .hero-bg-icon:nth-child(8) {
        top: 50%;
        left: 35%;
    }

    .hero-bg-icon:nth-child(9) {
        top: 75%;
        left: 25%;
    }

    .hero-bg-icon:nth-child(10) {
        top: 20%;
        left: 95%;
    }

    .hero-bg-icon:nth-child(11) {
        top: 45%;
        left: 0%;
    }

    .hero-bg-icon:nth-child(12) {
        top: 80%;
        left: 75%;
    }
}

@media (max-width: 480px) {
    .hero-bg-icon {
        font-size: 1.2rem;
        opacity: 0.08;
    }
}

/* Force Override for Hero Title and Subtitle */
.modern-hero h1.hero-title,
.hero-slide h1.hero-title,
.modern-hero .hero-text h1,
.hero-slide .hero-text h1 {
    color: #ffeb3b !important;
    font-size: 3.8rem !important;
    font-weight: 400 !important;
    animation: none !important;
    text-shadow:
        0 0 10px rgba(255, 235, 59, 0.8),
        0 0 20px rgba(255, 235, 59, 0.6),
        0 0 30px rgba(255, 235, 59, 0.4),
        0 0 40px rgba(255, 235, 59, 0.2),
        2px 2px 8px rgba(0, 0, 0, 0.4) !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: geometricPrecision !important;
    line-height: 1.2 !important;
    padding: 20px 0 !important;
    margin: 20px 0 !important;
    width: 100% !important;
    max-width: none !important;
    white-space: nowrap !important;
    overflow: visible !important;
}

/* Hero text container improvements */
.hero-text,
.modern-hero .hero-text,
.hero-slide .hero-text {
    width: 100% !important;
    max-width: none !important;
    padding: 40px 20px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
}

.modern-hero p.hero-subtitle,
.hero-slide p.hero-subtitle,
.modern-hero .hero-text p,
.hero-slide .hero-text p {
    font-size: 1.8rem !important;
    color: #e0f2fe !important;
}

@media (max-width: 768px) {

    .modern-hero h1.hero-title,
    .hero-slide h1.hero-title {
        font-size: 2.5rem !important;
        color: #ffeb3b !important;
        font-weight: 400 !important;
        animation: none !important;
        /* text-shadow: 
            0 0 8px rgba(255, 235, 59, 0.8),
            0 0 16px rgba(255, 235, 59, 0.6),
            0 0 24px rgba(255, 235, 59, 0.4),
            0 0 32px rgba(255, 235, 59, 0.2),
            2px 2px 6px rgba(0, 0, 0, 0.4) !important; */
    }

    .modern-hero p.hero-subtitle,
    .hero-slide p.hero-subtitle {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {

    .modern-hero h1.hero-title,
    .hero-slide h1.hero-title {
        font-size: 2rem !important;
        color: #ffeb3b !important;
        font-weight: 400 !important;
        animation: none !important;
        text-shadow:
            0 0 6px rgba(255, 235, 59, 0.8),
            0 0 12px rgba(255, 235, 59, 0.6),
            0 0 18px rgba(255, 235, 59, 0.4),
            0 0 24px rgba(255, 235, 59, 0.2),
            2px 2px 4px rgba(0, 0, 0, 0.4) !important;
    }

    .modern-hero p.hero-subtitle,
    .hero-slide p.hero-subtitle {
        font-size: 1.3rem !important;
    }
}

/* Animations */
.animate-bounce-in {
    animation: bounceIn 0.8s ease-out;
}

.animate-slide-in-top {
    animation: slideInTop 0.8s ease-out 0.2s both;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out 0.6s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-hero {
        min-height: 60vh !important;
    }

    .hero-slides {
        height: 60vh !important;
        min-height: 60vh !important;
    }

    .hero-cover-image {
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        color: #ffeb3b !important;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }

    .hero-nav-btn.prev {
        left: 15px;
    }

    .hero-nav-btn.next {
        right: 15px;
    }

    .hero-dots {
        bottom: 40px;
    }
}

@media (max-width: 480px) {
    .modern-hero {
        min-height: 100vh !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-slides {
        height: 100vh !important;
        min-height: 100vh !important;
    }

    .hero-slide {
        min-height: 100vh !important;
        position: relative !important;
    }

    .hero-image-full {
        height: 100% !important;
        min-height: 100vh !important;
        width: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    .hero-cover-image {
        object-fit: cover !important;
        object-position: center !important;
        width: 100% !important;
        height: 100% !important;
    }

    .hero-title {
        font-size: 2rem;
        color: #ffeb3b !important;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* FINAL OVERRIDE - MUST BE LAST */
.modern-hero h1,
.hero-slide h1,
.modern-hero .hero-text h1,
.hero-slide .hero-text h1,
h1.hero-title,
.hero-title {
    color: #ffeb3b !important;
    font-weight: 400 !important;
    animation: none !important;
    /* text-shadow: 
        0 0 10px rgba(255, 235, 59, 0.8),
        0 0 20px rgba(255, 235, 59, 0.6),
        0 0 30px rgba(255, 235, 59, 0.4),
        0 0 40px rgba(255, 235, 59, 0.2),
        2px 2px 8px rgba(0, 0, 0, 0.4) !important; */
}

.btn-large {
    padding: 12px 25px;
    font-size: 14px;
}


/* FORCE OVERRIDE FOR TEXT MARQUEE BACKGROUND */
.text-marquee-section,
section.text-marquee-section,
div.text-marquee-section {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    background-color: #dc2626 !important;
}

/* Text Marquee Styles - Individual */
.text-marquee-section {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    background-color: #dc2626 !important;
    padding: 20px 0;
    margin: 40px 0 !important;
    overflow: hidden !important;
    position: relative;
}

/* Removed hover pause - animations should run continuously */

/* Text Marquee Container - Individual */
.text-marquee-section .marquee-container {
    width: 100%;
    overflow: hidden !important;
    position: relative;
    display: flex;
    align-items: center;
}

/* Partners Marquee Container - Individual */
.partners-marquee-section .marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Text Marquee Content - Individual */
.text-marquee-section .marquee-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: none !important;
    gap: 40px;
    padding: 10px 40px;
    animation: textMarqueeScroll 20s linear infinite !important;
    will-change: transform;
    flex-shrink: 0;
    justify-content: flex-start;
}

/* Animations run continuously without hover interaction */

/* Text Marquee Item - Individual */
.text-marquee-section .marquee-item {
    margin: 0;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Text Marquee Item Hover - Individual */
.text-marquee-section .marquee-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.marquee-separator {
    margin: 0 20px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

/* Text Marquee uses the same animation as Partners section */

/* Alternative marquee animation for better compatibility */
@keyframes marqueeScrollAlt {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Pause marquee on hover */
/* .marquee-container:hover .marquee-content {
    animation-play-state: paused;
} */

/* Responsive Text Marquee */
@media (max-width: 768px) {
    .text-marquee-section {
        padding: 15px 0;
    }

    .text-marquee-section .marquee-content {
        font-size: 1rem;
        animation-duration: 15s;
    }

    .text-marquee-section .marquee-item {
        margin-right: 0;
        padding: 8px 15px;
    }

    .text-marquee-section .marquee-separator {
        margin: 0 15px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .text-marquee-section .marquee-content {
        font-size: 0.9rem;
        animation-duration: 10s !important;
    }

    .text-marquee-section .marquee-item {
        margin-right: 0;
        padding: 6px 12px;
    }

    .text-marquee-section .marquee-separator {
        margin: 0 10px;
        font-size: 1rem;
    }

    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Partners Marquee Styles - Individual */
.partners-marquee-section {
    background: transparent !important;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

/* Removed hover pause - animations should run continuously */

.partners-marquee-section .section-title {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: none !important;
    padding-left: 20px;
    /* Add padding to start from edge with some spacing */
}

.partners-marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 60px;
    padding: 10px 0;
    width: 300%;
    /* Increased to 300% for tripled content */
    animation: partnersMarqueeScroll 30s linear infinite;
    will-change: transform;
    flex-shrink: 0;
    justify-content: flex-start;
    /* Start from left edge */
}

/* Animations run continuously without hover interaction */

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    text-shadow: none !important;
}

@keyframes partnersMarqueeScroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-33.333%);
        /* Move by 1/3 for tripled content */
    }
}

/* Text Marquee seamless infinite scroll animation */
@keyframes textMarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
        /* Move by exactly 1/3 (one complete set) for seamless loop with 3 identical copies */
    }
}

/* Removed hover pause - animations should run continuously */

/* Responsive Partners Marquee */
@media (max-width: 768px) {
    .partners-marquee-section {
        padding: 40px 0;
    }

    .partners-marquee-section .section-title {
        font-size: 2rem;
    }

    .partners-marquee-content {
        animation-duration: 10s !important;
        gap: 40px;
    }

    .partner-item {
        min-width: 150px;
        height: 100px;
        padding: 15px;
    }

    .partner-logo {
        max-height: 60px;
    }

    .partner-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-marquee-section .section-title {
        font-size: 1.5rem;
    }

    .partners-marquee-content {
        animation-duration: 15s;
        gap: 30px;
    }

    .partner-item {
        min-width: 120px;
        height: 80px;
        padding: 10px;
    }

    .partner-logo {
        max-height: 50px;
    }

    .partner-name {
        font-size: 0.9rem;
    }
}

/* About section */
.about-section {
    background-color: #F4F1EA;
    padding: 60px 0;
    min-height: 500px;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 30px;
}

.about-content h2 span {
    color: #00813D;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: none !important;
    object-fit: cover;
}

/* Button styles */
.theme-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e90000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #00813D;
}

.theme-btn:hover {
    background-color: #fff;
    color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.theme-btn.bg-transparent {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.theme-btn.bg-transparent:hover {
    background-color: #fff;
    color: #00813D;
}

/* Order Now button color adjustments */
.theme-btn.bg-red-2 {
    background: #fee47a !important;
    /* Resetting both color and gradient to Pastel Yellow */
    color: #860037 !important;
    /* Dark Pink */
}

/* Order Now button hover yellow - removed broken rule */

.theme-btn.style-line-height:hover {
    color: #000 !important;
}

/* Legacy responsive design - updated for new structure */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h4 {
        font-size: 1.2rem;
    }

    /* Hero section responsive */
    .hero-container {
        padding: 0 15px;
    }

    .hero-content-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 20px 0;
    }

    .hero-image-wrapper {
        padding: 20px 0;
    }

    .hero-image img {
        max-width: 300px;
    }

    .single-home-slider {
        padding: 80px 0;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-content h4 {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-image img {
        max-width: 250px;
    }

    .single-home-slider {
        padding: 60px 0;
    }
}

/* Footer address section styling */
.footer-address-text {
    line-height: 1.6;
}

.address-contact-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.address-info,
.phone-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.address-info i,
.phone-info i {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    color: #FFB936;
}

.address-info span {
    color: #000 !important;
    line-height: 1.4;
    font-weight: 500;
}

.phone-info a {
    color: #000 !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-info a:hover {
    color: #FFB936 !important;
    text-decoration: underline;
}

.working-hours-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    margin-top: 15px !important;
    padding-top: 15px !important;
}

.hours-header {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 8px !important;
}

.hours-header i {
    font-size: 16px !important;
    margin-right: 8px !important;
    color: #FFB936 !important;
}

.hours-header span {
    font-weight: 600 !important;
    color: #000 !important;
}

.hours-details div:first-child {
    margin-bottom: 4px !important;
}

.hours-details span:first-child {
    color: #FFB936 !important;
    font-weight: 600 !important;
}

.hours-details div:last-child {
    font-size: 14px !important;
    color: #666 !important;
    font-style: italic;
}

/* Equal height footer sections */
.footer-widgets-wrapper .row {
    display: flex;
    align-items: stretch;
}

.footer-widgets-wrapper .single-footer-widget {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-widgets-wrapper .widget-head h4 {
    color: #fff !important;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-widgets-wrapper .footer-content p,
.footer-widgets-wrapper .footer-content span,
.footer-widgets-wrapper .footer-content a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-widgets-wrapper .list-items li a {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
}

.footer-widgets-wrapper .list-items li a:hover {
    color: #FFB936 !important;
}

/* Responsive adjustments for footer address */
@media (max-width: 768px) {
    .address-contact-row {
        gap: 10px;
    }

    .address-info,
    .phone-info {
        font-size: 14px;
    }

    .working-hours-section {
        margin-top: 12px !important;
        padding-top: 12px !important;
    }

    /* Responsive equal height */
    .footer-widgets-wrapper .row {
        flex-direction: column;
    }

    .footer-widgets-wrapper .single-footer-widget {
        margin-bottom: 30px;
    }
}

/* Footer bottom social media styling */

/* Fix footer social icons alignment */
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 40px !important;
    width: 100% !important;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #FFFFFF !important;
    color: var(--header) !important;
    text-decoration: none !important;
    transition: all 0.4s ease-in-out !important;
    font-size: 16px !important;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
    background-color: #3b82f6 !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
        margin-top: 20px !important;
        gap: 10px !important;
    }
}

.footer-bottom-social .social-icon {
    gap: 12px;
}

.footer-bottom-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #FFFFFF;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-social .social-link:hover {
    background-color: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Responsive adjustments for footer bottom */
@media (max-width: 768px) {
    .footer-bottom-social .social-link {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Animation classes */
.wow {
    opacity: 0;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Preloader styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D93F42;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-preloader {
    text-align: center;
}

.txt-loading {
    margin: 20px 0;
}

.letters-loading {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0 5px;
    animation: bounce 1s infinite;
}

.letters-loading:nth-child(1) {
    animation-delay: 0.1s;
}

.letters-loading:nth-child(2) {
    animation-delay: 0.2s;
}

.letters-loading:nth-child(3) {
    animation-delay: 0.3s;
}

.letters-loading:nth-child(4) {
    animation-delay: 0.4s;
}

.letters-loading:nth-child(5) {
    animation-delay: 0.5s;
}

.letters-loading:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Products Grid Section Styles */
.products-grid-section {
    /* background-color: #fff; */
    padding: 20px 0;
}

.products-grid-section .section-title {
    margin-bottom: 60px;
}

.products-grid-section .section-title span {
    color: #D93F42;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.products-grid-section .section-title h2 {
    color: #2c2c2c;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.products-grid-section .section-title p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Card Styles */
.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} */

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(217, 63, 66, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.order-btn {
    background: #fff;
    color: #D93F42;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.order-btn:hover {
    background: #D93F42;
    color: #fff;
    transform: scale(1.05);
}

.order-btn i {
    font-size: 16px;
}

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: #2c2c2c;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-price .price {
    color: #D93F42;
    font-size: 24px;
    font-weight: 700;
}

.product-price .discount {
    background: #D93F42;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-actions {
    margin-top: auto;
}

.btn-order-now {
    /* background: linear-gradient(135deg, #ff6b35, #ff8c42); */
    background-color: rgb(255, 0, 0);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-order-now:hover {
    /* background: linear-gradient(135deg, #ff8c42, #ff6b35); */
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    /* box-shadow: 0 8px 20px rgba(255, 68, 0, 0.3); */
}

.btn-order-now i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid-section {
        padding: 60px 0;
    }

    .products-grid-section .section-title h2 {
        font-size: 32px;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 20px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-price .price {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .products-grid-section .section-title h2 {
        font-size: 28px;
    }

    .product-image {
        height: 180px;
    }

    .product-content {
        padding: 15px;
    }

    .product-title {
        font-size: 18px;
    }

    .btn-order-now {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Custom Animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInScale {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatIn {
    0% {
        transform: translateY(30px) scale(0.9);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes wiggle {

    0%,
    7% {
        transform: rotateZ(0);
    }

    15% {
        transform: rotateZ(-15deg);
    }

    20% {
        transform: rotateZ(10deg);
    }

    25% {
        transform: rotateZ(-10deg);
    }

    30% {
        transform: rotateZ(6deg);
    }

    35% {
        transform: rotateZ(-4deg);
    }

    40%,
    100% {
        transform: rotateZ(0);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.6);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* Enhanced hover animations */
/* .product-card:hover {
    animation: glow 2s ease-in-out infinite;
} */

/* .btn-order-now:hover {
    animation: wiggle 0.5s ease-in-out;
} */

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for lists */
.stagger-animation>* {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-animation>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-animation>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-animation>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-animation>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-animation>*:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-animation>*:nth-child(6) {
    animation-delay: 0.6s;
}

/* Advanced Animation Improvements */
@keyframes morphingFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 20px;
    }

    25% {
        transform: translateY(-15px) rotate(1deg) scale(1.02);
        border-radius: 25px;
    }

    50% {
        transform: translateY(-20px) rotate(0deg) scale(1.05);
        border-radius: 30px;
    }

    75% {
        transform: translateY(-10px) rotate(-1deg) scale(1.02);
        border-radius: 25px;
    }
}

@keyframes elasticBounce {
    0% {
        transform: scale(0.3) rotate(-10deg);
        opacity: 0;
    }

    20% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }

    40% {
        transform: scale(0.9) rotate(-3deg);
        opacity: 1;
    }

    60% {
        transform: scale(1.05) rotate(2deg);
    }

    80% {
        transform: scale(0.98) rotate(-1deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes slideInRotate {
    0% {
        transform: translateX(-100px) rotate(-15deg);
        opacity: 0;
        filter: blur(5px);
    }

    50% {
        transform: translateX(20px) rotate(5deg);
        opacity: 0.7;
        filter: blur(2px);
    }

    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes slideInRotateRight {
    0% {
        transform: translateX(100px) rotate(15deg);
        opacity: 0;
        filter: blur(5px);
    }

    50% {
        transform: translateX(-20px) rotate(-5deg);
        opacity: 0.7;
        filter: blur(2px);
    }

    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes zoomInRotate {
    0% {
        transform: scale(0.5) rotate(-180deg);
        opacity: 0;
        filter: hue-rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(-90deg);
        opacity: 0.8;
        filter: hue-rotate(180deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: hue-rotate(360deg);
    }
}

@keyframes waveAnimation {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(1deg);
    }

    50% {
        transform: translateY(-5px) rotate(0deg);
    }

    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

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

    100% {
        background-position: 200% 0;
    }
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px) translateX(-5px) rotate(180deg);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-25px) translateX(15px) rotate(270deg);
        opacity: 0.9;
    }
}

@keyframes magneticHover {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(var(--mouse-x, 0), var(--mouse-y, 0)) scale(1.05);
    }
}

@keyframes liquidMorph {

    0%,
    100% {
        border-radius: 20px 30px 20px 30px;
        transform: scale(1) rotate(0deg);
    }

    25% {
        border-radius: 30px 20px 30px 20px;
        transform: scale(1.02) rotate(1deg);
    }

    50% {
        border-radius: 25px 25px 25px 25px;
        transform: scale(1.05) rotate(0deg);
    }

    75% {
        border-radius: 35px 15px 35px 15px;
        transform: scale(1.02) rotate(-1deg);
    }
}

@keyframes neonGlow {

    0%,
    100% {
        box-shadow:
            0 0 5px rgba(255, 107, 53, 0.5),
            0 0 10px rgba(255, 107, 53, 0.3),
            0 0 15px rgba(255, 107, 53, 0.2);
    }

    50% {
        box-shadow:
            0 0 20px rgba(255, 107, 53, 0.8),
            0 0 30px rgba(255, 107, 53, 0.6),
            0 0 40px rgba(255, 107, 53, 0.4),
            0 0 50px rgba(255, 107, 53, 0.2);
    }
}

@keyframes textReveal {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleInBounce {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        transform: scale(1.2) rotate(5deg);
        opacity: 0.8;
    }

    40% {
        transform: scale(0.8) rotate(-3deg);
        opacity: 1;
    }

    60% {
        transform: scale(1.1) rotate(2deg);
    }

    80% {
        transform: scale(0.95) rotate(-1deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Enhanced hover effects */
/* .product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, box-shadow;
} */

/* .product-card:hover {
    animation: morphingFloat 3s ease-in-out infinite, neonGlow 2s ease-in-out infinite;
    transform: translateY(-15px) scale(1.02);
} */

.btn-order-now {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-order-now::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;
}

.btn-order-now:hover::before {
    left: 100%;
}

/* .btn-order-now:hover {
    animation: elasticBounce 0.6s ease-out;
    transform: translateY(-3px) scale(1.05);
} */

/* Advanced text animations */
.hero-content h1 {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

/* Particle effect for hero */
.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: particleFloat 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* Magnetic hover effect */
/* .product-card {
    --mouse-x: 0;
    --mouse-y: 0;
}

.product-card:hover {
    animation: magneticHover 0.3s ease-out forwards;
} */

/* Liquid morphing for images */
.product-image img {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
    /* animation: liquidMorph 2s ease-in-out infinite; */
    filter: brightness(1.1) contrast(1.1);
}

/* Ripple effect animation */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Performance optimizations */
.product-card,
.btn-order-now,
.hero-content h1 {
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.btn-order-now:focus,
.theme-btn:focus {
    outline: 2px solid #ff3535;
    outline-offset: 2px;
    animation: neonGlow 0.3s ease-out;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Products Slider Styles */
.products-slider-container {
    position: relative;
    padding: 20px 50px;
    margin: 40px 0;
}

.productsSwiper {
    overflow: hidden;
    border-radius: 20px;
    padding: 20px 0;
}

.productsSwiper .swiper-wrapper {
    padding: 0;
    margin: 0;
}

.productsSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    padding: 10px;
}

.productsSwiper .product-card {
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Navigation buttons for products slider */
.products-next,
.products-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.products-next:hover,
.products-prev:hover {
    background: rgba(255, 0, 0, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.products-next {
    right: 0;
}

.products-prev {
    left: 0;
}

.products-next::after,
.products-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination for products slider */
.products-pagination {
    position: relative;
    margin-top: 10px;
    text-align: center;
}

.products-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #FFEB3B !important;
    opacity: 0.3 !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
}

.products-pagination .swiper-pagination-bullet-active {
    background: #FFEB3B !important;
    transform: scale(1.2) !important;
    opacity: 1 !important;
    box-shadow: 0 0 10px rgba(255, 235, 59, 0.5) !important;
}

/* Show All Products Button */
.show-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFEB3B, #FFD700) !important;
    color: #000000 !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.show-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.show-all-btn:hover::before {
    left: 100%;
}

.show-all-btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFEB3B) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 235, 59, 0.4) !important;
    color: #000000 !important;
    text-decoration: none;
}

.show-all-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.show-all-btn:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive adjustments for products slider */
@media (max-width: 768px) {
    .products-slider-container {
        padding: 0 30px;
    }

    .products-next,
    .products-prev {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .show-all-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .products-slider-container {
        padding: 0 20px;
    }

    .products-next,
    .products-prev {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .show-all-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Force hero dots positioning - override all other rules */
.hero-dots {
    bottom: 80px !important;
    position: absolute !important;
}

/* Footer hover dot color override to blue */
.footer-widgets-wrapper .single-footer-widget .list-items li a::before {
    background-color: #3b82f6 !important;
    /* solid blue */
}

/* Mobile-first responsive fixes for Modern Hero - FORCE OVERRIDE */
@media (max-width: 768px) {
    .modern-hero {
        min-height: 100vh !important;
        padding: 0 !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .hero-slide {
        min-height: 100vh !important;
        position: relative !important;
    }

    .hero-image-full {
        height: 100% !important;
        min-height: 100vh !important;
        width: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    .hero-cover-image {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }

    .hero-content-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
    }

    .hero-slide.active {
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        display: flex !important;
    }

    .hero-content {
        order: 1 !important;
        text-align: center !important;
        padding: 0 16px !important;
        margin-top: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero-text,
    .modern-hero .hero-text,
    .hero-slide .hero-text {
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero-image {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        order: 2 !important;
    }

    .hero-image-container {
        order: 2 !important;
        max-width: 85% !important;
        width: 100% !important;
        margin: 0 auto !important;
        border-radius: 16px !important;
        padding: 12px !important;
    }

    .hero-food-img {
        max-width: 360px !important;
        width: 100% !important;
        height: auto !important;
    }

    .hero-nav {
        top: auto !important;
        bottom: 120px !important;
        transform: none !important;
    }

    .hero-nav-btn {
        width: 40px !important;
        height: 40px !important;
        top: auto !important;
        bottom: 120px !important;
        transform: none !important;
    }

    .hero-nav-btn.prev {
        left: 12px !important;
    }

    .hero-nav-btn.next {
        right: 12px !important;
    }

    .hero-dots {
        bottom: 40px !important;
    }
}

@media (max-width: 480px) {

    .hero-title,
    .modern-hero h1.hero-title,
    .hero-slide h1.hero-title {
        font-size: 1.8rem !important;
        line-height: 1.15 !important;
    }

    .hero-subtitle,
    .modern-hero p.hero-subtitle,
    .hero-slide p.hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
    }

    .hero-badge {
        font-size: 12px !important;
        padding: 8px 14px !important;
    }

    .hero-dots {
        bottom: 28px !important;
        gap: 8px !important;
    }

    .hero-dot {
        width: 10px !important;
        height: 10px !important;
    }

    .floating-food-emojis,
    .hero-bg-icons {
        display: none !important;
    }

    .hero-image {
        width: 100% !important;
    }

    .hero-image-container {
        max-width: 92% !important;
        padding: 10px !important;
        border-radius: 14px !important;
    }

    .hero-food-img {
        max-width: 280px !important;
        width: 100% !important;
        height: auto !important;
    }
}

/* ULTIMATE OVERRIDE - Force mobile responsiveness */
@media screen and (max-width: 768px) {

    .modern-hero .hero-content-wrapper,
    .modern-hero .hero-slide.active,
    .hero-slide.active {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .modern-hero .hero-content,
    .hero-slide .hero-content,
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .modern-hero .hero-image,
    .hero-slide .hero-image,
    .hero-image {
        width: 100% !important;
        max-width: 90% !important;
        margin: 20px auto !important;
        display: flex !important;
        justify-content: center !important;
    }

    .modern-hero .hero-image-container,
    .hero-slide .hero-image-container,
    .hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 15px !important;
    }

    .modern-hero .hero-food-img,
    .hero-slide .hero-food-img,
    .hero-food-img {
        width: 100% !important;
        max-width: 350px !important;
        height: auto !important;
    }
}

@media screen and (max-width: 480px) {

    .modern-hero .hero-content-wrapper,
    .modern-hero .hero-slide.active,
    .hero-slide.active {
        padding: 20px 15px !important;
    }

    .modern-hero .hero-image,
    .hero-slide .hero-image,
    .hero-image {
        max-width: 95% !important;
        margin: 15px auto !important;
    }

    .modern-hero .hero-food-img,
    .hero-slide .hero-food-img,
    .hero-food-img {
        max-width: 280px !important;
    }
}

/* Location Modal Styles */
.location-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.location-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.location-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 100001;
}

.location-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.location-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.location-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.2s;
}

.location-modal-close:hover {
    color: #860037;
}

.location-modal-body {
    padding: 1.5rem;
}

.location-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.location-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.location-tab:hover {
    color: #860037;
}

.location-tab.active {
    color: #860037;
    border-bottom-color: #860037;
}

.location-tab-content {
    display: none;
}

.location-tab-content.active {
    display: block;
}

.location-loading,
.location-error,
.location-success {
    text-align: center;
    padding: 2rem;
}

.location-loading i,
.location-error i,
.location-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-loading i {
    color: #3b82f6;
}

.location-error i {
    color: #ef4444;
}

.location-success i {
    color: #10b981;
}

.location-action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.location-action-buttons .btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.location-action-buttons .btn-secondary {
    background: #f8f9fa;
    border-color: #6c757d;
    color: #6c757d;
    font-weight: 600;
}

.location-action-buttons .btn-secondary:hover {
    background: #e9ecef;
    border-color: #5a6268;
    color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-action-buttons .btn-primary {
    background: #860037;
    border-color: #860037;
    color: white;
    font-weight: 600;
}

.location-action-buttons .btn-primary:hover {
    background: #7b1c1f;
    border-color: #7b1c1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(134, 0, 55, 0.3);
}

.location-action-buttons .btn i {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .location-action-buttons {
        flex-direction: column;
    }

    .location-action-buttons .btn {
        width: 100%;
        min-width: 100%;
    }
}

.location-search {
    position: relative;
}

.location-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    color: #111 !important;
    background: #fff;
}

.location-input:focus {
    outline: none;
    border-color: #860037;
}

.location-input::placeholder {
    color: #6b7280 !important;
    opacity: 1;
}

.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
    color: #111 !important;
}

.address-suggestions.show {
    display: block;
}

.address-suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
    color: #111 !important;
}

.address-suggestion-item:hover {
    background: #f3f4f6;
}

.location-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    z-index: 1;
}

/* Leaflet map container fix */
.location-map.leaflet-container {
    height: 300px;
    z-index: 1;
}

.location-selected {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.location-selected p {
    margin: 0.5rem 0;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #860037;
    color: #fff;
}

.btn-primary:hover {
    background: #7b1c1f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(134, 0, 55, 0.3);
}

/* Order Type Selection */
.order-type-selection {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.order-type-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.order-type-options {
    display: flex;
    gap: 1rem;
}

.order-type-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.order-type-option:hover {
    border-color: #860037;
    background: #fff5f7;
}

.order-type-option input[type="radio"] {
    display: none;
}

.order-type-option input[type="radio"]:checked+.order-type-icon {
    color: #860037;
    transform: scale(1.1);
}

.order-type-option input[type="radio"]:checked~.order-type-text {
    color: #860037;
    font-weight: 600;
}

.order-type-option:has(input[type="radio"]:checked) {
    border-color: #860037;
    background: #fff5f7;
}

.order-type-icon {
    font-size: 1.5rem;
    color: #6b7280;
    transition: all 0.2s ease;
}

.order-type-text {
    font-size: 0.9rem;
    color: #6b7280;
    transition: all 0.2s ease;
}

/* Pickup Branch Selection */
.pickup-branch-selection {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    background: #fffdf8;
}

.pickup-branch-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.pickup-branch-label i {
    color: #860037;
}

.pickup-branch-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #111;
    background: #fff;
    margin-bottom: 0.75rem;
}

.pickup-branch-select:focus {
    border-color: #860037;
    outline: none;
    box-shadow: 0 0 0 3px rgba(134, 0, 55, 0.15);
}

.pickup-branch-info {
    background: #f9fafb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}

.pickup-branch-name {
    font-weight: 600;
    margin: 0;
    color: #111;
}

.pickup-branch-address {
    margin: 0.25rem 0 0;
    color: #4b5563;
    font-size: 0.9rem;
}

.pickup-branch-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.pickup-confirm-btn {
    width: 100%;
    margin-top: 0.25rem;
}

/* Delivery Status Messages */
.delivery-status-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.delivery-status-available {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-status-available i {
    color: #22c55e;
    font-size: 1.2rem;
}

.delivery-status-unavailable {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 1rem;
}

.delivery-status-unavailable i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.delivery-status-unavailable p {
    margin: 0.5rem 0;
}

.delivery-status-unavailable p:first-of-type {
    font-weight: 600;
}

.btn-switch-to-pickup {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: #860037;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-switch-to-pickup:hover {
    background: #7b1c1f;
}

@media (max-width: 768px) {
    .location-modal-dialog {
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
    }

    .location-tabs {
        flex-direction: column;
    }

    .location-tab {
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .location-tab.active {
        border-left-color: #860037;
        border-bottom-color: transparent;
    }


    .order-type-options {
        flex-direction: column;
    }
}

/* Product Modal Styles - Match products page design */
.product-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.product-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.product-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 24px;
    max-width: 90vw !important;
    width: 1400px !important;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.product-modal-image-wrapper {
    flex: 1;
    min-height: 320px;
    background: #f7f7f7;
}

.product-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-modal-body {
    flex: 1;
    padding: 35px;
    max-height: 80vh;
    overflow-y: auto;
}

.product-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: #333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 2;
}

.product-modal-close:hover {
    background: rgba(0, 0, 0, 0.15);
}

.product-modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.product-modal-description {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.15rem;
}

.product-modal-price {
    background: #fff5f7;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #860037;
    margin-bottom: 20px;
}

.product-modal-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.product-modal-quantity-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    margin: 0;
}

.product-modal-quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-modal-quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 2px solid #860037;
    background: #fff;
    color: #860037;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.product-modal-quantity-btn:hover {
    background: #860037;
    color: #fff;
}

.product-modal-quantity-btn:active {
    transform: scale(0.95);
}

.product-modal-quantity-input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    background: #fff;
}

.product-modal-quantity-input:focus {
    outline: none;
    border-color: #860037;
}

.product-modal-modifiers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-modal-modifier-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 1.05rem;
}

.product-modal-modifier-note {
    font-size: 0.85rem;
    color: #6B7280;
}

.product-modal-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-modal-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 2px solid #eee;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.2s ease;
}

.product-modal-option input {
    accent-color: #860037;
}

.product-modal-option-price {
    font-size: 0.85rem;
    color: #860037;
    font-weight: 600;
}

.product-modal-option:hover {
    border-color: #860037;
}

.product-modal-empty {
    text-align: center;
    color: #777;
    padding: 20px 0;
}

.product-modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.product-modal-cancel {
    flex: 1;
    text-align: center;
    border: 2px solid #860037;
    color: #860037;
    background: #fff;
    border-radius: 50px;
    padding: 14px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-modal-cancel:hover {
    background: #fff5f7;
    transform: translateY(-1px);
}

.product-modal-actions .btn-add-to-cart {
    flex: 1;
}

.btn-add-to-cart--modal {
    background: #fee47a !important;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #860037 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(134, 0, 55, 0.2);
}

.btn-add-to-cart--modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(134, 0, 55, 0.3);
    background: #fee47a !important;
}

.product-modal-instances {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-modal-instance {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.product-modal-instance-header {
    margin-bottom: 15px;
}

.product-modal-instance-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.product-modal-instance-modifiers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 992px) {
    .product-modal-dialog {
        flex-direction: column;
    }

    .product-modal-image-wrapper {
        max-height: 280px;
    }

    .product-modal-body {
        max-height: calc(80vh - 280px);
    }
}

@media (max-width: 576px) {
    .product-modal-body {
        padding: 25px;
    }

    .product-modal-option {
        width: 100%;
        justify-content: space-between;
    }
}

/* Combo Modal Layout Fixes */
.combo-items-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 0;
    margin-bottom: 20px;
    overflow-x: visible;
    /* Ensure no horiz scroll */
}

.combo-item-card {
    flex: 0 0 calc(33.333% - 10px);
    width: calc(33.333% - 10px);
    /* Fallback */
    max-width: 100%;
    margin-right: 0;
    /* Override any carousel margins */
    display: flex;
    flex-direction: column;
    border: 2px solid #eee;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.combo-item-card:hover {
    border-color: #860037;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.combo-item-card.is-selected {
    border-color: #860037;
    background: #fff5f7;
}

.combo-card-image-box {
    margin-bottom: 10px;
}

.combo-card-image-box img {
    border-radius: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .combo-item-card {
        flex: 0 0 calc(50% - 8px);
        width: calc(50% - 8px);
    }
}

@media (max-width: 480px) {
    .combo-item-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* Premium Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #860037 0%, #7b1c1f 100%) !important;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/shape/footer-pattern.png');
    /* Assuming there's a pattern or I can use a generic one */
    opacity: 0.05;
    pointer-events: none;
}

.footer-section .widget-head h4 {
    color: #fee47a !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section .widget-head h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #fee47a;
    border-radius: 2px;
}

.list-items li {
    margin-bottom: 12px;
}

.list-items li a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.list-items li a:hover {
    color: #fee47a !important;
    transform: translateX(5px);
}

.social-icon {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon a {
    width: 45px;
    height: 45px;
    background: rgba(254, 228, 122, 0.1);
    border: 1px solid rgba(254, 228, 122, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fee47a !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icon a:hover {
    background: #fee47a;
    color: #860037 !important;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.support-text h3 a {
    color: #fee47a !important;
    font-size: 2.5rem;
    font-weight: 800;
    transition: all 0.3s ease;
    text-decoration: none;
}

.support-text h3 a:hover {
    opacity: 0.8;
    letter-spacing: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #fee47a !important;
    padding: 20px 0;
}

.footer-bottom p {
    color: #860037 !important;
    font-weight: 600;
    margin-bottom: 0;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8;
    font-size: 1.1rem;
}