/* ===== GLOBAL STYLES & VARIABLES ===== */
:root {
    --primary-color: #ffd700; /* Bright Gold */
    --primary-color-dark: #f1cd04;
    --secondary-color: #8b4513; /* Rich Brown */
    --dark-color: #1f1a13;      /* Near Black */
    --light-color: #ffffff;      /* White */
    --text-color: #333333;
    --light-gray-bg: #f9f6f1;
    --border-color: #e9e1d5;
    --danger-color: #e74c3c; /* For cart remove buttons */
    
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-headings: 'Times New Roman', Times, serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    padding-top: 90px;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    color: var(--dark-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== REUSABLE COMPONENTS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section--light-bg {
    background-color: var(--light-gray-bg);
}

.section__header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section__badge {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.section__title {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 10px;
}

.section__subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #666;
}

.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
    cursor: pointer; /* Ensure buttons show a pointer */
    border: none; /* Reset border for button elements */
}

.button--primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
}

.button--primary:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
}

.button--secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.button--secondary:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.button--large {
    padding: 15px 35px;
    font-size: 18px;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out; /* Moved from bottom for consistency */
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header__logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo-img {
    height: 60px;
}

.header__logo-text {
    display: none; /* Hidden on small screens to save space */
}

.header__logo-title {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 700;
}

.header__logo-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
    display: block;
}

.header__nav {
    position: fixed;
    top: 90px; /* Height of header */
    right: 0;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 90px);
    background-color: var(--dark-color);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.header__nav--active {
    transform: translateX(0);
}

.header__nav-list {
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 15px;
}

.header__nav-link {
    font-size: 18px;
    padding: 10px 15px;
    display: block;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.header__nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header__cta-button {
    display: none; /* Hidden on mobile, hamburger is used instead */
}

.header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.header__hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger--active .header__hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.header__hamburger--active .header__hamburger-line:nth-child(2) {
    opacity: 0;
}
.header__hamburger--active .header__hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    background: url('assets/hero-bg.avif') no-repeat center center/cover;
    color: var(--light-color);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__overlay {
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero__content {
    text-align: center;
    max-width: fit-content;
}

.hero__badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.hero__title {
    font-size: clamp(36px, 8vw, 60px);
    color: var(--light-color);
    margin-bottom: 20px;
}

.hero__title--highlight {
    color: var(--primary-color);
}

.hero__description {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* ===== FEATURED DISHES SECTION ===== */
.featured__grid {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr;
}

.dish-card {
    background-color: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.dish-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dish-card__content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dish-card__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.dish-card__description {
    font-size: 15px;
    color: #666;
    flex-grow: 1;
    margin-bottom: 15px;
}

.dish-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.dish-card__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.dish-card__tag {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

.dish-card__tag--special { background-color: #e9c46a; color: var(--dark-color); }
.dish-card__tag--selling { background-color: #f4a261; color: var(--light-color); }
.dish-card__tag--favourite { background-color: #e76f51; color: var(--light-color); }

/* ===== WHY CHOOSE US SECTION ===== */
.features__grid {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr;
}

.feature-card {
    text-align: center;
    padding: 25px;
    background-color: var(--light-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.feature-card__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card__description {
    font-size: 15px;
    color: #666;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 60px 0;
}

.cta__container {
    text-align: center;
}

.cta__title {
    font-size: clamp(26px, 5vw, 36px);
    margin-bottom: 15px;
}

.cta__text {
    margin-bottom: 25px;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 60px 0 0;
}

.footer__container {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.footer__logo-title {
    font-family: var(--font-headings);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer__description {
    font-size: 15px;
    max-width: 350px;
}

.footer__heading {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer__icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.footer__links-list li:not(:last-child) {
    margin-bottom: 10px;
}

.footer__link {
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--primary-color);
}

.footer__bottom {
    background-color: rgba(0,0,0,0.3);
    padding: 20px;
    text-align: center;
}

.footer__copyright {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer__socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer__social-link img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer__social-link:hover img {
    opacity: 1;
}

/* ===== MEDIA QUERIES (TABLETS & UP) ===== */
@media (min-width: 768px) {
    .section { padding: 80px 0; }

    /* Header */
    .header__logo-text { display: block; }
    .header__hamburger { display: none; }
    .header__nav {
        position: static;
        transform: none;
        width: auto;
        height: auto;
        background: none;
    }
    .header__nav-list {
        flex-direction: row;
        padding: 0;
        gap: 20px;
    }
    .header__nav-link { font-size: 16px; padding: 5px; }
    .header__cta-button {
        display: inline-block;
        padding: 8px 20px;
        font-size: 15px;
        background-color: var(--primary-color);
        color: var(--dark-color);
        border-radius: 50px;
    }

    /* Hero */
    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Grids */
    .featured__grid { grid-template-columns: repeat(2, 1fr); }
    .features__grid { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer__container { grid-template-columns: repeat(2, 1fr); }
    .footer__bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer__copyright { margin-bottom: 0; }
}

/* ===== MEDIA QUERIES (DESKTOPS & UP) ===== */
@media (min-width: 1024px) {
    /* Grids */
    .featured__grid { grid-template-columns: repeat(3, 1fr); }
    .features__grid { grid-template-columns: repeat(4, 1fr); }

    /* Footer */
    .footer__container {
        grid-template-columns: 2fr 1fr 1fr 1fr; /* Custom layout for desktop */
    }
}

/* ===== SHARED SUB-PAGE HERO STYLES ===== */
.page-hero {
    background: url('assets/menu-bg.avif') no-repeat center center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
}

.page-hero__title {
    font-size: clamp(32px, 6vw, 48px);
    color: var(--light-color);
    margin-bottom: 10px;
}

.page-hero__subtitle {
    font-size: clamp(16px, 3vw, 18px);
    max-width: 600px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .page-hero {
        min-height: 50vh;
    }
}


/* Menu Enhancements moved to menu.css */

/* ===== GALLERY PAGE STYLES ===== */

/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background-color: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}

.filter-btn.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}

/* Image Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.gallery-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item__image {
    transform: scale(1.1);
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__title {
    color: var(--light-color);
    font-size: 18px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item__title {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.lightbox__image {
    max-height: 80vh;
    max-width: 90vw;
    border-radius: 5px;
}

.lightbox__caption {
    color: var(--light-color);
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
}

.lightbox__close {
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 40px;
    color: var(--light-color);
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}
.lightbox__nav--prev { left: 15px; }
.lightbox__nav--next { right: 15px; }

/* ===== GALLERY PAGE (TABLETS & UP) ===== */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ===== GALLERY PAGE (DESKTOPS & UP) ===== */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== SOCIAL CTA SECTION ===== */
.social-cta__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.social-card {
    position: relative;
    display: block;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--light-color);
}

.social-card__background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.social-card:hover .social-card__background {
    transform: scale(1.1);
}

.social-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: background-color 0.4s ease;
}

.social-card:hover .social-card__overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.social-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    filter: invert(1);
}

.social-card__title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 20px;
}

.social-card__button {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid var(--light-color);
    border-radius: 50px;
    font-weight: 600;
    background-color: transparent;
    transition: all 0.2s ease;
}

.social-card:hover .social-card__button {
    background-color: var(--light-color);
    color: var(--dark-color);
}

@media (min-width: 768px) {
    .social-cta__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-details__title,
.order-box__title {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 30px;
}

.contact-details__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-details__icon {
    width: 24px;
    height: 24px;
    margin-top: 5px;
}

.contact-details__item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-details__item p {
    color: #666;
}

.order-box {
    background-color: var(--light-gray-bg);
    padding: 30px;
    border-radius: 12px;
}

.order-box__method {
    margin-bottom: 30px;
}

.order-box__method h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.order-box__icon {
    width: 24px;
    height: 24px;
}

/* New button utility class */
.button--fullwidth {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.button--whatsapp {
    background-color: #25D366; /* Official WhatsApp Green */
    border-color: #25D366;
    color: var(--light-color); /* Added for better contrast */
}
.button--whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: var(--light-color); /* Added for better contrast */
}

.order-box__note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

/* ===== CONTACT PAGE (TABLETS & UP) ===== */
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== BLOGS LANDING PAGE STYLES ===== */

/* About Story Section */
.about-story {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-story p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-story__highlight {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--light-gray-bg);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 18px;
    color: var(--secondary-color);
}

/* Blog Grid Section */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-card {
    background-color: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card__content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card__tag {
    display: inline-block;
    align-self: flex-start; /* Makes the tag only as wide as its content */
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-card__title {
    font-size: 20px;
    margin-bottom: 10px;
    flex-grow: 1; /* Pushes "Read More" to the bottom */
}

.blog-card__excerpt {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.blog-card__readmore {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: auto; /* Aligns to the bottom */
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== HEADER SCROLL EFFECT ===== */
.header--scrolled {
    background-color: rgba(31, 26, 19, 0.9); /* Makes it slightly transparent */
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(5px); /* Adds a cool frosted glass effect (on supported browsers) */
}


/* Cart styles moved to menu.css */
 
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
 
       = = = = =   G L O B A L   C A R T   U I   ( M o v e d   f r o m   m e n u . c s s )   = = = = = 
 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 
 
 
 / *   O v e r l a y / P o p u p   * / 
 
 . c a r t - o v e r l a y   { 
 
         p o s i t i o n :   f i x e d ;   t o p :   0 ;   l e f t :   0 ;   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   
 
         b a c k g r o u n d - c o l o r :   r g b a ( 0 , 0 , 0 , 0 . 6 ) ;   z - i n d e x :   2 0 0 0 ;   
 
         o p a c i t y :   0 ;   p o i n t e r - e v e n t s :   n o n e ;   t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ; 
 
 } 
 
 . c a r t - p o p u p   { 
 
         p o s i t i o n :   f i x e d ;   t o p :   5 0 % ;   l e f t :   5 0 % ;   t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 4 0 % )   s c a l e ( 0 . 9 5 ) ; 
 
         w i d t h :   9 5 % ;   m a x - w i d t h :   5 0 0 p x ;   b a c k g r o u n d - c o l o r :   v a r ( - - l i g h t - c o l o r ) ; 
 
         b o r d e r - r a d i u s :   1 6 p x ;   z - i n d e x :   2 0 0 1 ;   
 
         d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   m a x - h e i g h t :   9 0 v h ; 
 
         o p a c i t y :   0 ;   p o i n t e r - e v e n t s :   n o n e ;   t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 
         b o x - s h a d o w :   0   1 0 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 2 ) ; 
 
 } 
 
 
 
 . c a r t - o v e r l a y . a c t i v e ,   . c a r t - p o p u p . a c t i v e   { 
 
         o p a c i t y :   1 ;   p o i n t e r - e v e n t s :   a u t o ; 
 
 } 
 
 . c a r t - p o p u p . a c t i v e   {   t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % )   s c a l e ( 1 ) ;   } 
 
 
 
 / *   H e a d e r   * / 
 
 . c a r t - p o p u p _ _ h e a d e r   { 
 
         p a d d i n g :   1 5 p x   2 0 p x ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
 
         d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;   a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 . c a r t - p o p u p _ _ t i t l e   {   f o n t - s i z e :   2 0 p x ;   m a r g i n :   0 ;   } 
 
 . c a r t - p o p u p _ _ c l o s e   {   b a c k g r o u n d :   n o n e ;   b o r d e r :   n o n e ;   f o n t - s i z e :   2 8 p x ;   c u r s o r :   p o i n t e r ;   c o l o r :   # 9 9 9 ;   } 
 
 
 
 / *   P r o g r e s s   B a r   * / 
 
 . c a r t - p r o g r e s s - s e c t i o n   { 
 
         p a d d i n g :   1 5 p x   2 0 p x ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - l i g h t - g r a y - b g ) ; 
 
 } 
 
 . c a r t - p r o g r e s s - b a r - c o n t a i n e r   { 
 
         h e i g h t :   8 p x ; 
 
         b a c k g r o u n d - c o l o r :   # e 0 e 0 e 0 ; 
 
         b o r d e r - r a d i u s :   4 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         m a r g i n - b o t t o m :   8 p x ; 
 
 } 
 
 . c a r t - p r o g r e s s - b a r   { 
 
         h e i g h t :   1 0 0 % ; 
 
         w i d t h :   0 % ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # f f 9 8 0 0 ,   # f f d 7 0 0 ,   # 2 e c c 7 1 ) ; 
 
         t r a n s i t i o n :   w i d t h   0 . 5 s   e a s e ; 
 
 } 
 
 . c a r t - p r o g r e s s - t e x t   {   f o n t - s i z e :   1 3 p x ;   c o l o r :   # 6 6 6 ;   t e x t - a l i g n :   c e n t e r ;   f o n t - w e i g h t :   5 0 0 ;   } 
 
 
 
 / *   R e w a r d   C a r d   * / 
 
 . u n l o c k - r e w a r d   { 
 
         m a r g i n :   1 0 p x   2 0 p x   0 ; 
 
         p a d d i n g :   1 0 p x ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   c e n t e r ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 0 p x ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         a n i m a t i o n :   s l i d e I n R e w a r d   0 . 5 s   e a s e ; 
 
         d i s p l a y :   n o n e ;   
 
 } 
 
 @ k e y f r a m e s   s l i d e I n R e w a r d   { 
 
         f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;   } 
 
         t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
 
 } 
 
 
 
 / *   B o d y   ( I t e m s )   * / 
 
 . c a r t - p o p u p _ _ b o d y   { 
 
         p a d d i n g :   2 0 p x ; 
 
         o v e r f l o w - y :   a u t o ; 
 
         f l e x - g r o w :   1 ; 
 
 } 
 
 . c a r t - i t e m   { 
 
         d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         p a d d i n g :   1 0 p x   0 ; 
 
         b o r d e r - b o t t o m :   1 p x   d a s h e d   v a r ( - - b o r d e r - c o l o r ) ; 
 
 } 
 
 . c a r t - i t e m - i n f o   {   f l e x - g r o w :   1 ;   } 
 
 . c a r t - i t e m - t i t l e   {   f o n t - w e i g h t :   6 0 0 ;   d i s p l a y :   b l o c k ;   f o n t - s i z e :   1 5 p x ;   } 
 
 . c a r t - i t e m - p r i c e   {   f o n t - s i z e :   1 3 p x ;   c o l o r :   # 6 6 6 ;   } 
 
 . c a r t - i t e m - c o n t r o l s   { 
 
         d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 0 p x ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - l i g h t - g r a y - b g ) ; 
 
         p a d d i n g :   5 p x   1 0 p x ;   b o r d e r - r a d i u s :   5 0 p x ; 
 
 } 
 
 . c a r t - c o n t r o l - b t n   {   b a c k g r o u n d :   n o n e ;   b o r d e r :   n o n e ;   f o n t - w e i g h t :   b o l d ;   c u r s o r :   p o i n t e r ;   f o n t - s i z e :   1 6 p x ;   c o l o r :   v a r ( - - s e c o n d a r y - c o l o r ) ;   } 
 
 . c a r t - i t e m - q t y   {   f o n t - w e i g h t :   6 0 0 ;   w i d t h :   2 0 p x ;   t e x t - a l i g n :   c e n t e r ;   } 
 
 
 
 / *   F o o t e r   ( C o n t r o l s   &   T o t a l s )   * / 
 
 . c a r t - p o p u p _ _ f o o t e r   { 
 
         p a d d i n g :   2 0 p x ; 
 
         b a c k g r o u n d - c o l o r :   # f a f a f a ; 
 
         b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
 
         b o r d e r - r a d i u s :   0   0   1 6 p x   1 6 p x ; 
 
 } 
 
 
 
 / *   O p t i o n s   G r i d   * / 
 
 . c a r t - o p t i o n s   { 
 
         d i s p l a y :   g r i d ; 
 
         g a p :   1 5 p x ; 
 
         m a r g i n - b o t t o m :   2 0 p x ; 
 
 } 
 
 . o p t i o n - g r o u p   { 
 
         d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;   a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 . o p t i o n - l a b e l   {   f o n t - s i z e :   1 4 p x ;   f o n t - w e i g h t :   6 0 0 ;   } 
 
 
 
 / *   T o g g l e   S w i t c h   S t y l e   * / 
 
 . t o g g l e - s w i t c h   { 
 
         b a c k g r o u n d - c o l o r :   # e 0 e 0 e 0 ; 
 
         b o r d e r - r a d i u s :   5 0 p x ; 
 
         p a d d i n g :   3 p x ; 
 
         d i s p l a y :   f l e x ; 
 
 } 
 
 . t o g g l e - s w i t c h   i n p u t   {   d i s p l a y :   n o n e ;   } 
 
 . t o g g l e - s w i t c h   l a b e l   { 
 
         p a d d i n g :   6 p x   1 2 p x ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         b o r d e r - r a d i u s :   5 0 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 
 } 
 
 . t o g g l e - s w i t c h   i n p u t : c h e c k e d   +   l a b e l   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
 
         c o l o r :   v a r ( - - l i g h t - c o l o r ) ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
 } 
 
 
 
 / *   L o c a t i o n   S e c t i o n   * / 
 
 . l o c a t i o n - s e c t i o n   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - l i g h t - c o l o r ) ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         p a d d i n g :   1 0 p x ; 
 
 } 
 
 . l o c a t i o n - c o n t r o l s   { 
 
         d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 0 p x ; 
 
         m a r g i n - b o t t o m :   5 p x ; 
 
 } 
 
 . l o c a t i o n - b t n   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - l i g h t - g r a y - b g ) ; 
 
         b o r d e r :   1 p x   s o l i d   # c c c ; 
 
         b o r d e r - r a d i u s :   4 p x ; 
 
         p a d d i n g :   8 p x   1 2 p x ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   5 p x ; 
 
 } 
 
 . l o c a t i o n - d i v i d e r   {   f o n t - s i z e :   1 2 p x ;   c o l o r :   # 9 9 9 ;   f o n t - w e i g h t :   b o l d ;   } 
 
 . l o c a t i o n - i n p u t   { 
 
         f l e x - g r o w :   1 ; 
 
         b o r d e r :   1 p x   s o l i d   # c c c ; 
 
         b o r d e r - r a d i u s :   4 p x ; 
 
         p a d d i n g :   8 p x ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
 } 
 
 . l o c a t i o n - s t a t u s   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         m a r g i n - t o p :   5 p x ; 
 
         c o l o r :   v a r ( - - s e c o n d a r y - c o l o r ) ; 
 
 } 
 
 . l o c a t i o n - s t a t u s . s u c c e s s   {   c o l o r :   v a r ( - - s u c c e s s - c o l o r ) ;   } 
 
 . l o c a t i o n - s t a t u s . e r r o r   {   c o l o r :   v a r ( - - d a n g e r - c o l o r ) ;   } 
 
 
 
 / *   T o t a l s   * / 
 
 . c a r t - t o t a l s   { 
 
         m a r g i n - b o t t o m :   2 0 p x ; 
 
         b o r d e r - t o p :   1 p x   s o l i d   # e e e ; 
 
         p a d d i n g - t o p :   1 5 p x ; 
 
 } 
 
 . t o t a l - r o w   { 
 
         d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         m a r g i n - b o t t o m :   5 p x ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
 } 
 
 . t o t a l - r o w . d i s c o u n t - r o w   {   c o l o r :   v a r ( - - s u c c e s s - c o l o r ) ;   } 
 
 . t o t a l - r o w . t o t a l - f i n a l   { 
 
         f o n t - s i z e :   1 8 p x ; 
 
         m a r g i n - t o p :   1 0 p x ; 
 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
 
 } 
 
 
 
 . p l a c e - o r d e r - b t n   { 
 
         w i d t h :   1 0 0 % ; 
 
         d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   c e n t e r ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 0 p x ; 
 
         f o n t - s i z e :   1 6 p x ; 
 
 } 
 
 . p l a c e - o r d e r - b t n : d i s a b l e d   { 
 
         b a c k g r o u n d - c o l o r :   # c c c ; 
 
         c u r s o r :   n o t - a l l o w e d ; 
 
         b o r d e r - c o l o r :   # c c c ; 
 
 } 
 
 
 
 / *   F l o a t i n g   B u t t o n   * / 
 
 . f l o a t i n g - c a r t   { 
 
         p o s i t i o n :   f i x e d ;   b o t t o m :   2 5 p x ;   r i g h t :   2 5 p x ;   z - i n d e x :   1 0 0 1 ;   
 
         w i d t h :   6 5 p x ;   h e i g h t :   6 5 p x ;   b o r d e r - r a d i u s :   5 0 % ;   b o r d e r :   n o n e ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;   c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
 
         f o n t - s i z e :   2 4 p x ;   c u r s o r :   p o i n t e r ;   b o x - s h a d o w :   0   5 p x   2 0 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 2 s ; 
 
         d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   c e n t e r ;   a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 . f l o a t i n g - c a r t : h o v e r   {   t r a n s f o r m :   s c a l e ( 1 . 1 ) ;   } 
 
 . f l o a t i n g - c a r t _ _ b a d g e   { 
 
         p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   r i g h t :   0 ; 
 
         w i d t h :   2 4 p x ;   h e i g h t :   2 4 p x ;   b a c k g r o u n d - c o l o r :   v a r ( - - d a n g e r - c o l o r ) ; 
 
         c o l o r :   w h i t e ;   f o n t - s i z e :   1 2 p x ;   b o r d e r - r a d i u s :   5 0 % ; 
 
         d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   c e n t e r ;   a l i g n - i t e m s :   c e n t e r ; 
 
         b o r d e r :   2 p x   s o l i d   w h i t e ; 
 
 } 
 
 . h i d d e n   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   } 
 
 
 
 / *   A d d   B u t t o n   R o u n d   ( G l o b a l )   * / 
 
 . m e n u - c a r d _ _ a d d - b t n   { 
 
         a l i g n - s e l f :   f l e x - e n d ;   / *   A l i g n   t o   r i g h t   * / 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - l i g h t - g r a y - b g ) ; 
 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
 
         b o r d e r :   n o n e ; 
 
         w i d t h :   4 0 p x ; 
 
         h e i g h t :   4 0 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         f o n t - s i z e :   2 0 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 . m e n u - c a r d _ _ a d d - b t n : h o v e r   { 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 
         c o l o r :   v a r ( - - d a r k - c o l o r ) ; 
 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 
 } 
 
 . m e n u - c a r d _ _ a d d - b t n . c l i c k e d   { 
 
         a n i m a t i o n :   p o p   0 . 3 s   e a s e ; 
 
 } 
 
 @ k e y f r a m e s   p o p   { 
 
         0 %   {   t r a n s f o r m :   s c a l e ( 1 ) ;   } 
 
         5 0 %   {   t r a n s f o r m :   s c a l e ( 1 . 3 ) ;   } 
 
         1 0 0 %   {   t r a n s f o r m :   s c a l e ( 1 ) ;   } 
 
 } 
 
 
 
 / *   F e a t u r e d   D i s h   O r d e r   B u t t o n   O v e r r i d e   * / 
 
 . d i s h - c a r d _ _ o r d e r - b t n   { 
 
         w i d t h :   a u t o   ! i m p o r t a n t ;   / *   O v e r r i d e   f i x e d   w i d t h   * / 
 
         p a d d i n g :   8 p x   2 0 p x   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   5 0 p x   ! i m p o r t a n t ; 
 
         g a p :   8 p x   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ; 
 
         f o n t - s i z e :   1 4 p x   ! i m p o r t a n t ; 
 
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y - c o l o r )   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 3 ) ; 
 
 } 
 
 
 
 . d i s h - c a r d _ _ o r d e r - b t n : h o v e r   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x )   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   0   6 p x   1 5 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 4 )   ! i m p o r t a n t ; 
 
 } 
 
 