@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.cstm_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 56px;
}

/* ==========================================================================
   SITE HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #F3F4F6;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    padding: 18px 0;
}

.site-header.is-scrolled {
    border-bottom-color: transparent;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-header .header-logo img {
    height: 36px;
    display: block;
}

.site-header .header-menu {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 32px;
}

.site-header .nav-links {
    display: flex;
    gap: 40px;
    margin: 0 auto;
}

.site-header .nav-links a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #000;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.site-header .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: #F16B8C;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-header .nav-links a.active::after {
    transform: scaleX(1);

}

.site-header .nav-links a:hover,
.site-header .nav-links a.is-active {
    color: #F16B8C;
}

.site-header .nav-links a:hover::after,
.site-header .nav-links a.is-active::after {
    transform: scaleX(1);
}

.site-header .header-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Two copies of the inline language switcher exist in the header markup — one
   for the desktop CTA row, one placed near the mobile menu toggle — and only
   one should ever be visible at a time. Desktop-default here; the mobile
   breakpoint below swaps which one shows. */
.header-lang-mobile {
    display: none;
}

.lang-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-inline button {
    border: none;
    background: transparent;
    padding: 4px 2px;
    font-size: 13px;
    font-weight: 600;
    color: #9CA3AF;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.lang-inline button.is-active {
    color: #F06285;
}

.lang-inline .lang-sep {
    color: #D1D5DB;
    font-size: 13px;
}

.site-header .cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    gap: 4px;
}

.site-header .cta svg {
    width: 20px;
    height: 20px;
}

.site-header .cta-dark:hover svg path {
    stroke: #fff;
}

.site-header .cta-dark svg path {
    transition: all .3s;
}

.site-header .cta-pink {
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    box-shadow: 0 8px 20px -10px rgba(241, 107, 140, 0.65);
}

.site-header .cta-pink:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px -10px rgba(241, 107, 140, 0.75);
}

.site-header .cta-dark {
    background: transparent;
    color: #000;
    border: 2px solid #BFC1C6;
    transition: all .3s;
}

.site-header .cta-dark:hover {
    background: #2a2a2a;
    color: #fff;
    transform: translateY(-1px);
    border-color: #2a2a2a;
}

.site-header .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.site-header .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.site-header .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   LOGIN PAGE
   ========================================================================== */

.login-page {
    min-height: 100vh;
    background: #fff;
    color: #111;
}

.login-page .login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.login-page .brand-panel {
    position: relative;
    padding: 48px 56px 10px;
    background: linear-gradient(135deg, #ffe4ec 0%, #fff5f7 55%, #ffd8e2 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.login-page .brand-logo {
    margin-bottom: 30px;
}

.login-page .brand-logo img {
    height: 40px;
}

.login-page .brand-logo .logo-a {
    position: relative;
    display: inline-block;
}

.login-page .brand-logo .logo-a::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #F16B8C;
}

.login-page .brand-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0 0 16px;
    text-transform: uppercase;
    max-width: 500px;
}

.login-page .brand-title span {
    color: #F16B8C;
}

.login-page .brand-subtitle {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 0 48px;
    position: relative;
}

.login-page .deal-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #F16B8C;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.4px;
}

.login-page .deal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, #ffe4ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 20px;
    box-shadow: 0 8px 20px -8px rgba(255, 92, 138, 0.45);
}

.login-page .deal-icon svg {
    width: 28px;
    height: 28px;
}

.login-page .skeleton {
    display: block;
    height: 10px;
    border-radius: 6px;
    background: #f0f0f3;
    margin: 10px 0;
}

.login-page .skeleton-lg {
    width: 100%;
}

.login-page .skeleton-md {
    width: 75%;
}

.login-page .skeleton-sm {
    width: 40%;
    background: #ffd8e2;
}

.login-page .form-panel {
    display: flex;
    justify-content: center;
    padding: 48px 56px 10px;
}

.login-page .form-wrap {
    width: 100%;
    max-width: 450px;
}

.login-page .form-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px;
}

.login-page .form-subtitle {
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 28px;
}

.login-page .form-field {
    margin-bottom: 20px;
}

.login-page .form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: #3D3D3D;
    margin-bottom: 8px;
}

.login-page .form-field input {
    width: 100%;
    height: 55px;
    padding: 0 18px;
    background: #F9FAFB;
    border-radius: 16px;
    font-size: 15px;
    color: #111;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    border: 1px solid #F3F4F6;
}

.login-page .form-field input::placeholder {
    color: #a5a5ad;
}

.login-page .form-field input:focus {
    border-color: #F16B8C;
    background: #fff;
}

.login-page .password-box {
    position: relative;
}

.login-page .password-box input {
    padding-right: 50px;
}

.login-page .toggle-password {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #6b6b6b;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
}

.login-page .toggle-password svg {
    width: 20px;
    height: 20px;
}

.login-page .form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 22px;
}

.login-page .form-row-end {
    justify-content: flex-end;
}

.login-page .forgot-link {
    font-size: 14px;
    font-weight: 600;
    color: #F16B8C;
    text-decoration: none;
}

.login-page .forgot-link:hover {
    text-decoration: underline;
}

.login-page .btn-login {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);

}

.login-page .btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px -10px rgba(255, 92, 138, 0.65);
}

.login-page .btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    border-radius: 16px;
    background: #1A1A1A;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}

.login-page .btn-register:hover {
    background: #2a2a2a;
    color: #fff;
}

/* --- Divider --- */
.login-page .divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0;
    color: #3D3D3D;
}

.login-page .divider::before,
.login-page .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #E6E6E6;
}

.login-page .divider span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

/* --- Footer --- */
.login-page .form-footer {
    text-align: center;
    margin-top: 32px;
}

.login-page .form-footer p {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.6;
    margin: 0 0 12px;
}

.login-page .legal-links {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.login-page .legal-links a {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: none;
}

.login-page .legal-links a:hover {
    text-decoration: underline;
}

.login-page .img img {
    width: 100%;
    margin-top: -100px;
}

/* ==========================================================================
   FORGOT PASSWORD PAGE
   ========================================================================== */

.forgot-password-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FCECEF 0%, #FDE1E7 100%);

}

/* --- Wrapper (logo + card) --- */
.forgot-password-page .forgot-wrap {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forgot-password-page .brand-logo {
    display: inline-block;
    margin-bottom: 32px;
    text-decoration: none;
}

.forgot-password-page .brand-logo img {
    height: 44px;
    width: auto;
}

/* --- Card --- */
.forgot-password-page .forgot-card {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 44px 44px 36px;
    box-shadow: 0 30px 60px -25px rgba(255, 92, 138, 0.25);
    text-align: center;
}

/* --- Icon box --- */
.forgot-password-page .icon-box {
    width: 75px;
    height: 75px;
    margin: 0 auto 30px;
    border-radius: 20px;
    background: #ffe4ec;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-password-page .icon-box svg {
    width: 38px;
    height: 38px;
}

/* --- Card text --- */
.forgot-password-page .card-title {
    font-size: 32px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 16px;
}

.forgot-password-page .card-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 34px;
}

/* --- Form field --- */
.forgot-password-page .form-field {
    text-align: left;
    margin-bottom: 24px;
}

.forgot-password-page .form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: #3D3D3D;
    margin-bottom: 8px;
}

.forgot-password-page .form-field input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    border-radius: 14px;
    font-size: 14px;
    color: #111;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.forgot-password-page .form-field input::placeholder {
    color: #a5a5ad;
}

.forgot-password-page .form-field input:focus {
    border-color: #ff5c8a;
    background: #fff;
}

/* --- Submit button --- */
.forgot-password-page .btn-submit {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
}

.forgot-password-page .btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px -10px rgba(255, 92, 138, 0.65);
}

/* "Back to Login" rendered as a link styled like the submit button */
.forgot-password-page .btn-submit--link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.forgot-password-page .btn-submit--link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.15s ease;
}

.forgot-password-page .btn-submit--link:hover svg {
    transform: translateX(-3px);
}

/* --- Back link --- */
.forgot-password-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-size: 16px;
    font-weight: 600;
    color: #F16B8C;
    text-decoration: none;
}

.forgot-password-page .back-link svg {
    width: 16px;
    height: 16px;
}

.forgot-password-page .back-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   REGISTER RESTAURANT PAGE
   ========================================================================== */

.register-restaurant-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #FCECEF 0%, #FDE1E7 100%);
}

.register-restaurant-page .brand-logo {
    margin-bottom: 24px;
}

.register-restaurant-page .brand-logo img {
    height: 40px;
}

.register-restaurant-page .register-card {
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 0px 35px 0px #00000012;

}

.register-restaurant-page .card-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
    text-align: center;
}

.register-restaurant-page .card-subtitle {
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin: 0 0 34px;
}

.register-restaurant-page .section-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #3D3D3D;
    margin-bottom: 12px;
}

.register-restaurant-page .section-label.pink {
    color: #F16B8C;
}

.register-restaurant-page .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 12px;
    margin-bottom: 34px;
}

.register-restaurant-page .image-slot {
    aspect-ratio: 1 / 1;
    background: #F0F3F8;
    border: 1px dashed #E5E7EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.register-restaurant-page .image-slot:hover {
    border-color: #F16B8C;
    background: #FFF8F9;
}

.register-restaurant-page .image-slot svg {
    width: 34px;
    height: 34px;
}

/* Upload-slot artwork (public/svgUpload.png). Dimensions are also set inline on
   the element (see ImageUploadIcon) so a cached custom.css can't blow it up;
   this rule just stops flex from stretching it. */
img.image-upload-icon {
    flex: none;
    object-fit: contain;
}

.register-restaurant-page .image-thumb {
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.register-restaurant-page .image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.register-restaurant-page .image-thumb button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F10025;
    color: #fff;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.register-restaurant-page .image-grid + .field-error {
    margin-top: -22px;
    margin-bottom: 22px;
}

.register-restaurant-page .form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 4px;
}

.register-restaurant-page .form-field {
    margin-bottom: 24px;
}

.register-restaurant-page .form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: #3D3D3D;
    margin-bottom: 8px;
}

.register-restaurant-page .label-with-tags {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.register-restaurant-page .tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #FF98001A;
    color: #FF9800;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 3px 10px;
    border: none;
    border-radius: 12px;
    margin-left: 6px;
    text-transform: capitalize;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.register-restaurant-page .tag.is-done {
    background: #E8F6E5;
    color: #338F2C;
}

.register-restaurant-page .password-box {
    position: relative;
}

.register-restaurant-page .password-box input {
    padding-right: 46px;
}

.register-restaurant-page .toggle-password {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #6b6b6b;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
}

.register-restaurant-page .toggle-password svg {
    width: 20px;
    height: 20px;
}

.register-restaurant-page .address-box {
    position: relative;
}

.register-restaurant-page .address-box input {
    padding-right: 46px;
}

.register-restaurant-page .address-search-btn {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #6b6b6b;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
}

.register-restaurant-page .address-search-btn svg {
    width: 18px;
    height: 18px;
}

.register-restaurant-page .address-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    background: #fff;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.18);
    z-index: 5;
    padding: 6px;
}

.register-restaurant-page .address-suggestions p {
    margin: 0;
    padding: 10px 8px;
    font-size: 13px;
    color: #9CA3AF;
}

/* Address autocomplete — unscoped so the shared component is styled on both the
   register page and the dashboard Edit Restaurant page (the rules above are
   scoped to .register-restaurant-page and left untouched for specificity). */
.address-box {
    position: relative;
}

.address-box input {
    padding-right: 46px;
}

.address-search-btn {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #6b6b6b;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
}

.address-search-btn svg {
    width: 18px;
    height: 18px;
}

.address-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    background: #fff;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.18);
    z-index: 20;
    padding: 6px;
}

.address-suggestions p {
    margin: 0;
    padding: 10px 8px;
    font-size: 13px;
    color: #9CA3AF;
}

.address-suggestions ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 260px;
    overflow-y: auto;
}

.address-suggestions li button {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 10px 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.address-suggestions li button:hover,
.address-suggestions li button.is-active {
    background: #F3F4F6;
}

.register-restaurant-page .tags-right {
    display: inline-flex;
    margin-left: auto;
}

.register-restaurant-page .form-field input,
.register-restaurant-page .form-field textarea {
    width: 100%;
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    border-radius: 10px;
    font-size: 15px;
    color: #111;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}

.register-restaurant-page .form-field input {
    height: 54px;
    padding: 0 14px;
}

.register-restaurant-page .form-field textarea {
    padding: 14px;
    min-height: 90px;
    resize: vertical;
}

.register-restaurant-page .form-field input:focus,
.register-restaurant-page .form-field textarea:focus {
    border-color: #F16B8C;
    background: #fff;
}

.register-restaurant-page .form-field input::placeholder,
.register-restaurant-page .form-field textarea::placeholder {
    color: #a5a5ad;
}

.register-restaurant-page .hours-table {
    overflow: hidden;
    margin-bottom: 28px;
}

.register-restaurant-page .hours-row {
    display: grid;
    grid-template-columns: 1fr 260px 60px 260px 100px 50px;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
}

.register-restaurant-page .hours-row-wrap+.hours-row-wrap {
    margin-top: 8px;
}

.register-restaurant-page .hours-row input[type="time"].is-invalid {
    border-color: #EF4444;
}


.register-restaurant-page .hours-row .day {
    font-size: 14px;
    color: #3D3D3D;
    font-weight: 500;
}

.register-restaurant-page .hours-row input[type="time"] {
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    color: #9CA3AF;
    height: 34px;
    width: 100%;
    text-align: center;
    font-weight: 500;
    outline: none;
    cursor: pointer;
}

.register-restaurant-page .hours-row input[type="time"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.register-restaurant-page .hours-row input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.register-restaurant-page .hours-row input[type="time"]::-webkit-inner-spin-button,
.register-restaurant-page .hours-row input[type="time"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}

.register-restaurant-page .hours-row .to,
.register-restaurant-page .hours-row .closed-text {
    font-size: 12px;
    color: #949494;
    font-weight: 500;
    text-align: center;
}

.register-restaurant-page .toggle {
    width: 36px;
    height: 20px;
    border-radius: 999px;
    background: #E5E7EB;
    border: none;
    position: relative;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.register-restaurant-page .toggle.on {
    background: #F16B8C;
}

.register-restaurant-page .toggle span {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s;
}

.register-restaurant-page .toggle.on span {
    transform: translateX(16px);
}

.register-restaurant-page .document-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FAFAFB;
    border: 1px dashed #B2B2B2;
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 32px;
    max-width: 300px;
    transition: border-color 0.2s, background 0.2s;
}

.register-restaurant-page .document-dropzone:hover {
    border-color: #F16B8C;
    background: #FFF8F9;
}

.register-restaurant-page .document-dropzone svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.register-restaurant-page .document-dropzone p {
    margin: 0;
    font-size: 12px;
    color: #000;
    line-height: 1.5;
}

.register-restaurant-page .document-dropzone .hint {
    color: #3D3D3D;
    margin-top: 4px;
}

.register-restaurant-page .document-dropzone .doc-name {
    font-weight: 600;
    color: #111;
    word-break: break-all;
}

.register-restaurant-page .document-dropzone .doc-error {
    color: #DC2626;
    margin-top: 6px;
}

.register-restaurant-page .form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.register-restaurant-page .signin-prompt {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #4B5563;
}

.register-restaurant-page .signin-prompt a {
    color: #F16994;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

.register-restaurant-page .signin-prompt a:hover {
    text-decoration: underline;
}

.register-restaurant-page .btn-submit {
    height: 50px;
    padding: 0 36px;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
}

.register-restaurant-page .btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px -10px rgba(255, 92, 138, 0.6);
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */

.home-page .home-banner {
    position: relative;
    padding: 30px 0 50px;
    overflow: hidden;
}

.home-page .banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    min-height: 560px;
}

.home-page .banner-content {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-page .banner-content>* {
    position: relative;
    animation: bannerFadeUp 0.7s ease backwards;
}

.home-page .banner-content>*:nth-child(1) {
    animation-delay: 0.05s;
}

.home-page .banner-content>*:nth-child(2) {
    animation-delay: 0.15s;
}

.home-page .banner-content>*:nth-child(3) {
    animation-delay: 0.25s;
}

.home-page .banner-content>*:nth-child(4) {
    animation-delay: 0.35s;
}

.home-page .banner-content>*:nth-child(5) {
    animation-delay: 0.45s;
}

.home-page .home-banner .app_store h3 {
    color: #5A5B5B;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
}

.home-page .home-banner .app_store .flex_box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-page .home-banner .app_store img {
    height: 65px;
    transition: transform 0.3s ease;
}

.home-page .home-banner .app_store img:hover {
    transform: translateY(-5px);
}

@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-page .banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 28px;
    width: fit-content;
    border: 2px solid #F5F6F6;
}

.home-page .banner-badge .dot {
    width: 8px;
    height: 8px;
    background: #F16B8C;
    border-radius: 50%;
}

.home-page .banner-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    color: #000000;
    letter-spacing: -2px;
    margin: 0 0 24px;
    max-width: 600px;
}

.home-page .banner-title span {
    color: #F16B8C;
}

.home-page .banner-text {
    font-size: 20px;
    color: #2A3036;
    font-weight: 400;
    line-height: 1.65;
    max-width: 400px;
    margin: 0 0 20px;
}

.home-page .banner-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.home-page .store-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px 22px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-size: 18px;
    font-weight: 500;
}

.home-page .store-btn:hover {
    transform: translateY(-2px);
}

.home-page .store-btn.pink {
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    box-shadow: 0px 8px 10px -6px #0000001A;
}

.home-page .store-btn.pink:hover {
    box-shadow: 0 18px 32px -10px rgba(241, 107, 140, 0.7);
}

.home-page .store-btn.dark {
    background: transparent;
    border: 2px solid #BFC1C6;
    color: #000;
    transition: all .3s;
}

.home-page .store-btn.dark:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    border-color: #000;
}

.home-page .store-btn.dark:hover svg path {
    stroke: #fff;
}

.home-page .store-btn.dark svg path {
    transition: all .3s;
}

.home-page .store-btn svg {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.home-page .store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.home-page .store-btn small {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.home-page .store-btn strong {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.home-page .banner-proof {
    display: flex;
    align-items: center;
    gap: 18px;
}

.home-page .avatars {
    display: flex;
    align-items: center;
}

.home-page .avatars .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -14px;
    background: linear-gradient(135deg, #c9c9c9, #888);
}

.home-page .avatars .avatar img {
    width: 100%;
    border-radius: 100%;
}

.home-page .avatars .avatar:first-child {
    margin-left: 0;
}

.home-page .avatars .a1 {
    background: linear-gradient(135deg, #F4A53C, #C97C26);
}

.home-page .avatars .a2 {
    background: linear-gradient(135deg, #34A853, #1E7036);
}

.home-page .avatars .a3 {
    background: linear-gradient(135deg, #7B8794, #3D4753);
}

.home-page .avatars .count {
    height: 44px;
    width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    border-radius: 999px;
}

.home-page .proof-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-page .proof-text strong {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #1A1A1A;
    text-transform: uppercase;
}

.home-page .stars {
    display: flex;
    gap: 2px;
}

.home-page .stars svg {
    width: 14px;
    height: 14px;
}

.home-page .banner-visual {
    display: flex;
    align-items: center;
    justify-content: end;
    animation: bannerFadeUp 0.9s ease 0.2s backwards;
    position: relative;
    padding-right: 50px;
}

/* .home-page .banner-visual::after {
    content: "";
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 100px;
    height: 310px;
    background-image: url("../images/mobile-after.svg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    pointer-events: none;
    animation: bannerFloat 5s ease-in-out infinite;
    z-index: -1;
} */

.home-page .banner-visual img {
    height: 600px;
    width: auto;
    animation: bannerFloat 5s ease-in-out infinite;
}

@keyframes bannerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


.brand_sec {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid #F1F2F5;
    border-bottom: 1px solid #F1F2F5;
}

.brand_sec h2 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #272D2F;
    margin-bottom: 40px;
    line-height: 24px;
}

.brand_sec h2 span {
    color: #F06285;
    font-weight: 700;
}

.brand_sec .brand_grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    flex-wrap: wrap;
}


.brand_sec .brand_grid img {
    aspect-ratio: 3/1;
}

.common_title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #000;
}

.common_title span {
    color: #F16B8C;
    font-weight: 700;
}

/* ==========================================================================
   HOW SVANGUR WORKS
   ========================================================================== */

.how_works_sec {
    padding: 60px 0;
    background: #fff;
}

.how_works_sec .common_title {
    text-align: left;
    margin: 0 0 32px;
}

.how_works_sec .how_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

.how_works_sec .how_card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 24px 24px 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 240px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #F5F5F5;
    gap: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 16px 0px, rgb(0 0 0 / 2%) 0px 0px 0px 1px;
}

.how_works_sec .how_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.14);
}

.how_works_sec .how_text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 4px 0 26px;
}

.how_works_sec .how_number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F06285;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 0px 1px 5px #F062851A;
}

.how_works_sec .how_text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 6px 0 0;
}

.how_works_sec .how_text p {
    font-size: 16px;
    color: #2A3036;
    line-height: 1.6;
    margin: 0;
}

.how_works_sec .how_visual {
    align-self: end;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}

.how_works_sec .how_visual img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}


.how_works_sec .how_card.is-featured {
    transform: scale(1.12);
    z-index: 1;
    background: #F0628512;
}

.how_works_sec .how_card.is-featured:hover {
    transform: scale(1.06) translateY(-4px);
}

/* ==========================================================================
   OWN A RESTAURANT
   ========================================================================== */

.own_restaurant_card {
    background: #F0628514;
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    overflow: hidden;
}

.own_restaurant_text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.own_restaurant_text .eyebrow {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #F06285;
    text-transform: uppercase;
}

.own_restaurant_text h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.05;
    color: #1A1A1A;
    margin: 0;
    letter-spacing: -1px;
}

.own_restaurant_text p {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.65;
    margin: 0;
    max-width: 500px;
}

.own_restaurant_text strong {
    align-self: flex-start;
    padding: 10px 18px;
    background: #FFFFFF;
    color: #F06285;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid #FCE7F3;
    box-shadow: 0px 1px 2px 0px #0000000D;
    backdrop-filter: blur(8px);
    border-radius: 28px;
    margin-top: 10px;
}

.own_restaurant_ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
}

.cta-restaurant {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cta-restaurant svg {
    width: 24px;
    height: 24px;
}

.cta-restaurant.pink {
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
}

.cta-restaurant.pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -10px rgba(241, 107, 140, 0.7);
}

.cta-restaurant.outline {
    background: #fff;
    color: #000;
    border: 2px solid #BFC1C6;
}

.cta-restaurant.outline:hover {
    transform: translateY(-2px);
    border-color: #F16B8C;
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.1);
}

.own_restaurant_visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.own_restaurant_visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.own_restaurant_card:hover .own_restaurant_visual img {
    transform: translateY(-4px);
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
    background: #fff;
    padding: 50px 0 24px;
    color: #1A1A1A;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 20px;
    padding-bottom: 40px;
}

.site-footer .footer-brand .brand-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.site-footer .footer-brand .brand-logo img {
    height: 34px;
}

.site-footer .footer-brand p {
    font-size: 16px;
    line-height: 1.65;
    color: #2A3036;
    max-width: 280px;
    margin: 0 0 30px;
}

.site-footer .social-links {
    display: flex;
    gap: 10px;
}

.site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    background: #fff;
    color: #1A1A1A;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    border: 1px solid #F3F3F3;
}

.site-footer .social-links a:hover {
    background: #f16b8c3b;
    color: #fff;
    transform: translateY(-2px);
}

.site-footer .social-links svg {
    width: 20px;
    height: 20px;
}

.site-footer .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer .app_store {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer .app_store img {
    height: 55px;
    transition: transform 0.2s ease;
}

.site-footer .app_store img:hover {
    transform: scale(1.1);
}

.site-footer .footer-nav h4 {
    font-size: 14px;
    font-weight: 600;
    color: #272D2F;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.site-footer .footer-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #797F88;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: .3px;
}

.site-footer .footer-nav a:hover {
    color: #F16B8C;
}

.site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}

.site-footer .footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #999999;
}

.site-footer .footer-meta {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.site-footer .footer-meta>span {
    color: #999999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-footer .footer-meta>span i {
    color: #F06285;
}

.site-footer .footer-meta .lang {
    color: #F16B8C;
}

.site-footer .footer-meta .lang strong {
    color: #F16B8C;
    font-weight: 700;
}

/* ==========================================================================
   DASHBOARD
   ========================================================================== */

.dashboard-shell {
    min-height: 100vh;
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
}

.dashboard-shell .dash-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #fff;
    border-bottom: 2px solid #0000000D;
}

.dashboard-shell .dash-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
}

.dashboard-shell .dash-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: #F3F4F6;
    border-radius: 5px;
    color: #1A1A1A;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
}

.dashboard-shell .dash-menu-btn:hover {
    background: #E5E7EB;
}

.dashboard-shell .dash-menu-btn svg {
    width: 22px;
    height: 22px;
}

.dashboard-shell .dash-logo img {
    height: 32px;
    display: block;
}

.dashboard-shell .dash-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-shell .dash-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.lang-switcher {
    position: relative;
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0px;
    border: none;
    border-radius: 999px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* .lang-trigger:hover {
    border-color: #F06285;
    box-shadow: 0 4px 12px -4px rgba(240, 98, 133, 0.25);
} */

.lang-trigger svg:first-child {
    flex-shrink: 0;
}

.lang-trigger>svg:last-child {
    color: #6B7280;
    display: none;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: #fff;
    border: 1px solid #F3F4F6;
    border-radius: 12px;
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.12);
    min-width: 170px;
    z-index: 50;
}

.lang-dropdown li {
    margin: 0;
}

.lang-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 14px;
    color: #1A1A1A;
    cursor: pointer;
    text-align: left;
}

.lang-dropdown button:hover {
    background: #F9FAFB;
}

.lang-dropdown button.is-active {
    background: #FCEFF3;
    color: #F06285;
    font-weight: 600;
}

.lang-dropdown button svg {
    border-radius: 2px;
    flex-shrink: 0;
}

.lang-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: langFadeIn 0.2s ease;
}

.lang-loader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 36px 48px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(240, 98, 133, 0.08);
    min-width: 280px;
}

.lang-loader-spinner {
    position: relative;
    width: 64px;
    height: 64px;
    border: 4px solid #FCEFF3;
    border-top-color: #F06285;
    border-radius: 50%;
    animation: langSpin 0.8s linear infinite;
}

.lang-loader-flag {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: langCounterSpin 0.8s linear infinite;
}

.lang-loader-flag svg {
    width: 28px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.lang-loader-text {
    font-size: 16px;
    color: #1A1A1A;
    text-align: center;
}

.lang-loader-text strong {
    color: #F06285;
    font-weight: 700;
}

.lang-loader-sub {
    font-size: 13px;
    color: #6B7280;
}

@keyframes langSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes langCounterSpin {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes langFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.skiptranslate,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

.dashboard-shell .dash-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
}

.dashboard-shell .dash-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dashboard-shell .dash-user {
    position: relative;
}

.dashboard-shell .dash-user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 4px 6px 4px 10px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.dashboard-shell .dash-user-trigger:hover {
    background: #F9FAFB;
    border-color: #F3F4F6;
}

.dashboard-shell .dash-user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    z-index: 60;
    transform-origin: top right;
    animation: dropdownIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0px 8px 12px 0px #00000026;
}

.dashboard-shell .dash-user-dropdown:not(.is-open),
.dashboard-shell .confirm-overlay:not(.is-open) {
    display: none !important;
}

@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dashboard-shell .dropdown-head {
    padding: 18px 20px 0px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(241, 107, 140, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
}

.dashboard-shell .dropdown-head::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/dropdown-bg.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    pointer-events: none;
}

.dashboard-shell .dropdown-head img {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px -8px rgba(241, 107, 140, 0.4);
    margin-bottom: 10px;
}

.dashboard-shell .dropdown-head strong {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: 0.2px;
}

.dashboard-shell .dropdown-edit {
    display: block;
    text-align: center;
    margin: 14px 18px 6px;
    padding: 12px 16px;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 10px 22px -10px rgba(241, 107, 140, 0.55);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.dashboard-shell .dropdown-edit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px -10px rgba(241, 107, 140, 0.7);
}

.dashboard-shell .dropdown-actions {
    list-style: none;
    margin: 0;
    padding: 4px 0 8px;
}

.dashboard-shell .dropdown-actions button {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 22px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    cursor: pointer;
    text-align: left;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.2s ease;
}

.dashboard-shell .dropdown-actions svg {
    width: 18px;
    height: 18px;
    color: #000;
    transition: color 0.18s ease, transform 0.2s ease;
}

.dashboard-shell .dropdown-actions button:hover {
    background: #FCEFF3;
    color: #F16B8C;
    padding-left: 26px;
}

.dashboard-shell .dropdown-actions button:hover svg {
    /* color: #F16B8C; */
    transform: scale(1.08);
}

.dashboard-shell .dashboard-body {
    display: flex;
    flex: 1;
    gap: 24px;
    padding: 24px 32px 40px;
    align-items: flex-start;
    background: #fff;
}

.dashboard-shell .dash-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 49;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.dashboard-shell .dash-sidebar {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 18px;
    padding: 20px 0px;
    position: sticky;
    top: 89px;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 113px);
    border: 1px solid #F3F4F6;
    box-shadow: 0px 20px 50px 0px #F0628514;
}

.dashboard-shell .dash-sidebar-label {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 18px;
    padding: 0 20px;
}

.dashboard-shell .dash-nav-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dashboard-shell .dash-nav-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #0000001A;
}

.dashboard-shell .dash-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 500;
    color: #4B5563;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.dashboard-shell .dash-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.dashboard-shell .dash-link:hover {
    background: #FCEFF3;
    color: #F16B8C;
}

.dashboard-shell .dash-link:hover svg {
    transform: scale(1.08);
}

.dashboard-shell .dash-link.is-active {
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    /* box-shadow: 0 10px 22px -10px rgba(241, 107, 140, 0.6); */
}

.dashboard-shell .dash-link.is-active svg path {
    stroke: #fff;
}

.dashboard-shell .dashboard-main {
    flex: 1;
    min-width: 0;
    padding: 8px 0 0;
}

.dashboard-shell .dashboard-overview {
    animation: dashFadeIn 0.35s ease;
}

@keyframes dashFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-shell .overview-head {
    margin-bottom: 32px;
}

.dashboard-shell .welcome-eyebrow {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 6px;
}

.dashboard-shell .restaurant-name {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;
    color: #F06285;
    margin: 0 0 12px;
    letter-spacing: -1px;
}

.dashboard-shell .restaurant-desc {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

.dashboard-shell .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-shell .stat-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0px 20px 50px 0px #F0628514;
    border: 1px solid #F3F4F6;
}

.dashboard-shell .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.1);
}

.dashboard-shell .stat-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dashboard-shell .stat-content strong {
    font-size: 38px;
    font-weight: 600;
    color: #111;
    line-height: 1;
}

.dashboard-shell .stat-content span {
    font-size: 16px;
    color: #4B5563;
    font-weight: 500;
}

.dashboard-shell .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F0628533;
    color: #F16B8C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-shell .stat-icon svg {
    width: 24px;
    height: 24px;
}

.dashboard-shell .offers-section {
    margin-top: 8px;
}

.dashboard-shell .offers-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dashboard-shell .offers-head h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.dashboard-shell .view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #F16B8C;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.dashboard-shell .view-all svg {
    width: 14px;
    height: 14px;
}

.dashboard-shell .view-all:hover {
    gap: 10px;
}

.dashboard-shell .offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dashboard-shell .offer-card {
    position: relative;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #F3F4F6;
    box-shadow: 0px 20px 50px 0px #F0628514;
}

.dashboard-shell .offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.12);
}

.dashboard-shell .offer-image {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #F3F4F6;
}

.dashboard-shell .offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dashboard-shell .offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.dashboard-shell .offer-body {
    padding: 15px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.dashboard-shell .offer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.dashboard-shell .offer-tag {
    font-size: 13px;
    font-weight: 500;
    color: #000000;
}

.dashboard-shell .offer-expired {
    font-size: 12px;
    font-weight: 600;
    color: #F16B8C;
    white-space: nowrap;
}

.dashboard-shell .offer-title {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
}

.dashboard-shell .offer-desc {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.55;
    margin: 4px 0 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dashboard-shell .offer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.dashboard-shell .offer-days {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dashboard-shell .offer-days span {
    background: #2C3A7B0D;
    color: #3D3D3D;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 5px;
}

.dashboard-shell .offer-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.dashboard-shell .offer-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dashboard-shell .offer-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.dashboard-shell .offer-btn svg {
    width: 20px;
    height: 20px;
}

.dashboard-shell .offer-btn.edit {
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
}

.dashboard-shell .offer-btn.edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -6px rgba(241, 107, 140, 0.6);
}

.dashboard-shell .offer-btn.delete {
    background: #1A1A1A;
}

.dashboard-shell .offer-btn.delete:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

/* Activate / deactivate toggle. `.off` is shown on a live offer (the click will
   deactivate it), `.on` on a paused one (the click will bring it back). */
.dashboard-shell .offer-btn.toggle.off {
    background: #6B7280;
}

.dashboard-shell .offer-btn.toggle.off:hover {
    background: #4B5563;
    transform: translateY(-2px);
}

.dashboard-shell .offer-btn.toggle.on {
    background: #16A34A;
}

.dashboard-shell .offer-btn.toggle.on:hover {
    background: #15803D;
    transform: translateY(-2px);
}

.dashboard-shell .manage-offers {
    animation: dashFadeIn 0.35s ease;
}

.dashboard-shell .manage-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.dashboard-shell .manage-head-text h1 {
    font-size: 28px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.dashboard-shell .manage-head-text p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 650px;
    margin: 0;
}

.dashboard-shell .btn-add-offer,
.dashboard-shell .btn-deactivate-offers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 12px 24px -10px rgba(241, 107, 140, 0.55);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.dashboard-shell .btn-add-offer:hover,
.dashboard-shell .btn-deactivate-offers:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px -10px rgba(241, 107, 140, 0.7);
}

.dashboard-shell .btn-add-offer svg {
    width: 18px;
    height: 18px;
}

.dashboard-shell .manage-offers .offers-section {
    margin-bottom: 36px;
}

.dashboard-shell .manage-offers .offers-section:last-child {
    margin-bottom: 0;
}

.dashboard-shell .all-offers-page {
    animation: dashFadeIn 0.35s ease;
}

.dashboard-shell .back-to-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    text-decoration: none;
    margin-bottom: 18px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.dashboard-shell .back-to-link:hover {
    color: #F16B8C;
    gap: 12px;
}

.dashboard-shell .back-to-link svg {
    width: 16px;
    height: 16px;
}

.dashboard-shell .page-head {
    margin-bottom: 28px;
}

.dashboard-shell .page-head.active-offers-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.dashboard-shell .page-head h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.dashboard-shell .page-head p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

.dashboard-shell .add-offer-page {
    animation: dashFadeIn 0.35s ease;
}

.dashboard-shell .add-offer-form {
    background: #fff;
    border-radius: 22px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: 0px 0px 35px 0px #00000012;
}

.dashboard-shell .add-offer-form .form-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dashboard-shell .add-offer-form .form-block>label,
.dashboard-shell .add-offer-form .block-label {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
}

.dashboard-shell .add-offer-form .block-label.pink {
    color: #F16B8C;
}

.dashboard-shell .add-offer-form input[type="text"],
.dashboard-shell .add-offer-form input[type="time"],
.dashboard-shell .add-offer-form textarea,
.dashboard-shell .add-offer-form select {
    width: 100%;
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    border-radius: 12px;
    font-size: 14px;
    color: #1A1A1A;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    font-family: inherit;
}

.dashboard-shell .add-offer-form input[type="text"],
.dashboard-shell .add-offer-form input[type="time"] {
    height: 52px;
    padding: 0 16px;
}

.dashboard-shell .add-offer-form input[type="time"] {
    cursor: pointer;
}

.dashboard-shell .add-offer-form input[type="time"]::-webkit-calendar-picker-indicator,
.dashboard-shell .add-offer-form input[type="time"]::-webkit-inner-spin-button,
.dashboard-shell .add-offer-form input[type="time"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
    appearance: none;
}

.dashboard-shell .add-offer-form textarea {
    min-height: 110px;
    padding: 14px 16px;
    resize: vertical;
}

.dashboard-shell .add-offer-form input::placeholder,
.dashboard-shell .add-offer-form textarea::placeholder {
    color: #9CA3AF;
}

.dashboard-shell .add-offer-form input:focus,
.dashboard-shell .add-offer-form textarea:focus,
.dashboard-shell .add-offer-form select:focus {
    border-color: #F16B8C;
    background: #fff;
}

.dashboard-shell .add-offer-form select {
    height: 52px;
    padding: 0 44px 0 16px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.dashboard-shell .add-offer-form .image-slot {
    width: 100px;
    height: 100px;
    background: #F0F3F8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.dashboard-shell .add-offer-form .image-slot:hover {
    background: #FCEFF3;
    transform: translateY(-2px);
}

.dashboard-shell .add-offer-form .image-slot svg {
    width: 40px;
    height: 40px;
    color: #3D3D3D;
}

/* Offer form's slot is larger than the register one — keep the artwork matched. */
.dashboard-shell .add-offer-form .image-slot .image-upload-icon {
    width: 40px;
    height: 40px;
}

.dashboard-shell .add-offer-form .image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dashboard-shell .add-offer-form .image-preview {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.dashboard-shell .add-offer-form .image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dashboard-shell .add-offer-form .image-preview button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F10025;
    color: #fff;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.dashboard-shell .add-offer-form .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.dashboard-shell .add-offer-form .day-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dashboard-shell .add-offer-form .day-pill {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #F3F4F6;
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    border: 1px solid #F3F4F6;
}

.dashboard-shell .add-offer-form .day-pill:hover {
    background: #FCEFF3;
    color: #F16B8C;
}

.dashboard-shell .add-offer-form .day-pill.is-active {
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    box-shadow: 0 8px 16px -8px rgba(241, 107, 140, 0.55);
}

.dashboard-shell .add-offer-form .time-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-shell .add-offer-form .time-range input {
    flex: 1;
    min-width: 0;
    color: #9CA3AF;
}

.dashboard-shell .add-offer-form .time-range input:valid {
    color: #111827;
}

.dashboard-shell .add-offer-form .time-range span {
    color: #9CA3AF;
    font-size: 16px;
    flex-shrink: 0;
}

.dashboard-shell .add-offer-form .form-actions-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.dashboard-shell .add-offer-form .btn-preview {
    height: 50px;
    padding: 0 36px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 26px -10px rgba(241, 107, 140, 0.55);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.dashboard-shell .add-offer-form .btn-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -10px rgba(241, 107, 140, 0.7);
}

.dashboard-shell .preview-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 25, 0.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
    animation: previewFadeIn 0.2s ease;
}

@keyframes previewFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dashboard-shell .preview-modal {
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.35);
    animation: previewScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: none;
}

.dashboard-shell .preview-modal::-webkit-scrollbar {
    display: none;
}

@keyframes previewScaleIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dashboard-shell .preview-image {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #F3F4F6;
}

.dashboard-shell .preview-image .label {
    position: absolute;
    right: 14px;
    top: 14px;
    background: linear-gradient(90deg, #FAA5B6 0%, #F06285 100%);
    border-radius: 22px;
    color: #fff;
    font-size: 14px;
    padding: 5px 13px;
    font-weight: 600;
}

.dashboard-shell .preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dashboard-shell .preview-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 16px -6px rgba(241, 107, 140, 0.55);
}

.dashboard-shell .preview-body {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard-shell .preview-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
}

.dashboard-shell .preview-meta {
    font-size: 14px;
    color: #6B7280;
    margin: -6px 0 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dashboard-shell .preview-meta span {
    color: #9CA3AF;
}

.dashboard-shell .preview-body h4 {
    font-size: 17px;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0;
}

.dashboard-shell .preview-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.55;
    margin: -4px 0 0;
}

.dashboard-shell .preview-schedule {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #1A1A1A;
    margin: 4px 0 0;
}

.dashboard-shell .preview-schedule strong {
    font-weight: 700;
}

.dashboard-shell .preview-schedule span {
    color: #6B7280;
    font-weight: 500;
}

.dashboard-shell .preview-open {
    align-self: flex-start;
    background: #E6F6E8;
    color: #1E7036;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dashboard-shell .btn-publish {
    height: 50px;
    margin-top: 8px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 26px -10px rgba(241, 107, 140, 0.55);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.dashboard-shell .btn-publish:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -10px rgba(241, 107, 140, 0.7);
}

.dashboard-shell .btn-edit-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: #F16B8C;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px;
    transition: gap 0.2s ease;
}

.dashboard-shell .btn-edit-offer:hover {
    gap: 10px;
}

.dashboard-shell .btn-edit-offer svg {
    width: 14px;
    height: 14px;
}

.dashboard-shell .confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 25, 0.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
    animation: previewFadeIn 0.2s ease;
}

.dashboard-shell .confirm-modal {
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 500px;
    padding: 36px 32px 28px;
    text-align: center;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.35);
    animation: previewScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.dashboard-shell .confirm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FCEFF3;
    color: #F16B8C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    box-shadow: 0 8px 18px -8px rgba(241, 107, 140, 0.35);
}

.dashboard-shell .confirm-icon svg {
    width: 28px;
    height: 28px;
}

.dashboard-shell .confirm-modal h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 4px 0 0;
}

.dashboard-shell .confirm-modal p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 400px;
}

.dashboard-shell .confirm-primary {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 14px 26px -10px rgba(241, 107, 140, 0.55);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}


.dashboard-shell .confirm-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -10px rgba(241, 107, 140, 0.7);
}

.dashboard-shell .confirm-cancel {
    background: transparent;
    border: none;
    color: #F16B8C;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    margin-top: 2px;
    transition: color 0.2s ease;
}

.dashboard-shell .confirm-cancel:hover {
    color: #D94B70;
}

/* Unscoped copy of the confirm-dialog styles above, for ConfirmDialog usages
   on public pages (Login, Register) that render outside .dashboard-shell —
   e.g. the email-verification prompts. */
.confirm-overlay:not(.is-open) {
    display: none !important;
}

.confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 25, 0.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
    animation: previewFadeIn 0.2s ease;
}

.confirm-modal {
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 500px;
    padding: 36px 32px 28px;
    text-align: center;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.35);
    animation: previewScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.confirm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FCEFF3;
    color: #F16B8C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    box-shadow: 0 8px 18px -8px rgba(241, 107, 140, 0.35);
}

.confirm-icon svg {
    width: 28px;
    height: 28px;
}

.confirm-modal h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 4px 0 0;
}

.confirm-modal p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 400px;
}

.confirm-modal p.confirm-error {
    color: #D94B70;
    font-weight: 600;
}

.confirm-primary {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 14px 26px -10px rgba(241, 107, 140, 0.55);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.confirm-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -10px rgba(241, 107, 140, 0.7);
}

.confirm-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.confirm-cancel {
    background: transparent;
    border: none;
    color: #F16B8C;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    margin-top: 2px;
    transition: color 0.2s ease;
}

.confirm-cancel:hover {
    color: #D94B70;
}

.dashboard-shell .deactivate-offers-modal {
    max-width: 460px;
    max-height: 90vh;
    overflow: hidden;
}

.dashboard-shell .deactivate-offers-list {
    align-self: stretch;
    text-align: left;
    margin-bottom: 6px;
    overflow-y: auto;
    min-height: 0;
}

.dashboard-shell .deactivate-offers-list h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 10px;
}

.dashboard-shell .deactivate-offers-empty {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}

.dashboard-shell .deactivate-offer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.dashboard-shell .deactivate-offer-row:last-child {
    border-bottom: none;
}

.dashboard-shell .deactivate-offer-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.dashboard-shell .deactivate-offer-title {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
}

.dashboard-shell .deactivate-offer-meta {
    font-size: 12px;
    color: #6B7280;
}

.dashboard-shell .deactivate-offer-btn {
    flex-shrink: 0;
    border: none;
    border-radius: 999px;
    background: #FCEFF3;
    color: #F16B8C;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.dashboard-shell .deactivate-offer-btn:hover:not(:disabled) {
    background: #F16B8C;
    color: #fff;
}

.dashboard-shell .deactivate-offer-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.dashboard-shell .deactivate-offer-btn.is-activate {
    background: #E8F8EE;
    color: #16A34A;
}

.dashboard-shell .deactivate-offer-btn.is-activate:hover:not(:disabled) {
    background: #16A34A;
    color: #fff;
}

.dashboard-shell .offer-detail-page {
    animation: dashFadeIn 0.35s ease;
}

.dashboard-shell .offer-detail-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0px 0px 35px 0px #00000012;
}

.dashboard-shell .detail-hero {
    position: relative;
    aspect-ratio: 16 / 7;
    /* overflow: hidden; */
    background: #F3F4F6;
}

.dashboard-shell .detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dashboard-shell .hero-stats {
    position: absolute;
    top: auto;
    bottom: -70px;
    right: 20px;
    display: flex;
    gap: 12px;
}

.dashboard-shell .stat-tile {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0px 4px 4px 0px #0000000D;
}

.dashboard-shell .stat-tile .stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #3D3D3D;
    text-transform: uppercase;
}

.dashboard-shell .stat-tile strong {
    font-size: 22px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1;
}

.dashboard-shell .stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

.dashboard-shell .stat-trend svg {
    width: 15px;
    height: 15px;
}

.dashboard-shell .stat-trend.up {
    color: #5AB291;
}

.dashboard-shell .stat-trend.down {
    color: #E03E3E;
}

.dashboard-shell .hero-actions {
    position: absolute;
    left: 20px;
    bottom: -22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-shell .hero-pill {
    background: #fff;
    color: #F16B8C;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0px 4px 4px 0px #0000000D;
}

.dashboard-shell .hero-actions button,
.dashboard-shell .hero-actions a {
    width: 51px;
    height: 41px;
    border-radius: 26px;
    border: none;
    background: #fff;
    color: #F16B8C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px #0000000D;
    transition: transform 0.15s ease, background 0.2s ease;
}

.dashboard-shell .hero-actions button:hover,
.dashboard-shell .hero-actions a:hover {
    transform: translateY(-2px);
    background: #FFF5F8;
}

.dashboard-shell .hero-actions svg {
    width: 20px;
    height: 20px;
}

.dashboard-shell .detail-body {
    padding: 50px 20px 30px;
}

.dashboard-shell .detail-body h1 {
    font-size: 30px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.dashboard-shell .detail-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #000000;
    margin: 0 0 24px;
    font-weight: 500;
}

.dashboard-shell .detail-category svg {
    width: 16px;
    height: 16px;
    color: #000000;
}

.dashboard-shell .detail-section {
    margin-bottom: 24px;
}

.dashboard-shell .detail-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 10px;
}

.dashboard-shell .detail-section p {
    font-size: 16px;
    color: #666666;
    line-height: 1.65;
    margin: 0;
}

.dashboard-shell .detail-days {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dashboard-shell .detail-days span {
    background: #FAEFF3;
    color: #1A1A1A;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.dashboard-shell .detail-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 560px;
}

.dashboard-shell .detail-photo {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #F3F4F6;
    transition: transform 0.2s ease;
}

.dashboard-shell .detail-photo:hover {
    transform: translateY(-2px);
}

.dashboard-shell .detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dashboard-shell .detail-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px;
}

.dashboard-shell .btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 28px;
    border: none;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    min-width: 150px;
    justify-content: center;
}

.dashboard-shell .btn-detail svg {
    width: 20px;
    height: 20px;
}

.dashboard-shell .btn-detail.edit {
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    box-shadow: 0 12px 24px -10px rgba(241, 107, 140, 0.55);
}

.dashboard-shell .btn-detail.edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px -10px rgba(241, 107, 140, 0.7);
}

.dashboard-shell .btn-detail.delete {
    background: #1A1A1A;
}

.dashboard-shell .btn-detail.delete:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.dashboard-shell .edit-restaurant-page {
    animation: dashFadeIn 0.35s ease;
}

.dashboard-shell .register-restaurant-page.is-dashboard {
    min-height: 0;
    background: transparent;
    display: block;
    padding: 0;
    align-items: stretch;
}

.dashboard-shell .register-restaurant-page.is-dashboard .register-card {
    width: 100%;
    max-width: 100%;
    padding: 32px 28px 28px;
    border-radius: 22px;
}

.dashboard-shell .edit-restaurant-page .tag.is-done {
    background: #E8F6E5;
    color: #338F2C;
}

.dashboard-shell .edit-restaurant-page .document-dropzone {
    align-items: center;
}

.dashboard-shell .edit-restaurant-page .doc-pdf-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 52px;
    background: linear-gradient(180deg, #FF7A7A 0%, #E03E3E 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    box-shadow: 0 8px 16px -8px rgba(224, 62, 62, 0.45);
}

.dashboard-shell .edit-restaurant-page .doc-pdf-badge::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.25);
    border-bottom-left-radius: 4px;
    border-top-right-radius: 8px;
}

.dashboard-shell .edit-restaurant-page .doc-name {
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    font-size: 13px;
}

.dashboard-shell .edit-restaurant-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.dashboard-shell .btn-save {
    height: 52px;
    padding: 0 60px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 26px -10px rgba(241, 107, 140, 0.55);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.dashboard-shell .btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -10px rgba(241, 107, 140, 0.7);
}

.dashboard-shell .terms-page {
    animation: dashFadeIn 0.35s ease;
}

.dashboard-shell .terms-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0px 0px 35px 0px #00000012;
}

.dashboard-shell .terms-card .last-updated {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #6B7280;
    text-transform: uppercase;
    margin: 0 0 26px;
}

.dashboard-shell .terms-section {
    margin-bottom: 26px;
}

.dashboard-shell .terms-section:last-child {
    margin-bottom: 0;
}

.dashboard-shell .terms-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px;
}

.dashboard-shell .terms-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #4B5563;
    margin: 0;
}











/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1399.98px) {

    .how_works_sec .how_text h3 {
        font-size: 20px;
    }

    .how_works_sec .how_text p {
        font-size: 15px;
    }

    .dashboard-shell .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-page .banner-visual img {
        height: 540px;
    }

    .cstm_container {
        padding: 0 40px;
    }

    /* Login */
    .login-page .form-wrap {
        max-width: 100%;
    }

    .login-page .form-panel {
        align-items: center;
    }

    .login-page .brand-title {
        font-size: 42px;
    }

    .home-page .banner-title {
        font-size: 60px;
    }

}

@media (max-width: 1199.98px) {

    .own_restaurant_ctas {
        gap: 10px;
    }

    .cta-restaurant {
        font-size: 15px;
    }

    .own_restaurant_card {
        padding: 30px 20px;
        gap: 20px;
    }

    .brand_sec .brand_grid {
        gap: 40px;
    }

    .how_works_sec .how_card {
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .how_works_sec .how_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how_works_sec .how_card.is-featured,
    .how_works_sec .how_card.is-featured:hover {
        transform: none;
    }

    .how_works_sec .how_card.is-featured:hover {
        transform: translateY(-4px);
    }

    .site-header .cta {
        font-size: 14px;
    }

    .site-header .nav-links a {
        font-size: 14px;
    }

    .dashboard-shell .hero-stats {
        bottom: -22px;
        right: 10px;
    }

    .dashboard-shell .hero-actions {
        left: 10px;
    }

    .dashboard-shell .stat-content strong {
        font-size: 32px;
    }

    .dashboard-shell .stats-grid {
        gap: 16px;
        margin-bottom: 30px;
    }

    .dashboard-shell .restaurant-name {
        font-size: 44px;
    }

    .dashboard-shell .dashboard-body {
        padding: 20px 16px;
        gap: 20px;
    }

    .dashboard-shell .dash-sidebar {
        flex: 0 0 240px;
    }

    .home-page .home-banner {
        padding: 30px 0;
    }

    .home-page .banner-visual img {
        height: 520px;
    }


    .site-header .nav-links {
        gap: 24px;
    }

    .cstm_container {
        padding: 0 24px;
    }

    .register-restaurant-page .form-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    /* Login */
    .login-page .form-title {
        font-size: 32px;
    }

    .login-page .brand-panel,
    .login-page .form-panel {
        padding: 30px 24px 10px;
    }

    .login-page .brand-title {
        font-size: 32px;
    }

    .home-page .banner-title {
        font-size: 50px;
    }

    .home-page .banner-grid {
        gap: 24px;
    }
}

@media (max-width: 991.98px) {

    .brand_sec h2 {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .own_restaurant_text p {
        font-size: 16px;
        max-width: 100%;
    }

    .own_restaurant_card {
        gap: 25px;
        border-radius: 12px;
        grid-template-columns: 1fr;
    }

    .own_restaurant_text .eyebrow {
        font-size: 15px;
    }

    .own_restaurant_text h2 {
        font-size: 34px;
    }

    .how_works_sec {
        padding: 40px 0;
    }

    .how_works_sec .how_grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .how_works_sec .how_card {
        padding: 22px 0 0 22px;
        min-height: 220px;
    }

    .how_works_sec .how_text h3 {
        font-size: 20px;
    }

    .dashboard-shell .terms-section p {
        font-size: 14px;
    }

    .dashboard-shell .terms-section h2 {
        font-size: 18px;
    }

    .dashboard-shell .terms-card .last-updated {
        font-size: 14px;
        margin: 0 0 18px;
    }

    .dashboard-shell .terms-card {
        border-radius: 14px;
        padding: 20px;
    }

    .dashboard-shell .page-head p {
        font-size: 16px;
    }

    .dashboard-shell .manage-head-text p {
        font-size: 15px;
    }

    .dashboard-shell .dash-header-inner {
        padding: 12px 20px;
        gap: 14px;
    }

    .dashboard-shell .dash-menu-btn {
        display: inline-flex;
    }

    .dashboard-shell .dash-user-name {
        display: none;
    }

    .dashboard-shell .dashboard-body {
        padding: 20px 20px 32px;
        gap: 0;
    }

    .dashboard-shell .dash-sidebar-backdrop.is-visible {
        display: block;
        opacity: 1;
    }

    .dashboard-shell .dash-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        max-width: 85vw;
        flex: none;
        z-index: 50;
        border-radius: 0 18px 18px 0;
        min-height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 12px 0 40px -20px rgba(0, 0, 0, 0.2);
    }

    .dashboard-shell .dash-sidebar.is-open {
        transform: translateX(0);
    }

    .dashboard-shell .restaurant-name {
        font-size: 38px;
    }

    .dashboard-shell .stats-grid,
    .dashboard-shell .offers-grid {
        gap: 16px;
    }

    .register-restaurant-page .hours-row {
        grid-template-columns: 1fr 160px 60px 160px 100px 50px;
    }

    .site-footer .footer-brand p {
        font-size: 14px;
    }

    .site-footer {
        padding: 48px 0 24px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 32px;
    }

    .common_title {
        font-size: 34px;
    }

    .brand_sec {
        padding: 30px 0;
    }

    .brand_sec .brand_grid {
        gap: 30px;
    }

    .brand_sec .brand_grid img {
        height: 32px;
    }

    .home-page .banner-visual img {
        height: 380px;
    }

    .home-page .banner-content {
        min-height: inherit;
    }

    .home-page .banner-visual::after {
        width: 80px;
        height: 260px;
        bottom: 20px;
    }

    .home-page .banner-visual {
        padding-right: 30px;
    }

    .cstm_container {
        padding: 0 20px;
    }

    .cstm_container {
        padding: 0 24px;
    }

    .site-header .menu-toggle {
        display: flex;
    }

    .header-lang-desktop {
        display: none;
    }

    .header-lang-mobile {
        display: flex;
        justify-content: center;
        padding: 10px 0;
    }

    .site-header .header-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .site-header .header-menu.is-open {
        max-height: 500px;
        padding: 12px 24px 24px;
    }

    .site-header .nav-links {
        flex-direction: column;
        gap: 0;
        margin: 0;
    }

    .site-header .nav-links a {
        padding: 16px 0;
        border-bottom: 1px solid #F3F4F6;
        font-size: 15px;
    }

    .site-header .nav-links a::after {
        display: none;
    }

    .site-header .header-ctas {
        flex-direction: column;
        gap: 10px;
        margin-top: 18px;
    }

    .site-header .cta {
        width: 100%;
        height: 46px;
        font-size: 15px;
    }

    .register-restaurant-page .form-grid-3 {
        gap: 0px 16px;
    }

    .register-restaurant-page .form-field {
        margin-bottom: 14px;
    }

    .register-restaurant-page .form-field input {
        height: 50px;
    }

    .register-restaurant-page .form-field input,
    .register-restaurant-page .form-field textarea {
        font-size: 14px;
    }

    .register-restaurant-page .card-subtitle {
        font-size: 15px;
        margin: 0 0 24px;
    }

    .register-restaurant-page .card-title {
        font-size: 26px;
    }

    /* Login */
    .login-page .img img {
        margin-top: -50px;
    }

    .login-page .brand-panel {
        min-height: auto;
    }

    .login-page .brand-logo {
        margin-bottom: 32px;
    }

    .login-page .brand-title {
        font-size: 34px;
    }

    .login-page .brand-subtitle {
        margin-bottom: 32px;
    }

    .login-page .form-panel {
        padding: 40px 32px;
    }

    .register-restaurant-page .form-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .home-page .banner-title {
        font-size: 42px;
        margin: 0 0 18px;
    }

    .home-page .banner-grid {
        min-height: inherit;
        grid-template-columns: 1fr .8fr;
    }

    .home-page .banner-badge {
        margin-bottom: 20px;
    }


    .home-page .banner-text {
        font-size: 15px;
        margin: 0 0 16px;
    }

    .home-page .store-btn {
        padding: 13px 16px;
        font-size: 15px;
        border-radius: 10px;
    }

    .home-page .home-banner .app_store .flex_box {
        gap: 7px;
    }

    .home-page .home-banner .app_store img {
        height: 50px;
    }

    .home-page .store-btn svg {
        width: 20px;
        height: 20px;
    }

    .home-page .banner-ctas {
        gap: 8px;
        margin-bottom: 16px;
    }

    .home-page .store-btn strong {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {

    .own_restaurant_text strong {
        font-size: 16px;
        font-weight: 600;
        margin-top: 0px;
    }

    .home-page .banner-text {
        font-size: 16px;
    }


    .own_restaurant_text h2 {
        font-size: 28px;
    }

    .own_restaurant_text p {
        font-size: 15px;
    }

    .own_restaurant_ctas {
        flex-direction: column;
        align-items: stretch;
        margin-top: 4px;
    }

    .cta-restaurant {
        justify-content: center;
        height: 50px;
    }

    .how_works_sec {
        padding: 30px 0;
    }

    .how_works_sec .common_title {
        margin-bottom: 24px;
    }

    .how_works_sec .how_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .how_works_sec .how_card {
        min-height: 200px;
    }

    .site-footer .footer-nav h4 {
        font-size: 16px;
        ;
        margin: 0;
    }

    .site-footer .footer-nav {
        gap: 12px;
    }

    .dashboard-shell .detail-section p {
        font-size: 15px;
    }

    .dashboard-shell .offer-detail-card {
        border-radius: 20px;
    }

    .dashboard-shell .detail-body {
        padding: 22px 18px 24px;
    }

    .dashboard-shell .detail-hero {
        aspect-ratio: 16 / 10;
        display: grid;
        gap: 15px;
    }

    .dashboard-shell .hero-stats {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        order: 2;
        margin-bottom: 15px;
    }

    .dashboard-shell .stat-tile {
        flex: 1;
        min-width: 0;
    }

    .dashboard-shell .hero-actions {
        gap: 6px;
        position: static;
    }

    .dashboard-shell .hero-actions button,
    .dashboard-shell .hero-actions a {
        width: 34px;
        height: 34px;
    }

    .dashboard-shell .detail-body h1 {
        font-size: 24px;
    }

    .dashboard-shell .detail-photos {
        gap: 10px;
    }

    .dashboard-shell .detail-actions {
        flex-direction: column-reverse;
    }

    .dashboard-shell .btn-detail {
        width: 100%;
        justify-content: center;
    }

    .dashboard-shell .register-restaurant-page.is-dashboard .register-card {
        padding: 22px 18px 20px;
        border-radius: 18px;
    }

    .dashboard-shell .edit-restaurant-actions {
        margin-top: 14px;
    }

    .dashboard-shell .btn-save {
        width: 100%;
        padding: 0;
    }

    .dashboard-shell .page-head p {
        font-size: 15px;
    }

    .dashboard-shell .add-offer-form {
        padding: 22px 18px 20px;
        border-radius: 18px;
        gap: 18px;
    }

    .dashboard-shell .add-offer-form .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dashboard-shell .add-offer-form .day-pill {
        width: 40px;
        height: 36px;
        font-size: 11px;
    }

    .dashboard-shell .add-offer-form .btn-preview {
        width: 100%;
        padding: 0;
    }

    .dashboard-shell .add-offer-form .form-actions-row {
        justify-content: stretch;
    }

    .dashboard-shell .manage-head,
    .dashboard-shell .page-head.active-offers-head {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-bottom: 24px;
    }

    .dashboard-shell .manage-head-text h1 {
        font-size: 24px;
    }

    .dashboard-shell .btn-add-offer,
    .dashboard-shell .btn-deactivate-offers {
        width: 100%;
        justify-content: center;
    }

    .dashboard-shell .offer-meta {
        flex-wrap: wrap;
        gap: 4px 10px;
    }

    .dashboard-shell .restaurant-desc {
        font-size: 15px;
    }

    .dashboard-shell .dashboard-body {
        padding: 16px 16px 28px;
    }

    .dashboard-shell .restaurant-name {
        font-size: 30px;
    }

    .dashboard-shell .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dashboard-shell .offers-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-shell .stat-card {
        padding: 18px 20px;
    }

    .dashboard-shell .stat-content {
        gap: 16px;
    }

    .dashboard-shell .stat-content strong {
        font-size: 32px;
    }

    .dashboard-shell .offers-head h2 {
        font-size: 20px;
    }

    .site-footer .footer-brand p {
        font-size: 15px;
        max-width: 100%;
        margin: 0 0 16px;

    }

    .site-footer {
        padding: 40px 0 24px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 32px;
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .common_title {
        font-size: 28px;
    }

    .brand_sec h2 {
        margin-bottom: 16px;
        font-size: 16px;

    }

    .brand_sec .brand_grid img {
        height: 46px;
        padding: 12px;
        border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .brand_sec .brand_grid {
        gap: 12px;
    }

    .site-header {
        padding: 12px 0;
    }

    .cstm_container {
        padding: 0 16px;
    }

    .forgot-password-page .back-link {
        font-size: 15px;
    }

    .forgot-password-page .card-subtitle {
        font-size: 14px;
    }

    /* Login */
    .login-page .form-subtitle {
        font-size: 15px;
        margin: 0 0 20px;
        text-align: center;
    }

    .login-page .brand-subtitle {
        margin-bottom: 0;
        font-size: 15px;
        text-align: center;
        max-width: 100%;
    }

    .login-page .brand-title span {
        padding: 0 6px;
    }

    .login-page .brand-title {
        line-height: 1.4;
    }

    .login-page .brand-title br {
        display: none;
    }

    .login-page .brand-logo {
        margin-bottom: 16px;
        text-align: center;
    }

    .login-page .img {
        display: none;
    }

    .login-page .login-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .login-page .brand-panel,
    .login-page .form-panel {
        padding: 30px 20px;
    }

    .login-page .brand-title {
        font-size: 30px;
        text-align: center;
    }

    .login-page .form-title {
        font-size: 26px;
        text-align: center;
    }

    /* Forgot Password */
    .forgot-password-page .forgot-card {
        padding: 36px 28px 30px;
    }

    .forgot-password-page .card-title {
        font-size: 24px;
    }

    .register-restaurant-page .register-card {
        padding: 28px 22px;
    }

    .register-restaurant-page .card-title {
        font-size: 24px;
    }

    .register-restaurant-page .form-grid-3 {
        grid-template-columns: 1fr;
    }

    .register-restaurant-page .hours-row {
        grid-template-columns: 50px 1fr 1fr auto;
        gap: 8px;
        padding: 10px 12px;
    }

    .register-restaurant-page .hours-row .to,
    .register-restaurant-page .hours-row .closed-text {
        display: none;
    }

    .home-page .home-banner {
        padding: 24px 0 20px;
    }

    .home-page .banner-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .home-page .banner-content {
        order: 1;
        min-height: auto;
        text-align: left;
        transform: inherit;
    }

    .home-banner .no_rotate {
        transform: inherit;
    }

    .home-page .banner-title br {
        display: none;
    }

    .home-page .banner-title {
        font-size: 40px;
        margin: 0 0 14px;
    }

    .home-page .banner-text {
        max-width: 100%;
    }

    .home-page .banner-visual {
        order: 2;
        margin-top: 32px;
        justify-content: center;
        padding-right: 0;
    }

    .home-page .banner-visual::after {
        width: 120px;
        height: 300px;
        bottom: 60px;
    }

    .home-page .banner-visual img {
        max-width: 360px;
        height: inherit;
    }
}

@media (max-width: 575.98px) {

    .site-footer .footer-nav h4 {
        font-size: 15px;
    }

    .site-footer .app_store img {
        height: 45px;
    }

    .how_works_sec .how_card {
        padding: 20px 15px 0px 15px;
        grid-template-columns: 1fr .5fr;
    }

    .how_works_sec .how_visual img {
        height: 180px;
    }

    .how_works_sec .common_title {
        margin-bottom: 18px;
    }

    .how_works_sec {
        padding: 20px 0;
    }

    .brand_sec {
        padding: 20px 0;
    }

    .home-page .banner-visual {
        margin-top: 12px;
    }

    .own_restaurant_card {
        gap: 20px;
        border-radius: 12px;
        padding: 20px 16px;
    }

    .own_restaurant_text h2 {
        font-size: 26px;
    }

    .site-footer .footer-meta>span {
        justify-content: center;
    }

    .dashboard-shell .page-head h1 {
        font-size: 24px;
    }

    .dashboard-shell .dash-header-inner {
        padding: 10px 14px;
    }

    .dashboard-shell .dash-logo img {
        height: 28px;
    }

    .dashboard-shell .dash-avatar {
        width: 32px;
        height: 32px;
    }

    .dashboard-shell .dashboard-body {
        padding: 14px 14px 24px;
    }

    .dashboard-shell .restaurant-name {
        font-size: 26px;
    }

    .dashboard-shell .overview-head {
        margin-bottom: 22px;
    }

    .dashboard-shell .stats-grid {
        margin-bottom: 28px;
        grid-template-columns: 1fr;
    }

    .dashboard-shell .offer-image {
        aspect-ratio: 16 / 10;
    }

    .dashboard-shell .offer-title {
        font-size: 17px;
    }

    .register-restaurant-page .signin-prompt {
        text-align: center;
    }

    .site-footer .footer-bottom {
        align-items: inherit;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .site-footer {
        padding: 32px 0 20px;
    }

    .site-footer .footer-grid {
        gap: 24px;
        padding-bottom: 20px;
    }

    .site-footer .footer-meta {
        flex-direction: column;
        align-items: inherit;
        gap: 8px;
        justify-content: center;
    }

    .common_title {
        font-size: 26px;
    }

    .cstm_container {
        padding: 0 16px;
    }

    .home-page .banner-badge {
        font-size: 11px;
        padding: 7px 14px;
        margin-bottom: 20px;
    }

    .home-page .banner-title {
        font-size: 34px;
        letter-spacing: -1px;
        line-height: 2.6rem;
    }

    .home-page .home-banner .app_store img {
        height: 55px;
    }

    .home-page .store-btn svg {
        width: 24px;
        height: 24px;
    }

    .home-page .banner-visual::after {
        width: 90px;
        height: 220px;
        bottom: 70px;
    }

    .home-page .store-btn strong {
        font-size: 14px;
    }

    .home-page .avatars .avatar,
    .home-page .avatars .count {
        width: 38px;
        height: 38px;
    }

    .home-page .avatars .count {
        font-size: 12px;
    }

    .home-page .banner-visual img {
        max-width: 280px;
    }

    .register-restaurant-page .back-link {
        font-size: 15px;
    }

    .register-restaurant-page .brand-logo {
        margin-bottom: 14px;
    }

    .register-restaurant-page .brand-logo img {
        height: 34px;
    }

    .forgot-password-page .icon-box svg {
        width: 28px;
        height: 28px;
    }

    /* Login */
    .login-page .divider {
        margin: 20px 0;
    }

    .login-page .brand-logo img {
        height: 36px;
    }

    .login-page .brand-panel,
    .login-page .form-panel {
        padding: 28px 16px;
    }

    .login-page .brand-title {
        font-size: 26px;
    }

    .login-page .brand-subtitle {
        font-size: 14px;
    }

    .login-page .form-field input {
        height: 46px;
    }

    .login-page .btn-login,
    .login-page .btn-register {
        height: 50px;
    }

    .login-page .legal-links {
        gap: 18px;
    }

    /* Forgot Password */
    .forgot-password-page {
        padding: 24px 16px;
    }

    .forgot-password-page .brand-logo img {
        height: 38px;
    }

    .forgot-password-page .forgot-card {
        padding: 32px 22px 26px;
        border-radius: 20px;
    }

    .forgot-password-page .icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .forgot-password-page .form-field input {
        height: 48px;
    }

    .forgot-password-page .btn-submit {
        height: 50px;
    }

    .register-restaurant-page {
        padding: 24px 16px;
    }

    .register-restaurant-page .register-card {
        padding: 24px 15px;
        border-radius: 18px;
    }

    .register-restaurant-page .form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 14px;
    }

    .register-restaurant-page .btn-submit {
        width: 100%;
    }

    .register-restaurant-page .back-link {
        justify-content: center;
    }

    .register-restaurant-page .document-dropzone {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .home-page .banner-visual img {
        max-width: 240px;
    }

    .own_restaurant_text h2 {
        font-size: 24px;
    }

    .how_works_sec .how_card {
        padding: 20px 0 0 15px;
    }

    .how_works_sec .how_text h3 {
        font-size: 18px;
    }

    .site-footer .footer-nav h4 {
        font-size: 16px;
    }

    .site-footer .footer-brand p {
        font-size: 14px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .common_title {
        font-size: 24px;
    }

    .home-page .store-btn {
        width: 100%;
        justify-content: center;
    }

    /* Login */
    .login-page .form-title {
        font-size: 24px;
    }

    .login-page .brand-title {
        font-size: 24px;
    }
}
/* ---- Offer preview modal (Add New Offer -> Continue to Preview) ----
   Shows the offer as a diner will see it, before the owner commits. */
.dashboard-shell .preview-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 25, 0.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
    animation: previewFadeIn 0.2s ease;
    overflow-y: auto;
}

.dashboard-shell .preview-card {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.35);
    animation: previewCardIn 0.25s ease;
}

@keyframes previewCardIn {
    from { opacity: 0; transform: translateY(12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.dashboard-shell .preview-image {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #f3f4f6;
}

.dashboard-shell .preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dashboard-shell .preview-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}

.dashboard-shell .preview-body {
    padding: 16px 20px 20px;
}

.dashboard-shell .preview-restaurant {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

.dashboard-shell .preview-meta {
    margin: 2px 0 10px;
    font-size: 12px;
    color: #6b7280;
}

.dashboard-shell .preview-title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.dashboard-shell .preview-desc {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
}

.dashboard-shell .preview-when {
    margin: 0 0 12px;
    font-size: 12px;
    color: #6b7280;
}

.dashboard-shell .preview-open-pill {
    display: inline-block;
    align-self: flex-start;
    background: #dcfce7;
    color: #15803d;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.dashboard-shell .preview-publish {
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px;
    border-radius: 12px;
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.dashboard-shell .preview-publish:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -8px rgba(241, 107, 140, 0.7);
}

.dashboard-shell .preview-publish:disabled {
    opacity: 0.65;
    cursor: default;
}

.dashboard-shell .preview-edit {
    display: block;
    width: 100%;
    margin-top: 10px;
    border: none;
    background: none;
    cursor: pointer;
    color: #F06285;
    font-size: 14px;
    font-weight: 600;
    padding: 6px;
}

.dashboard-shell .preview-edit:disabled {
    opacity: 0.6;
    cursor: default;
}

/* ==========================================================================
   ABOUT US / CONTACT US — shared bits (breadcrumb, icon badge)
   ========================================================================== */

.about_breadcrumb,
.contact_breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 20px;
}

.about_breadcrumb a,
.contact_breadcrumb a {
    color: #6B7280;
    text-decoration: none;
}

.about_breadcrumb a:hover,
.contact_breadcrumb a:hover {
    color: #F16B8C;
}

.about_breadcrumb i,
.contact_breadcrumb i {
    font-size: 11px;
    color: #C9CDD3;
}

.about_breadcrumb span[aria-current],
.contact_breadcrumb span[aria-current] {
    color: #1A1A1A;
    font-weight: 500;
}

.about_icon,
.contact_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #FCEFF3;
    color: #F06285;
    font-size: 20px;
    flex-shrink: 0;
}

/* ==========================================================================
   ABOUT US
   ========================================================================== */

.about_hero {
    padding: 48px 0 60px;
    background: #fff;
}

.about_hero_card {
    background: #F0628514;
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
}

.about_hero_text h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.15;
    margin: 0 0 16px;
}

.about_hero_text h1 span {
    color: #F16B8C;
}

.about_hero_text > p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 480px;
}

.about_hero_points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about_hero_points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1A1A1A;
}

.about_hero_points i {
    color: #F06285;
    font-size: 16px;
}

.about_hero_visual {
    display: flex;
    justify-content: center;
}

.about_hero_visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.15));
}

.about_section_head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.about_section_head p {
    font-size: 16px;
    color: #6B7280;
    margin: 12px 0 0;
}

.about_audience {
    padding: 60px 0;
    background: #FAFAFA;
}

.about_audience_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.about_audience_card {
    background: #fff;
    border: 1px solid #F3F4F6;
    border-radius: 20px;
    padding: 36px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 16px 0px;
}

.about_audience_card.is-pink {
    background: #F0628512;
    border-color: transparent;
}

.about_audience_card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 20px 0 8px;
}

.about_audience_card > p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 20px;
}

.about_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about_list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #1A1A1A;
    line-height: 1.5;
}

.about_list i {
    color: #16A34A;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about_values {
    padding: 60px 0;
    background: #fff;
}

.about_values_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about_value_card {
    text-align: center;
    padding: 8px;
}

.about_value_card .about_icon {
    margin: 0 auto 18px;
}

.about_value_card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px;
}

.about_value_card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.about_cta_sec {
    padding: 0 0 80px;
    background: #fff;
}

.about_cta {
    background: linear-gradient(100.58deg, #FAA5B6 -6.17%, #F06285 81.14%);
    border-radius: 24px;
    padding: 56px;
    text-align: center;
}

.about_cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.about_cta h2 span {
    color: #1A1A1A;
}

.about_cta > p {
    font-size: 16px;
    color: #FFF0F3;
    margin: 0 0 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.about_cta .own_restaurant_ctas {
    justify-content: center;
}

.about_cta .cta-restaurant.outline {
    background: #fff;
}

/* ==========================================================================
   CONTACT US
   ========================================================================== */

.contact_hero {
    padding: 48px 0 40px;
    background: #fff;
}

.contact_hero_card {
    max-width: 680px;
}

.contact_hero_card h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0 0 14px;
}

.contact_hero_card h1 span {
    color: #F16B8C;
}

.contact_hero_card > p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.contact_main {
    padding: 20px 0 80px;
    background: #fff;
}

.contact_grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: start;
}

.contact_info h2,
.contact_form_card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px;
}

.contact_info h2 span {
    color: #F16B8C;
}

.contact_info > p {
    font-size: 15px;
    color: #6B7280;
    margin: 0 0 28px;
}

.contact_cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact_card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #FAFAFA;
    border-radius: 16px;
    padding: 22px;
}

.contact_card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 4px;
}

.contact_card p {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 8px;
    line-height: 1.5;
}

.contact_card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #F06285;
    text-decoration: none;
}

.contact_card a:hover {
    color: #D94B70;
}

.contact_card a i {
    font-size: 12px;
}

.contact_form_card {
    background: #fff;
    border: 1px solid #F3F4F6;
    border-radius: 20px;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 16px 0px;
}

.contact_form_sub {
    font-size: 14px;
    color: #6B7280;
    margin: 0 0 24px;
}

.contact_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact_field {
    margin-bottom: 20px;
}

.contact_field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #3D3D3D;
    margin-bottom: 8px;
}

.contact_label_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact_count {
    font-size: 12px;
    color: #9CA3AF;
}

.contact_field input,
.contact_field textarea {
    width: 100%;
    background: #F9FAFB;
    border: 1px solid #F3F4F6;
    border-radius: 10px;
    font-size: 15px;
    color: #111;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    font-family: inherit;
}

.contact_field input {
    height: 52px;
    padding: 0 14px;
}

.contact_field textarea {
    padding: 14px;
    min-height: 130px;
    resize: vertical;
}

.contact_field input:focus,
.contact_field textarea:focus {
    border-color: #F16B8C;
    background: #fff;
}

.contact_field input::placeholder,
.contact_field textarea::placeholder {
    color: #a5a5ad;
}

.contact_submit {
    width: 100%;
    justify-content: center;
    margin: 4px 0 16px;
    border: none;
    cursor: pointer;
}

.contact_note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9CA3AF;
    margin: 0;
}

.contact_success {
    margin: 16px 0 0;
    padding: 14px 16px;
    background: #E8F6E5;
    color: #227A1B;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.contact_success a {
    color: #227A1B;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .about_hero_card {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .about_hero_visual {
        order: -1;
    }

    .about_audience_grid {
        grid-template-columns: 1fr;
    }

    .about_values_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about_cta {
        padding: 40px 28px;
    }

    .contact_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .about_hero_text h1 {
        font-size: 32px;
    }

    .about_hero_card {
        padding: 24px;
    }

    .about_values_grid {
        grid-template-columns: 1fr;
    }

    .about_cta h2 {
        font-size: 24px;
    }

    .about_cta .own_restaurant_ctas {
        flex-direction: column;
    }

    .contact_hero_card h1 {
        font-size: 28px;
    }

    .contact_row {
        grid-template-columns: 1fr;
    }

    .contact_form_card {
        padding: 24px;
    }
}
