:root {
    --btn-orange: #fd5c0b;
    --btn-dark: #161415;
    --text-orange: #dc511a;
    --text-dark: #000105;
    --text-secondary: #323338;
    --text-muted: #797e82;
    --bg-green: #d0efc6;
    --color-green: #819b74;
    --bg-light-orange: #fff1e5;
    --color-violet: #7571a3;
    --bg-violet: #e8e4fb;
    --color-seller-orange: #fd5c0b;
    --bg-seller-light: #fff1e5;
    --color-franchise-dark: #1a1d2e;
    --bg-franchise-dark: #1a1d2e;

    --font-section-heading: 48px;
    --font-section-heading-tablet: 36px;
    --font-section-heading-mobile: 28px;

    --font-section-desc: 15px;
    --font-section-desc-mobile: 14px;

    --font-section-label: 11px;

    --section-padding-mobile: 25px 3%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
}

.mob-nav,
.mob-main {
    display: none;
}

@media (max-width: 650px) {

    .mob-nav,
    .mob-main {
        display: block;
    }
}

/* Navigation */
.mob-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #f0f0f4;
    padding: 0 5%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mob-logo-part {
    display: flex;
    gap: 6px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--btn-dark);
    text-decoration: none;
}

.mob-logo-img {
    height: 45px;
    width: auto;
}

.logo span {
    color: var(--btn-orange);
}

.hamburger-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Common Section Styles */
.mob-hero,
.mob-what-is-dottimo,
.mob-key-features,
.mob-for-customers,
.mob-for-sellers,
.mob-for-franchise {
    padding: 35px 0;
}

.mob-section-inner {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Badge */
.mob-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-section-label);
    font-weight: 700;
    color: var(--text-orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 0;
    border-radius: 10px;
    align-self: flex-start;
}

/* Headings */
.mob-new-heading {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.mob-highlight {
    color: var(--text-orange);
}

/* Description */
.mob-new-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Buttons */
.mob-cta-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--btn-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    justify-content: center;
    min-width: 150px;
}

.mob-cta-orange:hover {
    background: #d15d22;
    transform: translateY(-2px);
}

.mob-cta-orange.sep-width {
    min-width: 220px;
}

.mob-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
}

.mob-cta-outline:hover {
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

/* Image Wrappers */
.mob-main-image-wrap,
.mob-for-image-wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.mob-main-image-wrap img,
.mob-for-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

/* Hero Section */
.mob-new-cta {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

/* What is Dottimo Section */
.mob-whats-features {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
    align-items: flex-start;
}

.mob-whats-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
}

.mob-whats-card-img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-whats-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mob-whats-card-head {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.mob-whats-card-sub {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Key Features Section */
.mob-key-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.mob-key-features-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mob-key-features-card-img {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-key-features-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mob-key-features-card-head {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.mob-key-features-card-sub {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.start-shopping-key {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

/* For Customers Section */
.mob-for-card-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.mob-for-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.mob-for-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #fd5c0b33;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--btn-orange);
    font-size: 22px;
}

.mob-for-texts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mob-for-card-head {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.mob-for-card-sub {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.mob-for-button {
    margin-top: 10px;
}


/* For Franchise Section */
.mob-for-franchise {
    padding-bottom: 0;
}

.mob-for-franchise .mob-section-inner {
    padding-bottom: 30px;
}

.franchise-icon {
    background: #fff;
    color: var(--bg-franchise-dark);
}

/* Franchise CTA Box */
.mob-franchise-cta {
    background: var(--bg-franchise-dark);
    background-image: url(./images/mobile/franchise-store.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    margin-top: 30px;
}

.franchise-cta-content {
    padding: 30px 5%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.franchise-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-section-label);
    font-weight: 700;
    color: var(--text-orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 0;
    border-radius: 10px;
    align-self: flex-start;
}

.franchise-cta-heading {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.franchise-cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.franchise-cta-btn {
    margin-top: 8px;
    align-self: flex-start;
}

.franchise-image-wrap {
    width: 100%;
    overflow: hidden;
}

.franchise-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.franchise-footer {
    padding: 20px 5%;
    display: flex;
    gap: 15px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
}

.franchise-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.franchise-social {
    display: flex;
    gap: 15px;
}

.franchise-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.franchise-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 400px) {
    .mob-new-heading {
        font-size: 25px;
    }

    .mob-new-cta {
        gap: 8px;
    }

    .mob-cta-orange,
    .mob-cta-outline {
        padding: 12px 18px;
        font-size: 13px;
    }

    .mob-whats-features {
        gap: 10px;
    }

    .mob-whats-card-img {
        width: 50px;
        height: 50px;
    }

    .mob-key-features-grid {
        gap: 15px;
    }

    .franchise-cta-heading {
        font-size: 24px;
    }
}

@media (max-width: 360px) {
    .mob-new-heading {
        font-size: 23px;
    }

    .mob-new-cta {
        gap: 6px;
    }

    .mob-cta-orange,
    .mob-cta-outline {
        padding: 11px 14px;
        font-size: 12px;
    }

    .mob-whats-card-head {
        font-size: 18px;
    }

    .franchise-cta-heading {
        font-size: 22px;
    }

    .mob-cta-orange.sep-width {
        min-width: 200px;
    }
}