@font-face {
    font-family: 'Outfit';
    src: url('https://cdn.littlecaesarsmenus.us/assets/fonts/Outfit-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('https://cdn.littlecaesarsmenus.us/assets/fonts/Outfit-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('https://cdn.littlecaesarsmenus.us/assets/fonts/Outfit-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-orange: #FF6600;
    --dark-orange: #E65C00;
    --black: #111111;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --grey: #666666;
    --light-grey: #eeeeee;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
}

.lc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.lc-section-padding {
    padding: 80px 0;
}

.lc-alternate-bg {
    background-color: var(--off-white);
}

.lc-text-center {
    text-align: center;
}

.lc-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.lc-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}


/* Buttons */
.lc-btn-orange {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
}

.lc-btn-orange:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.lc-btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
}

.lc-btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-orange);
}

.lc-btn-orange.lc-large, .lc-btn-outline.lc-large {
    padding: 15px 35px;
    font-size: 1.2rem;
}

/* Hero Section */
.lc-hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.lc-hero-content {
    max-width: 800px;
}

.lc-badge {
    background-color: var(--primary-orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.lc-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.lc-hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.lc-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Grid & Cards */
.lc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .lc-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lc-grid-3 {
        grid-template-columns: 1fr;
    }
}

.lc-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.lc-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.lc-card-img {
    height: 250px;
    overflow: hidden;
}

.lc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.lc-card-info {
    padding: 30px;
}

.lc-card-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.lc-card-tag {
    display: inline-block;
    background-color: var(--light-grey);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.lc-card-tag.lc-highlight {
    background-color: var(--primary-orange);
    color: var(--white);
}

.lc-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.lc-price {
    color: var(--primary-orange);
    font-weight: 900;
    font-size: 1.4rem;
}

.lc-calories {
    color: var(--grey);
    font-size: 0.9rem;
    font-weight: 700;
}

.lc-card-info p {
    color: var(--grey);
    margin-bottom: 25px;
}

.lc-btn-add, .lc-btn-category {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background-color: var(--light-grey);
    color: var(--black);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.lc-btn-add:hover, .lc-btn-category:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    
    .lc-hero h1 {
        font-size: 3rem;
    }
    
    .lc-hero p {
        font-size: 1.1rem;
    }
    
    
    .lc-hero-btns {
        flex-direction: column;
    }
}
/* Content Sections */
.lc-info-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.lc-info-section.lc-reverse {
    flex-direction: row-reverse;
}

.lc-info-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.lc-info-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.lc-info-text {
    flex: 1;
}

.lc-info-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lc-info-text p {
    font-size: 1.15rem;
    color: var(--grey);
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .lc-info-section, .lc-info-section.lc-reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .lc-info-text h2 {
        font-size: 2rem;
    }
    
    .lc-info-image img {
        height: 300px;
    }
}
/* FAQ Accordion */
.lc-faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.lc-faq-item {
    background-color: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.lc-faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
}

.lc-faq-question:hover {
    color: var(--primary-orange);
}

.lc-faq-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.lc-faq-answer {
    padding: 0 30px 25px;
    color: var(--grey);
    display: none;
    line-height: 1.6;
}

.lc-faq-item.lc-active .lc-faq-answer {
    display: block;
}

.lc-faq-item.lc-active .lc-faq-question {
    color: var(--primary-orange);
}

.lc-faq-item.lc-active .lc-faq-icon {
    transform: rotate(45deg);
}
/* App Promo */
.lc-app-promo {
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.lc-promo-text {
    flex: 1;
}

.lc-promo-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.lc-promo-text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.lc-benefit-list {
    margin-bottom: 40px;
}

.lc-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.lc-benefit-item span {
    background-color: rgba(255,255,255,0.2);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.lc-promo-image {
    flex: 1;
}

.lc-promo-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .lc-app-promo {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    
    .lc-promo-text h2 {
        font-size: 2.2rem;
    }
    
    .lc-benefit-item {
        justify-content: center;
    }
}

/* Ingredients Pillars */
.lc-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.lc-ingredient-item {
    text-align: center;
    padding: 30px;
    background: var(--off-white);
    border-radius: 20px;
    transition: var(--transition);
}

.lc-ingredient-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.lc-ingredient-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.lc-ingredient-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lc-ingredient-item h4 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-orange);
}

.lc-ingredient-item p {
    color: var(--grey);
    font-size: 0.95rem;
}

/* Testimonials */
.lc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.lc-testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    text-align: left;
}

.lc-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.1;
    font-family: serif;
}

.lc-testimonial-content {
    font-style: italic;
    color: var(--grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.lc-testimonial-author {
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lc-testimonial-author::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--primary-orange);
}

@media (max-width: 930px) {
    .lc-testimonials-grid, .lc-ingredients-grid {
        grid-template-columns: 1fr;
    }
}

/* Locations Page */
.lc-location-hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.lc-state-group {
    margin-bottom: 60px;
}

.lc-state-group .lc-section-title {
    text-align: left;
    margin-bottom: 30px;
    border-left: 8px solid var(--primary-orange);
    padding-left: 20px;
}

.lc-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.lc-location-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--off-white);
    display: flex;
    flex-direction: column;
}

.lc-location-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.lc-location-card h4 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.lc-location-card p {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 5px;
    line-height: 1.4;
}

.lc-location-card .lc-phone {
    display: inline-block;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 20px;
    text-decoration: none;
}

.lc-location-card .lc-phone:hover {
    color: var(--primary-orange);
}

.lc-location-card .lc-hours {
    font-size: 0.85rem;
    color: var(--grey);
    padding-top: 20px;
    border-top: 1px solid var(--off-white);
    margin-top: auto;
}

/* Search Functionality */
.lc-search-section {
    background-color: var(--off-white);
    padding: 40px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.lc-search-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.lc-search-box input {
    width: 100%;
    padding: 20px 30px;
    padding-left: 60px;
    border-radius: 50px;
    border: 2px solid transparent;
    background: var(--white);
    box-shadow: var(--shadow);
    font-size: 1.1rem;
    font-family: inherit;
    transition: var(--transition);
}

.lc-search-box input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-hover);
}

.lc-search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--grey);
}

/* Animations for search results */
.lc-location-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lc-location-card[style*="display: none"] {
    opacity: 0;
    transform: scale(0.9);
}

/* Nutrition Page */
.lc-nutrition-hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.lc-nutrition-table-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 40px;
}

.lc-nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.lc-nutrition-table th {
    background-color: var(--primary-orange);
    color: var(--white);
    text-align: left;
    padding: 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.lc-nutrition-table td {
    padding: 20px;
    border-bottom: 1px solid var(--off-white);
    font-size: 1rem;
    color: var(--black);
}

.lc-nutrition-table tr:hover {
    background-color: #fff9f5;
}

.lc-nutrition-table tr:last-child td {
    border-bottom: none;
}

.lc-item-name {
    font-weight: 900;
    color: var(--black);
}

.lc-macro-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 5px;
}

.lc-macro-cal { background: #fef1e6; color: #d45d00; }
.lc-macro-fat { background: #f0fdf4; color: #166534; }
.lc-macro-pro { background: #eff6ff; color: #1e40af; }

.lc-disclaimer-box {
    background-color: #fffaf0;
    border-left: 5px solid var(--primary-orange);
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
}

.lc-disclaimer-box p {
    font-size: 0.95rem;
    color: var(--grey);
}

@media (max-width: 768px) {
    .lc-nutrition-table th:nth-child(n+3),
    .lc-nutrition-table td:nth-child(n+3) {
        display: none;
    }
    .lc-nutrition-table::after {
        content: '* Scroll right for more details';
        display: block;
        font-size: 0.8rem;
        padding: 10px;
        color: var(--grey);
        text-align: center;
    }
}

/* Calorie Tracker Widget Styles */
.lc-card {
    position: relative;
}

.lc-add-cal-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
    transition: var(--transition);
    z-index: 10;
}

.lc-add-cal-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background-color: var(--dark-orange);
    box-shadow: 0 6px 18px rgba(255, 102, 0, 0.5);
}

#lc-calorie-tracker.lc-calorie-tracker {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(255, 102, 0, 0.1);
    z-index: 2000;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px 15px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

#lc-calorie-tracker.lc-calorie-tracker.lc-active {
    transform: translateX(-50%) translateY(0);
}

.lc-tracker-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lc-tracker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 15px;
}

.lc-tracker-item .lc-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.lc-tracker-item .lc-value {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}

.lc-tracker-divider {
    width: 1px;
    height: 30px;
    background-color: var(--light-grey);
}

.lc-reset-icon {
    background: var(--off-white);
    border: none;
    color: var(--grey);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lc-reset-icon:hover {
    background-color: #ffeae0;
    color: var(--primary-orange);
    transform: rotate(-180deg);
}

@media (max-width: 500px) {
    #lc-calorie-tracker.lc-calorie-tracker {
        bottom: 20px;
        width: 90%;
        padding: 8px 10px;
    }
    
    .lc-tracker-content {
        gap: 10px;
        justify-content: space-between;
    }
    
    .lc-tracker-item {
        padding: 5px;
    }
}
