/*
Theme Name: MFC Restaurant
Theme URI: https://mfc.dk
Author: MFC Team
Author URI: https://mfc.dk
Description: Modern, responsive bilingual WordPress theme for MFC – Fried Chicken restaurant in Odense, Denmark
Version: 1.4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mfc-restaurant
Tags: restaurant, food, bilingual, responsive, bootstrap
*/

/* ========================================
   ROOT VARIABLES - BRAND COLORS & FONTS
   ======================================== */
:root {
    --primary-red: #D73A31;
    --secondary-yellow: #F3B33D;
    --bg-light: #FAFAFA;
    --text-dark: #222;
    --white: #fff;
    --transition-speed: 300ms;
    --font-main: 'Poppins', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
   GLOBAL RESETS & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

button,
.btn {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--transition-speed) ease;
    font-family: var(--font-main);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* ========================================
   ACCESSIBILITY - SKIP LINK
   ======================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 12px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--secondary-yellow);
    outline-offset: 2px;
}

/* ========================================
   BUTTONS & CTAs
   ======================================== */
.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    min-width: 44px;
    min-height: 44px;
}

.btn-primary:hover {
    background-color: #b52e26;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(215, 58, 49, 0.3);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    min-width: 44px;
    min-height: 44px;
}

.btn-secondary:hover {
    background-color: #daa436;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 179, 61, 0.3);
    color: var(--text-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
    min-width: 44px;
    min-height: 44px;
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-speed) ease, transform 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo img {
    height: 60px;
    width: auto;
    transition: all var(--transition-speed) ease;
}

.site-header.scrolled .site-logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width var(--transition-speed) ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all var(--transition-speed) ease;
}

.lang-btn.active {
    background-color: var(--primary-red);
    color: var(--white);
}

.lang-btn:hover {
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all var(--transition-speed) ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: right 0.4s ease;
    overflow-y: auto;
    padding: 2rem;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-overlay .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-overlay .nav-menu a {
    font-size: 1.2rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-red), #b52e26);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215, 58, 49, 0.4), rgba(181, 46, 38, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    max-width: 200px;
    margin: 0 auto 1rem;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SECTIONS & CONTAINERS
   ======================================== */
.section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-yellow));
    border-radius: 2px;
}

/* ========================================
   FEATURED ITEMS / PRODUCT CARDS
   ======================================== */
.featured-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.food-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.food-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.food-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-card:hover .food-card-image img {
    transform: scale(1.1);
}

.food-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.food-card-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.food-card-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex: 1;
}

.food-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.food-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.food-card-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ========================================
   WHY CHOOSE MFC - FEATURES
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: all var(--transition-speed) ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
}

/* ========================================
   ABOUT OUR FOOD / FOOD STORY
   ======================================== */
.food-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.food-story-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.food-story-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.food-story-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.food-story-item h3 {
    color: var(--primary-red);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.food-story-item p {
    color: #555;
    line-height: 1.8;
    text-align: center;
}

/* ========================================
   PROMO BANNER
   ======================================== */
.promo-banner {
    background: linear-gradient(135deg, var(--secondary-yellow), #daa436);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-content h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 280px;
}

.gallery-item figure {
    margin: 0;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--secondary-yellow);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-rating {
    color: var(--secondary-yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-red);
    font-style: normal;
    margin-bottom: 0.5rem;
}

.testimonial-meta {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
    font-style: normal;
}

/* ========================================
   LOCATION & MAP
   ======================================== */
.location-section {
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

/* Dual Location Grid Layout */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.location-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.location-card .location-info {
    padding: 2rem;
}

.location-card .location-map {
    min-height: 250px;
}

.location-card .location-map iframe {
    height: 250px;
}

@media (max-width: 991px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-card .location-map {
        min-height: 300px;
    }
    
    .location-card .location-map iframe {
        height: 300px;
    }
}

.location-info h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.location-details {
    list-style: none;
    margin-bottom: 2rem;
}

.location-details li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.location-details li:last-child {
    border-bottom: none;
}

.location-details strong {
    min-width: 80px;
    color: var(--text-dark);
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   NEWSLETTER SIGNUP
   ======================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-red), #b52e26);
    color: var(--white);
    text-align: center;
}

.newsletter-section h2 {
    color: var(--white);
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 14px 32px;
    border-radius: 50px;
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    min-width: 44px;
    min-height: 44px;
}

.newsletter-form button:hover {
    background-color: #daa436;
    transform: translateY(-2px);
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: var(--secondary-yellow);
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.certifications {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.halal-certification,
.smiley-certification {
    display: inline-block;
}

.halal-certification img,
.smiley-certification img {
    max-width: 120px;
    height: auto;
    opacity: 0.95;
    transition: all var(--transition-speed) ease;
}

.smiley-certification img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Social Media Section */
.social-media {
    margin-top: 1.5rem;
}

.social-media h4 {
    color: var(--secondary-yellow);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
}

.social-icons a:hover {
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(243, 179, 61, 0.3);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.9;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-yellow);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom a {
    transition: opacity var(--transition-speed) ease;
}

.footer-bottom a:hover {
    opacity: 1 !important;
    text-decoration: underline;
}

/* Visitor Counter Styling */
.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-speed) ease;
}

.visitor-counter:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.visitor-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.visitor-label {
    font-weight: 500;
    opacity: 0.9;
}

.visitor-count {
    font-weight: 700;
    color: var(--secondary-yellow);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 1.5rem;
    }

    .visitor-counter {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .visitor-count {
        font-size: 1rem;
    }

    .social-media {
        margin-top: 1rem;
    }

    .social-media h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .social-icons {
        gap: 0.75rem;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
    }

    .social-icons svg {
        width: 18px;
        height: 18px;
    }
}


/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(34, 34, 34, 0.98);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--secondary-yellow);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 44px;
    min-height: 44px;
}

.cookie-accept {
    background-color: var(--primary-red);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #b52e26;
}

.cookie-decline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(215, 58, 49, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .featured-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem;
    }

    .site-logo img {
        height: 50px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-item {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .featured-items-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 3px solid var(--primary-red);
    outline-offset: 2px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-red);
}

.text-secondary {
    color: var(--secondary-yellow);
}

.bg-white {
    background-color: var(--white);
}

.bg-light {
    background-color: var(--bg-light);
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 3rem;
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* ========================================
   MENU PAGE STYLES
   ======================================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) ease;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin: 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-content h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.menu-item-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-light);
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-image {
    position: relative;
}

.about-image img {
    transition: transform var(--transition-speed) ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content h2 {
    position: relative;
    padding-bottom: 1rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-yellow));
    border-radius: 2px;
}

.stats-grid .stat-item {
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-light);
    transition: transform var(--transition-speed) ease;
}

.stats-grid .stat-item:hover {
    transform: translateY(-5px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    transition: all var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

.about-intro {
    animation: fadeIn 0.8s ease-out;
}

.about-showcase figure img {
    transition: transform var(--transition-speed) ease;
}

.about-showcase figure:hover img {
    transform: scale(1.05);
}

/* History Section Styles */
.history-section {
    padding: 5rem 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text h2 {
    color: var(--primary-red);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.history-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.history-image figure {
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-speed) ease;
}

.history-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-showcase {
        grid-template-columns: 1fr !important;
    }

    .history-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .history-text {
        order: 1;
    }

    .history-image {
        order: 2;
    }
}

/* ========================================
   PROMOTIONAL POPUP MODAL
   ======================================== */
.promo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.promo-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-modal-content {
    background: linear-gradient(135deg, var(--secondary-yellow), #daa436);
    margin: auto;
    padding: 0;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.4s ease;
}

.promo-modal-close {
    color: var(--text-dark);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color var(--transition-speed) ease;
}

.promo-modal-close:hover,
.promo-modal-close:focus {
    color: var(--primary-red);
}

.promo-modal-body {
    padding: 3rem 2.5rem;
    text-align: center;
}

.promo-modal-body h2 {
    color: var(--text-dark);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.promo-modal-body p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.promo-modal-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
}

.promo-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .promo-modal-content {
        width: 95%;
        margin: 20px;
    }

    .promo-modal-body {
        padding: 2.5rem 1.5rem;
    }

    .promo-modal-body h2 {
        font-size: 1.5rem;
    }

    .promo-modal-body p {
        font-size: 1rem;
    }

    .promo-modal-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}


/* ============================================
   SOCIAL SIDEBAR & MOBILE BAR
   ============================================ */

/* Desktop Sidebar (Left Side) */
.mfc-desktop-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 0 12px 12px 0;
    padding: 15px 8px;
    box-shadow: 3px 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mfc-desktop-sidebar:hover {
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
}

.mfc-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mfc-sidebar-item {
    margin: 0;
    padding: 0;
}

.mfc-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.mfc-sidebar-link:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mfc-sidebar-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

/* Facebook */
.mfc-sidebar-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.mfc-sidebar-facebook:hover {
    border-color: #1877F2;
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.5);
}

/* TikTok */
.mfc-sidebar-tiktok {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.mfc-sidebar-tiktok:hover {
    border-color: #EE1D52;
    box-shadow: 0 5px 20px rgba(238, 29, 82, 0.5);
}

/* Instagram */
.mfc-sidebar-instagram {
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
}

.mfc-sidebar-instagram:hover {
    border-color: #F58529;
    box-shadow: 0 5px 20px rgba(245, 133, 41, 0.5);
}

/* WhatsApp */
.mfc-sidebar-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.mfc-sidebar-whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

/* Discount Button */
.mfc-sidebar-discount {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: pulse-discount 2s infinite;
}

.mfc-sidebar-discount:hover {
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
    animation: none;
}

@keyframes pulse-discount {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

/* Mobile Bottom Bar */
.mfc-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 10px 15px;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.3);
}

.mfc-mobile-bar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
}

.mfc-mobile-bar-item {
    margin: 0;
    padding: 0;
}

.mfc-mobile-bar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mfc-mobile-bar-link:hover,
.mfc-mobile-bar-link:active {
    transform: scale(1.1);
}

.mfc-mobile-bar-icon {
    width: 26px;
    height: 26px;
}

/* Mobile Bar - Specific Platform Colors */
.mfc-mobile-bar-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.mfc-mobile-bar-tiktok {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.mfc-mobile-bar-instagram {
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
}

.mfc-mobile-bar-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.mfc-mobile-bar-discount {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: pulse-discount 2s infinite;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {

    /* Hide desktop sidebar */
    .mfc-desktop-sidebar {
        display: none;
    }

    /* Show mobile bar */
    .mfc-mobile-bar {
        display: block;
    }
}

@media (min-width: 769px) {

    /* Show desktop sidebar */
    .mfc-desktop-sidebar {
        display: block;
    }

    /* Hide mobile bar */
    .mfc-mobile-bar {
        display: none;
    }
}


/* ========================================
   EMAIL VERIFICATION MODAL
   ======================================== */

.mfc-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.mfc-verification-modal.active {
    display: flex !important;
}

.mfc-verification-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mfc-verification-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.mfc-verification-close:hover {
    color: #333;
}

.verification-state {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Loading Spinner */
.verification-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Verification Icons */
.verification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #ffffff;
    animation: scaleInBounce 0.6s ease;
}

.verification-icon.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.verification-icon.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

@keyframes scaleInBounce {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Text Styles */
.verification-title {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
}

.verification-subtitle {
    font-size: 17px;
    color: #666;
    margin: 0 0 25px 0;
}

.verification-error-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Discount Code Box */
.verification-discount-box {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 14px;
    padding: 30px 25px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.25);
}

.verification-discount-label {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verification-discount-code {
    font-size: 38px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

.verification-copy-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #FF8C00;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.verification-copy-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.verification-validity {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 12px;
    font-style: italic;
}

/* Upgrade Section */
.verification-upgrade-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 14px;
    padding: 30px 25px;
    margin-top: 25px;
}

.verification-upgrade-fire {
    font-size: 45px;
    margin-bottom: 15px;
    animation: fireFlicker 1.5s infinite;
}

@keyframes fireFlicker {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.verification-upgrade-title {
    font-size: 22px;
    font-weight: bold;
    color: #d32f2f;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verification-upgrade-description {
    font-size: 16px;
    color: #555;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.verification-phone-display {
    font-size: 18px;
    color: #333;
    margin: 15px 0 20px 0;
    font-weight: 600;
}

.verification-phone-btn {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.verification-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* OTP Section */
.verification-otp-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
}

.verification-otp-phone {
    font-size: 17px;
    color: #666;
    margin: 10px 0 25px 0;
    line-height: 1.6;
}

.verification-otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.verification-otp-digit {
    width: 55px;
    height: 65px;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.verification-otp-digit:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
}

.verification-otp-timer {
    font-size: 15px;
    color: #666;
    margin: 18px 0;
    font-weight: 600;
}

.verification-otp-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.verification-verify-btn {
    flex: 1;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verification-verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.verification-resend-btn {
    background: #f5f5f5;
    color: #666;
    border: 2px solid #ddd;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verification-resend-btn:hover {
    background: #e8e8e8;
}

/* Success Upgraded State */
.verification-success-upgraded {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    margin: 20px 0;
}

.verification-final-code {
    background: rgba(255, 255, 255, 0.25);
    padding: 25px 20px;
    border-radius: 10px;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mfc-verification-content {
        padding: 40px 25px;
        margin: 20px;
    }

    .verification-title {
        font-size: 26px;
    }

    .verification-discount-code {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .verification-otp-inputs {
        gap: 8px;
    }

    .verification-otp-digit {
        width: 45px;
        height: 55px;
        font-size: 22px;
    }

    .verification-otp-buttons {
        flex-direction: column;
    }
}


/* ========================================
   OUTLET SELECTOR MODAL
   ======================================== */

.mfc-outlet-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 110000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mfc-outlet-overlay.active {
    display: flex !important;
    animation: fadeIn 0.25s ease;
}

.mfc-outlet-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px 35px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    text-align: center;
    animation: modalSlideIn 0.35s ease;
}

.mfc-outlet-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 1;
}

.mfc-outlet-close:hover {
    color: var(--primary-red);
}

.mfc-outlet-logo {
    margin-bottom: 18px;
    text-align: center;
    width: 100%;
}

.mfc-outlet-logo img {
    max-width: 110px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.mfc-outlet-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    font-family: 'Poppins', sans-serif;
}

.mfc-outlet-subtitle {
    font-size: 15px;
    color: #777;
    margin: 0 0 24px 0;
}

.mfc-outlet-cards {
    display: flex;
    gap: 16px;
}

.mfc-outlet-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 20px;
    border: 2px solid #eee;
    border-radius: 14px;
    background: #fafafa;
    text-decoration: none;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mfc-outlet-card:hover {
    border-color: var(--primary-red);
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(215, 58, 49, 0.15);
}

.mfc-outlet-card:active {
    transform: translateY(-1px);
}

.mfc-outlet-card-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.mfc-outlet-card-city {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.mfc-outlet-card-address {
    font-size: 13px;
    color: #888;
    margin: 0 0 14px 0;
    line-height: 1.4;
}

.mfc-outlet-card-btn {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.3s ease;
}

.mfc-outlet-card:hover .mfc-outlet-card-btn {
    background: #b82e27;
}

/* Outlet Selector Responsive */
@media (max-width: 576px) {
    .mfc-outlet-modal {
        padding: 32px 20px 28px;
        margin: 10px;
        border-radius: 16px;
    }

    .mfc-outlet-cards {
        flex-direction: column;
        gap: 12px;
    }

    .mfc-outlet-card {
        padding: 20px 16px 16px;
    }

    .mfc-outlet-title {
        font-size: 20px;
    }

    .mfc-outlet-logo img {
        max-width: 90px;
    }
}