/* quick-ordering.css */
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-text: #111111;
    --secondary-text: #555555;
    --muted-text: #777777;
    --bg-color: #ffffff;
    --bg-gray: #eeeeee;
    --accent-red: #ea333b;
    --border-color: #eaeaea;
}

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

html,
body {
    width: 100%;
}

.site-body {
    font-family: 'Gabarito', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-text);
}

/* Base Wrapper for 1440px Grid */
.main-wrapper {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--bg-color);
    position: relative;
    overflow-x: clip;
}

/* Standardized header is handled by style.css and style-responsive.css */
.hero-container,
.product-info-section,
.features-section,
.backend-section,
.product-features-section,
.parameters-section {
    padding: 60px;
    width: 100%;
}

/* Using distinct grid classNames for every area to follow instructions strictly */
.hero-grid,
.product-grid,
.features-grid,
.parameters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: -130px;
}

.backend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: -110px;
}

/* -------------- Hero Section -------------- */
.hero-grid {
    gap: 20px;
    position: relative;
    min-height: 500px;
}

/* Left Grid Panel */
.grid-left-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    margin-top: 150px;
    position: relative;
    z-index: 5;
}

.hero-title-left {
    font-size: 120px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.hero-video-box {
    position: relative;
    width: 370px;
    height: 280px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.hero-video-inner {
    width: 100%;
    height: 280px;
    display: block;
    background-color: #000;
}





/* Right Grid Panel */
.grid-right-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    padding-right: 20px;
}

.hero-title-right {
    font-size: 120px;
    font-weight: 500;
    line-height: 1;
    margin-top: 70px;
    letter-spacing: -1px;
    z-index: 2;
    position: relative;
}

.hero-triangle-bg {
    position: absolute;
    top: -110px;
    right: 480px;
    width: 150px;
    z-index: 1;
}

.hero-kiosk-box {
    position: absolute;
    top: -250px;
    left: -270px;
    /* Forces kiosk into center overlapping the two grids */
    z-index: 3;
}

.hero-kiosk-image {
    width: 400px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}


/* -------------- Product Section -------------- */
.product-grid-left {
    position: relative;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.product-bg-shape {
    position: absolute;
    top: 40px;
    bottom: 175px;
    left: 0;
    right: -30px;
    background-color: var(--bg-gray);
    border-radius: 32px;
    z-index: 1;
}

.product-triangle-img {
    position: absolute;
    top: 200px;
    right: 350px;
    width: 150px;
    z-index: 5;
}

.product-kiosk-mount-img {
    position: relative;
    z-index: 3;
    width: 300px;
    top: -60px;
    left: 35px;
    filter: drop-shadow(-20px 20px 40px rgba(0, 0, 0, 0.1));
}

.product-grid-right {
    display: flex;
    flex-direction: column;
    margin-top: -400px;
}

.product-title-group {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.product-line-outer {
    padding-top: 22px;
    flex-shrink: 0;
}

.product-horizontal-line {
    display: block;
    width: 120px;
    margin-left: 20px;
    height: 2px;
    background-color: var(--primary-text);
}

.product-title-texts {
    display: flex;
    flex-direction: column;
}

.product-heading {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #000;
    letter-spacing: 0.5px;
}

.product-description {
    font-size: 20px;
    color: #000;
    line-height: 1.6;
    max-width: 480px;
}

/* -------------- Features Section -------------- */
.features-grid-left {
    display: flex;
    flex-direction: column;
    margin-top: -200px;
}

.features-title-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.features-title {
    font-size: 36px;
    font-weight: 800;
    white-space: nowrap;
}

.features-title-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--primary-text);
}

.features-list {
    list-style: disc;
    padding-left: 24px;
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary-text);
}

.features-grid-right {
    display: flex;
    justify-content: flex-end;
}

.features-ui-image {
    width: 120%;
    margin-top: -600px;
    height: 500px;
    max-width: 610px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* -------------- Backend Section -------------- */
.backend-grid-left {
    display: flex;
    justify-content: flex-start;
    position: relative;
    padding: 60px 20px 60px 0;
}

.backend-bg-shape {
    position: absolute;
    top: 100px;
    bottom: 60px;
    left: 0;
    right: -30px;
    background-color: var(--bg-gray);
    border-radius: 32px;
    z-index: 1;
}

.backend-image {
    width: 105%;
    max-width: 700px;
    position: relative;
    z-index: 2;
    margin-left: 40px;
}

.backend-grid-right {
    display: flex;
    flex-direction: column;
    margin-top: -100px;
}

.backend-title-group {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.backend-line-outer {
    padding-top: 18px;
    flex-shrink: 0;
}

.backend-horizontal-line {
    display: block;
    width: 120px;
    margin-left: 20px;
    height: 2px;
    background-color: var(--primary-text);
}

.backend-title-texts {
    display: flex;
    flex-direction: column;
}

.backend-heading {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: 0.5px;
}

.backend-list {
    list-style: none;
    padding-left: 0;
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.backend-list-item {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.backend-list-item::before {
    content: "•";
    color: #e5e7eb;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0px;
}

/* -------------- Product Features -------------- */
.product-features-grid-left {
    display: flex;
    flex-direction: column;
}

.product-features-title-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.product-features-title {
    font-size: 36px;
    font-weight: 800;
    white-space: nowrap;
}

.product-features-title-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--primary-text);
}

.product-features-list {
    list-style: disc;
    padding-left: 24px;
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary-text);
}

.product-features-grid-right {
    display: flex;
    justify-content: flex-end;
    margin-top: -120px;
}

.product-features-image {
    width: 100%;
    max-width: 600px;
}

/* -------------- Parameters -------------- */
.parameters-grid-left {
    display: flex;
    justify-content: flex-start;
    margin-top: -130px;
}

.parameters-image {
    width: 100%;
    max-width: 630px;
}

.parameters-grid-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.parameters-title-group {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.parameters-line-outer {
    padding-top: 18px;
    flex-shrink: 0;
}

.parameters-horizontal-line {
    display: block;
    width: 120px;
    margin-left: 20px;
    height: 2px;
    background-color: var(--primary-text);
}

.parameters-heading {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: 0.5px;
}

.parameters-list {
    list-style: none;
    padding-left: 0;
    font-size: 20px;
    color: #000;
    margin-left: 150px;
}

.param-item {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.param-item::before {
    content: "•";
    color: #e5e7eb;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0px;
}

.param-label {
    font-weight: 600;
    color: var(--primary-text);
    margin-right: 8px;
}


/* Standardized footer is handled by style.css (base) and quick-ordering-responsive.css (mobile) */