﻿/* =====================================================
   RESTAURANT POS PAGE
===================================================== */

:root {
    --restaurant-primary: #0b63ce;
    --restaurant-primary-dark: #063b82;
    --restaurant-secondary: #06a6c7;
    --restaurant-dark: #071c35;
    --restaurant-heading: #0f172a;
    --restaurant-text: #64748b;
    --restaurant-light: #f4f8ff;
    --restaurant-border: #dbeafe;
    --restaurant-white: #ffffff;
}


/* =====================================================
   RESTAURANT POS HERO SECTION
===================================================== */

.restaurant-hero {
    min-height: 485px;
    margin-top: 68px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--restaurant-white);
    background-image: linear-gradient( 90deg, rgba(4, 19, 42, 0.50) 0%, rgba(5, 39, 83, 0.32) 35%, rgba(7, 78, 146, 0.08) 65%, rgba(7, 78, 146, 0.00) 100% ), url("/images/products/restaurant-pos/restaurant-pos-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


    /* Decorative overlay */

    .restaurant-hero::before {
        content: "";
        position: absolute;
        width: 330px;
        height: 330px;
        top: -150px;
        left: -100px;
        border-radius: 50%;
        background: rgba(56, 189, 248, 0.12);
        filter: blur(10px);
    }


    .restaurant-hero::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        bottom: -160px;
        left: 38%;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.15);
        filter: blur(15px);
    }


    .restaurant-hero .container {
        position: relative;
        z-index: 2;
    }


.restaurant-hero-content {
    padding: 3px 0;
}


/* Hero small label */

.restaurant-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 9px 17px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #e0f2fe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
}


    .restaurant-hero-label i {
        color: #38bdf8;
        font-size: 14px;
    }


/* Hero main heading */

.restaurant-hero h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--restaurant-white);
    font-size: 62px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.8px;
}


   
    .restaurant-hero h1 span {
        color: #ffffff;
    }

/* Hero description */

.restaurant-hero-content > .row p,
.restaurant-hero-content .col-lg-7 > p {
    max-width: 680px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}


/* Hero buttons */

.restaurant-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}


.restaurant-primary-btn,
.restaurant-outline-btn {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}


/* Primary button */

.restaurant-primary-btn {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: var(--restaurant-primary-dark);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}


    .restaurant-primary-btn:hover {
        transform: translateY(-3px);
        border-color: #67d8ff;
        background: #67d8ff;
        color: #062b5b;
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
    }


/* Outline button */

.restaurant-outline-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


    .restaurant-outline-btn:hover {
        transform: translateY(-3px);
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.18);
        color: #ffffff;
    }


    /* Button icon animation */

    .restaurant-primary-btn i,
    .restaurant-outline-btn i {
        font-size: 13px;
        transition: transform 0.3s ease;
    }


.restaurant-primary-btn:hover i {
    transform: translateX(4px);
}


.restaurant-outline-btn:hover i {
    transform: translateY(3px);
}


/* Hero highlights */

.restaurant-hero-highlights {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}


.restaurant-hero-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 600;
}


    .restaurant-hero-highlight i {
        color: #4ade80;
        font-size: 14px;
    }


/* =====================================================
   RESTAURANT OVERVIEW SECTION
===================================================== */

.restaurant-overview {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: #ffffff;
}


    /* Light decorative background */

    .restaurant-overview::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        left: -250px;
        bottom: -220px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.055);
    }


    .restaurant-overview .container {
        position: relative;
        z-index: 2;
    }


/* Overview image outer wrapper */

.restaurant-overview-image-wrapper {
    position: relative;
    padding: 12px 18px 28px 0;
}


/* Overview image card */

.restaurant-overview-image {
    position: relative;
    overflow: hidden;
    padding: 13px;
    border: 1px solid var(--restaurant-border);
    border-radius: 25px;
    background: linear-gradient(145deg, #eff6ff, #ffffff);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}


    .restaurant-overview-image::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( 135deg, rgba(255, 255, 255, 0.25), transparent 45% );
    }


    .restaurant-overview-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        object-position: center;
        border-radius: 17px;
        transition: transform 0.6s ease;
    }


    .restaurant-overview-image:hover img {
        transform: scale(1.035);
    }


/* Overview floating badge */

.restaurant-overview-badge {
    position: absolute;
    right: -8px;
    bottom: 0;
    min-width: 210px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
    border: 1px solid rgba(219, 234, 254, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.restaurant-overview-badge-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: linear-gradient( 135deg, var(--restaurant-primary), var(--restaurant-secondary) );
    color: #ffffff;
    font-size: 19px;
    box-shadow: 0 10px 20px rgba(11, 99, 206, 0.25);
}


.restaurant-overview-badge strong {
    display: block;
    margin-bottom: 2px;
    color: var(--restaurant-heading);
    font-size: 16px;
    font-weight: 800;
}


.restaurant-overview-badge span {
    display: block;
    color: var(--restaurant-text);
    font-size: 13px;
    font-weight: 500;
}


/* Overview content */

.restaurant-overview-content {
    padding-left: 25px;
}


/* Common section label */

.restaurant-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--restaurant-primary);
    font-size: .90rem;
    font-weight: 800;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}


    .restaurant-section-label::before {
        content: "";
        width: 28px;
        height: 3px;
        border-radius: 10px;
        background: linear-gradient( 90deg, var(--restaurant-primary), var(--restaurant-secondary) );
    }


/* Overview heading */

.restaurant-overview-content h2 {
    margin-bottom: 22px;
    color: var(--restaurant-heading);
    font-size: 43px;
    font-weight: 850;
    line-height: 1.17;
    letter-spacing: -1px;
}


    .restaurant-overview-content h2 span {
        display: block;
        color: var(--restaurant-primary);
    }


/* Overview paragraphs */

.restaurant-overview-content > p {
    margin-bottom: 15px;
    color: var(--restaurant-text);
    font-size: 1.0rem;
    line-height: 1.8;
}


/* Overview point list */

.restaurant-overview-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 27px;
    margin-bottom: 25px;
}


.restaurant-overview-point {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    transition: all 0.3s ease;
}


    .restaurant-overview-point:hover {
        transform: translateY(-4px);
        border-color: #bfdbfe;
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
    }


.restaurant-point-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #eaf4ff;
    color: var(--restaurant-primary);
    font-size: 17px;
}


.restaurant-overview-point h3 {
    margin: 0 0 5px;
    color: var(--restaurant-heading);
    font-size: 16px;
    font-weight: 800;
}


.restaurant-overview-point p {
    margin: 0;
    color: var(--restaurant-text);
    font-size: 1.0rem;
    line-height: 1.6;
}


/* Overview text link */

.restaurant-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--restaurant-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.3s ease;
}


    .restaurant-text-link i {
        font-size: 1.0rem;
        transition: transform 0.3s ease;
    }


    .restaurant-text-link:hover {
        color: var(--restaurant-primary-dark);
    }


        .restaurant-text-link:hover i {
            transform: translateX(5px);
        }


/* =====================================================
   COMMON SECTION HEADING
===================================================== */

.restaurant-section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
}


    .restaurant-section-heading .restaurant-section-label {
        justify-content: center;
    }


    .restaurant-section-heading h2 {
        margin-bottom: 17px;
        color: var(--restaurant-heading);
        font-size: 43px;
        font-weight: 800;
        line-height: 1.18;
        letter-spacing: -1px;
    }


        .restaurant-section-heading h2 span {
            color: var(--restaurant-primary);
        }


    .restaurant-section-heading > p {
        max-width: 690px;
        margin: 0 auto;
        color: var(--restaurant-text);
        font-size: 16px;
        line-height: 1.75;
    }






/* ==========================================
   RESTAURANT FEATURES
========================================== */

.restaurant-features {
    padding: 80px 0;
    background: #f8fbff;
}

.restaurant-feature-card {
    position: relative;
    height: 100%;
    min-height: 210px;
    padding: 26px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(15,23,42,.06);
    transition: .3s;
}

    .restaurant-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 32px rgba(15,23,42,.10);
    }

/* Icon */

.restaurant-feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    font-size: 22px;
}

.restaurant-feature-card:hover .restaurant-feature-icon {
    transform: rotate(-8deg) scale(1.08);
}

/* Heading */

.restaurant-feature-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
}
/* Description */

.restaurant-feature-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* Number */

/* .restaurant-feature-number {
    position: absolute;
    right: 25px;
    bottom: 22px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(11,99,206,.08);
    transition: .35s;
}

.restaurant-feature-card:hover .restaurant-feature-number {
    color: rgba(11,99,206,.18);
    transform: scale(1.1);
} */
