:root {
    --font-main: 'Noto Sans Arabic', sans-serif;
    --font-secondary: 'Outfit', sans-serif;
    --primary-color: #316C6B;
    --color-text-dark: #121212;
    --color-text-gray: #7C7171;
    --color-text-muted: #555555;
    --color-text-white: #ffffff;
    --color-border: #C0B693;
    --color-divider: #99B4AB;
    --color-accent-orange: #E39B5B;
    --color-card-bg: #ffffff;
    --color-services-bg: #9AB5AD;

    --font-size-medium: 22px;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-xs: 10px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-xxl: 34px;
    --font-size-xxxl: 48px;
    --font-size-3xl: 56px;
    --font-size-4xl: 80px;
    --font-size-5xl: 100px;
    --font-size-6xl: 160px;
    --font-size-7xl: 280px;

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
}
body {
    overflow-x: hidden;
}

/* footer reveal effect */
@media (min-width: 993px) {
    .page-wrap {
        position: relative;
        z-index: 1;
        background-color: var(--color-card-bg);
        margin-bottom: calc(-1 * var(--footer-height, 0px));
    }

    .footer {
        position: sticky;
        bottom: 0;
    }
}

.container {
    max-width: 1500px;
    margin: 20px auto;
    padding: 0 20px;
}

.small-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/*                                     Home page                                   */

/* NavBar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-dark);
    padding-bottom: 20px !important;
    border-bottom: 0.75px solid var(--color-border);
}

nav .logo img {
    height: 83px;
    width: 196px;
}

nav .middle-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav .middle-nav ul {
    display: flex;
    gap: 55px;
    list-style: none;
    align-items: center;
    cursor: pointer;
}

nav .middle-nav ul li.active {
    color: var(--primary-color);
}

.lang-switcher {
    font-family: var(--font-main);
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    border: none;
    background: transparent;
    cursor: pointer;
}

nav .contact {
    display: flex;
    gap: 10px;
    align-items: center;
}

nav .contact img {
    width: 55px;
    height: 55px;
}

nav .contact span {
    color: var(--color-text-gray);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-small);
}

nav .contact a {
    font-size: var(--font-size-base);
    color: var(--primary-color);
}

.create-store-btn {
    width: 268px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: none;
    background-color: var(--primary-color);
    color: var(--color-text-white);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    box-shadow: 0 12px 18px rgba(18, 18, 18, 0.25);
}

/* Mobile nav toggle*/
.menu-toggle {
    display: none;
}

.nav-actions {
    display: contents;
}

.hamburger {
    display: none;
}

/* hero section */
.hero {
    padding: 80px;
}

.hero .first {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.hero .first .qr-code {
    flex: 0 0 auto;
    width: 305px;
    height: 388px;
}

.hero-text {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: var(--font-size-7xl);
    font-weight: var(--font-weight-black);
    color: rgba(18, 18, 18, 0.04);
    white-space: nowrap;
    z-index: -1;
    animation: watermarkPulse 4s ease-in-out infinite;
}


@keyframes watermarkPulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.08);
    }
}

@keyframes watermarkPulseCentered {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.25);
    }
}

.rotating-heading {
    width: 100%;
    max-width: 1087px;
    font-family: var(--font-main);
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    line-height: 130px;
    color: var(--color-text-dark);
}

.social-follow {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-follow .follow-label {
    writing-mode: vertical-rl;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-2xl);
    line-height: 22.56px;
    color: var(--color-text-dark);
}

.social-follow img {
    width: 51px;
    height: 51px;
}

.second {
    align-items: center;
    display: flex;
    gap: 50px;
}

.second .hero-paragraph {
    width: 27%;
    align-items: center;
    display: flex;
    gap: 30px;
}

.second .hero-paragraph img {
    width: 29px;
    height: 29px;

}

.second .hero-paragraph span {
    font-family: var(--font-main);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-lg);
    line-height: 27.4px;
    color: var(--color-text-muted);
}

.mobile-break {
    display: none;
}

.second .build-store {
    box-sizing: border-box;
    width: 459px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18.5px 22.2px;
    border-radius: 15px;
    border: none;
    background-color: var(--primary-color);
    color: var(--color-text-white);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    box-shadow: 0 12px 18px rgba(18, 18, 18, 0.25);
}

.second .shopping {
    height: 401px;
    width: 492px;
}

/* steps section */

.steps .small-title {
    gap: 10px;
    display: flex;
    align-items: center;
}

.steps .small-title img {
    height: 25px;
}

.steps .small-title span {
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-xl);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    column-gap: 10px;
    row-gap: 20px;
    margin-top: 60px;
}

.step-title {
    margin-top: 20px;
}

.step-title h2 {
    text-align: left;
    font-family: var(--font-main);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-3xl);
    line-height: 1.15;
    color: var(--color-text-dark);
}

.step-card {
    box-sizing: border-box;
    min-width: 0;
    background-color: var(--color-card-bg);
    border-radius: 20px;
    padding: 16px 24px;
    box-shadow: 0 20px 50px rgba(213, 213, 213, 0.5);
}

.step-card[data-step="01"] {
    grid-column: 1;
    grid-row: 2;
}

.step-card[data-step="02"] {
    grid-column: 2;
    grid-row: 2;
}

.step-card[data-step="03"] {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
    margin-top: -235px;
}

.step-card[data-step="04"] {
    grid-column: 4;
    grid-row: 2;
}

.step-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.step-icon {
    width: 43px;
    height: 43px;
    color: var(--color-accent-orange);
}

.step-num {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-4xl);
    color: transparent;
    -webkit-text-stroke: 2px var(--color-divider);
}

.step-card p {
    font-family: var(--font-main);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-2xl);
    line-height: 40px;
    letter-spacing: 0;
    color: var(--color-text-muted);
}

.step-cta {
    grid-column: 3;
    grid-row: 2;
    justify-self: center;
    align-self: end;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xxl);
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.step-cta:hover {
    background-color: var(--primary-color);
    color: var(--color-text-white);
}

.steps-info {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 120px;
}
.steps-info img{
    width: 322px;
    height: 168px;
}
.steps-info p{
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
}

/* our services section */

.services-title{
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
}
.services-title img{
    height: 25px;
}
.services-title p{
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-xl);
}
.services h2{
    display: flex;
    justify-content: center;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
}
.services-stack{
    position: relative;
}
.service-panel{
    position: sticky;
    top: 0;
    background-color: var(--color-card-bg);
    padding: 20px 0;
}
.services .images{
    display: flex;
    align-items: stretch;
    gap: 40px;
}
.services .images img{
    flex: 1 1 0;
    min-width: 0;
    border-radius: 20px;
    object-fit: cover;
}
.service-card{
    box-sizing: border-box;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    border-radius: 20px;
    background-color: var(--primary-color);
}
.service-card h3{
    font-family: var(--font-main);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xxxl);
    line-height: 1.3;
    color: var(--color-text-white);
}
.service-card-bottom{
    display: flex;
    align-items: center;
    gap: 65px;
}
.service-num{
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-4xl);
    line-height: 1;
    color: var(--color-text-white);
}
.service-card-bottom p{
    font-family: var(--font-main);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-xl);
    line-height: 1.4;
    color: var(--color-text-white);
}

/* services we provide */
.services-provide{
    position: relative;
    margin-top: 90px;
    padding: 90px 0 60px;
    background-color: var(--color-services-bg);
}

.cart-mark{
    position: absolute;
    top: -95px;
    left: 0px;
    width: 150px;
    height: 173px;
}

.cart-mark-peach{
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
}

.cart-mark-teal{
    position: absolute;
    top: 34px;
    left: 76px;
    width: 134px;
    clip-path: inset(0 0 48% 0);
}

.services-provide-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.additional-title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.additional-title p{
    font-size: var(--font-size-xl);
    color: var(--color-text-white);
}
.additional-title img{
    height: 25px;
}
.services-provide-paragraph{
    font-size: var(--font-size-xxxl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-white);
}
.services-provide-info{
    display: flex;
    align-items: center;
    gap: 60px;
}
.services-provide-info p{
    max-width: 410px;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-white);
}
.services-provide-info span{
    color: var(--color-text-white);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xxxl);
}

.slider{
    margin-top: 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: max(20px, calc((100% - 1200px) / 2 + 20px));
    scrollbar-width: none;
}
.slider::-webkit-scrollbar{
    display: none;
}
.cards{
    display: flex;
    gap: 24px;
    width: max-content;
    padding-left: max(20px, calc((100% - 1200px) / 2 + 20px));
}
.slide-card{
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 360px;
    background-color: var(--color-card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 18px rgba(18, 18, 18, 0.1);
}
.slide-card img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.slide-card-body{
    padding: 20px;
}
.slide-card-body h3{
    font-family: var(--font-main);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    margin-bottom: 12px;
}
.slide-card-body p{
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}
.learn-more-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: var(--color-text-white);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
}

/* stories section */
.stories-top{
    display: flex;
    justify-content: space-around;
    align-items: end;
    gap: 40px;
}
.stories-title{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.stories-title p{
    font-size: var(--font-size-xl);
    color: var(--color-text-dark);
}
.stories-title img{
    height: 25px;
}
.stories-heading{
    font-size: var(--font-size-xxxl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
}
.stories-info p{
    max-width: 410px;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-muted);
}

.stores-slider{
    margin-top: 50px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: max(20px, calc((100% - 1200px) / 2 + 20px));
    scrollbar-width: none;
}
.stores-slider::-webkit-scrollbar{
    display: none;
}
.store-cards{
    display: flex;
    gap: 60px;
    width: max-content;
    padding: 0 max(20px, calc((100% - 1200px) / 2 + 20px));
}
.store-card{
    scroll-snap-align: start;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 240px;
}
.store-card span{
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
}
.store-card img{
    width: 240px;
    height: 205px;
    object-fit: cover;
    border-radius: 20px;
}

/* partners section */
.partners{
    margin-top: 90px;
    padding: 50px 0;
    background: linear-gradient(to right, rgba(154, 181, 172, 0.35) 0%, #FEFFFF 35%, #FFFFFF 65%, rgba(245, 201, 154, 0.35) 100%);
}
.partners-top{
    display: flex;
    align-items: center;
    gap: 50px;
}
.partners-title{
    flex: 0 0 auto;
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    white-space: nowrap;
}
.partners-slider{
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.partners-slider::-webkit-scrollbar{
    display: none;
}
.partners-logos{
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
}
.partners-logos img{
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 187px;
    height: 67px;
    object-fit: contain;
}

/* designs section */
.designs{
    position: relative;
    overflow: hidden;
}
.designs-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    z-index: -1;
}
.designs-top{
    display: flex;
    align-items: center;
}
.designs-title{
    display: flex;
    align-items: center;
    gap: 10px;
}
.designs-title img{
    height: 25px;
}
.designs-title p{
    font-size: var(--font-size-xl);
    color: var(--color-text-dark);
}
.designs-heading{
    font-size: var(--font-size-xxxl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
}
.designs-slider{
    margin-top: 20px;
    padding: 10px 20px 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    scrollbar-width: none;
}
.designs-slider::-webkit-scrollbar{
    display: none;
}
.design-cards{
    display: flex;
    gap: 24px;
    width: max-content;
}
.design-card{
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 288px;
    height: 313px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: var(--color-card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(18, 18, 18, 0.1);
}
.design-card p{
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    text-align: center;
}
.design-card img{
    width: 121px;
    height: 121px;
    object-fit: contain;
}

/* support & help section */
.support-help{
    margin-top: 90px;
}
.support-help-card{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 60px;
    border-radius: 30px;
    background: linear-gradient(to right, #EDEFEE 0%, #FFFFFF 50%, #FBEEE3 100%);
    box-shadow: 0 12px 30px rgba(18, 18, 18, 0.06);
}
.support-help-cart-1{
    position: absolute;
    top: -98px;
    right: calc(50% - 50vw);
    width: 264px;
    height: 352px;
    z-index: 0;
    clip-path: inset(0 0 0 89px);
}
.support-help-cart-2{
    position: absolute;
    top: -20px;
    right: calc(50% - 44vw);
    width: 268px;
    height: 239px;
    z-index: 0;
}
.support-help-text{
    position: relative;
    z-index: 1;
    width: 100%;
}
.support-help-bottom{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;
}
.support-help-title{
    display: flex;
    align-items: center;
    gap: 10px;
}
.support-help-title img{
    height: 25px;
}
.support-help-title p{
    font-size: var(--font-size-xl);
    color: var(--color-text-dark);
}
.support-help-heading{
    width: 49%;
    margin-top: 15px;
    font-size: var(--font-size-xxxl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
}
.support-help-icons{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}
.support-help-icons img{
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
}

/* footer */
.footer {
    margin-top: 100px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    width: 167px;
    height: 162px;
    border-radius: 20px;
}

.footer-social h4,
.footer-col h4 {
    font-family: var(--font-main);
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social-icons img {
    width: 22px;
    height: 22px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col a {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    text-decoration: none;
}

.footer-col a.footer-link-active {
    color: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-item img {
    width: 20px;
    height: 20px;
}

.footer-contact-item span {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 22px;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    border-radius: 15px;
    background-color: var(--primary-color);
    color: var(--color-text-white);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding: 25px 0;
    border-top: 0.75px solid var(--color-border);
    font-family: var(--font-main);
    font-size: var(--font-size-small);
    color: var(--color-text-gray);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    color: var(--color-text-gray);
    text-decoration: none;
}

@media (max-width: 1200px) {
    nav {
        font-size: var(--font-size-base);
        border-bottom: none;
    }

    nav .middle-nav {
        gap: 20px;
    }

    nav .middle-nav ul {
        gap: 15px;
    }

    nav .middle-nav .lang-switcher {
        font-size: var(--font-size-small);
    }

    nav .contact {
        gap: 6px;
    }

    nav .contact img {
        width: 40px;
        height: 40px;
    }

    nav .logo img {
        width: 150px;
        height: auto;
    }

    .create-store-btn {
        width: 150px;
        height: 40px;
        font-size: var(--font-size-base);
    }

    /* hero section */
    .hero {
        padding: 50px;
    }

    .hero .first .qr-code {
        width: 220px;
        height: 280px;
    }

    .rotating-heading {
        font-size: var(--font-size-3xl);
        line-height: 68px;
        max-width: 600px;
    }

    .watermark {
        font-size: var(--font-size-6xl);
    }

    .second {
        gap: 25px;
    }

    .second .hero-paragraph {
        width: auto;
        gap: 15px;
    }

    .second .hero-paragraph span {
        font-size: var(--font-size-small);
    }

    .second .build-store {
        width: 280px;
        height: 65px;
        padding: 12px 18px;
        font-size: var(--font-size-base);
    }

    .second .shopping {
        width: 260px;
        height: 212px;
    }

    /* steps section */
    .steps-grid {
        column-gap: 15px;
        row-gap: 20px;
        margin-top: 40px;
    }

    .step-title h2 {
        font-size: var(--font-size-2xl);
    }

    .step-card {
        padding: 18px;
    }

    .step-cta {
        width: 120px;
        height: 120px;
        font-size: var(--font-size-lg);
    }

    /* support & help */
    .support-help-card {
        padding: 30px 40px;
    }

    .support-help-cart-1,
    .support-help-cart-2 {
        display: none;
    }

    .support-help-heading {
        width: 55%;
        font-size: var(--font-size-xxl);
    }

    .support-help-icons img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 1024px) {
    /* footer */
    .footer-top {
        gap: 25px;
        padding-bottom: 35px;
    }

    .footer-logo {
        width: 130px;
        height: 126px;
    }

    .footer-social h4,
    .footer-col h4 {
        font-size: var(--font-size-lg);
        margin-bottom: 15px;
    }

    .footer-col {
        gap: 12px;
    }

    .footer-col a {
        font-size: var(--font-size-small);
    }

    .footer-contact-item span {
        font-size: var(--font-size-small);
    }

    .footer-cta {
        height: 65px;
        font-size: var(--font-size-base);
    }

    .footer-bottom {
        font-size: var(--font-size-small);
    }
}


/* mobile view */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    /* navbar */
    nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 50px;
    }

    nav .logo img {
        width: 121px;
        height: 52px;
    }

    nav .middle-nav {
        display: none;
        width: 100%;
    }

    .menu-toggle:checked~.middle-nav {
        display: flex;
    }

    nav .middle-nav {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
        order: 2;
    }

    nav .middle-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-inline-start: 0
    }

    nav .contact {
        justify-content: flex-start;
        margin-inline-start: auto;
        gap: 12px;
    }

    nav .contact img {
        width: 25px;
        height: 25px;
    }

    .create-store-btn {
        width: 130px;
        height: 35px;
        font-size: var(--font-size-xs);
        border-radius: 8px;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 50px;
        order: 1;
    }

    .hamburger {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .hamburger img {
        width: 18px;
        height: 12px;
    }

    /* hero section */
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 40px 20px;
    }

    .hero .first,
    .hero .second {
        display: contents;
    }

    .hero-text {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .rotating-heading {
        font-size: var(--font-size-xl);
        line-height: 30px;
        max-width: 311px;
        margin: 0 auto;
    }

    .watermark {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: var(--font-size-4xl);
        animation: watermarkPulseCentered 4s ease-in-out infinite;
    }

    .second .build-store {
        order: 2;
        padding: 16px 30px;
        font-size: var(--font-size-base);
    }

    .hero .first .qr-code {
        order: 4;
        width: 160px;
        height: 203px;
    }

    .second .hero-paragraph {
        order: 5;
        width: 100%;
        justify-content: center;
        text-align: start;
    }

    .social-follow {
        order: 6;
        flex-direction: row;
    }

    .social-follow .follow-label {
        writing-mode: horizontal-tb;
        font-size: var(--font-size-lg);
    }

    .social-follow .follow-label::after {
        content: "";
        display: inline-block;
        width: 49px;
        height: 0;
        margin-inline-start: 10px;
        border-top: 0.6px solid var(--color-divider);
        vertical-align: middle;
    }

    .social-follow img {
        width: 32px;
        height: 32px;
    }

    .second .shopping {
        display: none;
    }

    /* steps section */
    .steps .small-title img {
        height: 9px;
    }

    .steps .small-title span {
        font-size: var(--font-size-lg);
    }

    .steps-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 30px;
    }

    .step-title h2 {
        max-width: none;
        text-align: left;
        font-size: var(--font-size-lg);
    }

    .step-title-break {
        display: none;
    }
/* services */

    .services-title{
        justify-content: flex-start;
        gap: 10px;
    }
    .services-title img {
        height: 9px;
    }

    .services-title p {
        font-size: var(--font-size-lg);
    }

    .services h2 {
        justify-content: flex-start;
        font-size: var(--font-size-lg);
    }

    .step-card {
        width: 100%;
    }

    .step-card[data-step="03"] {
        margin-top: 0;
    }

    .step-card p {
        font-weight: var(--font-weight-semibold);
        font-size: var(--font-size-small);
        line-height: 16px;
        letter-spacing: 0;
        color: var(--color-text-muted);
    }

    .step-num {
        font-size: var(--font-size-xl);
        -webkit-text-stroke: 0.6px var(--color-divider);
    }

    .step-icon {
        width: 30px;
        height: 30px;
        color: #F5C99A;
    }

    .step-cta {
        align-self: flex-start;
        width: 90px;
        height: 90px;
    }
    .steps-info {
        flex-direction: column;
        margin-top: 35px;
    }
    .steps-info img {
        width: 164px;
        height: 82px;
    }
    .steps-info p{
        font-size: var(--font-size-small);
    }

    /* services section */
    .services-stack {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .service-panel {
        position: static;
        padding: 0;
    }

    .services .images {
        flex-direction: column;
        gap: 20px;
    }

    .services .images img {
        flex: none;
        width: 100%;
        height: auto;
    }

    .service-card {
        flex: none;
        gap: 24px;
        padding: 24px;
    }

    .service-card h3 {
        font-size: var(--font-size-xl);
    }

    .service-card-bottom {
        gap: 24px;
    }

    .service-num {
        font-size: var(--font-size-3xl);
    }

    .service-card-bottom p {
        font-size: var(--font-size-base);
    }

    /* services we provide */
    .services-provide {
        margin-top: 60px;
        padding: 60px 0 40px;
    }

    .cart-mark {
        top: -55px;
        left: 0px;
        width: 90px;
        height: 104px;
    }
    .cart-mark-teal{
        top: 23px;
        left: 31px;
        width: 55px;
        clip-path: inset(0 0 39% 0);
    }
    .cart-mark-peach{
        width: 55px;
    }
    .services-provide-top {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: start;
        column-gap: 15px;
        row-gap: 12px;
    }

    .services-provide-top>div:first-child,
    .services-provide-info {
        display: contents;
    }

    .additional-title {
        grid-column: 1 / -1;
        gap: 8px;
    }

    .additional-title img {
        height: 15px;
    }

    .additional-title p {
        font-size: var(--font-size-base);
    }

    .services-provide-paragraph {
        grid-column: 1;
        grid-row: 2;
        font-size: var(--font-size-xxl);
    }

    .services-provide-info span {
        grid-column: 2;
        grid-row: 2;
        align-self: center;
        font-size: var(--font-size-xl);
    }

    .services-provide-info p {
        grid-column: 1 / -1;
        grid-row: 3;
        max-width: none;
        font-size: var(--font-size-small);
    }

    .slider {
        margin-top: 30px;
    }

    .slide-card {
        width: 200px;
    }

    .slide-card img {
        height: 130px;
    }

    .slide-card-body {
        padding: 15px;
    }

    .slide-card-body h3 {
        font-size: var(--font-size-base);
        margin-bottom: 8px;
    }

    .slide-card-body p {
        font-size: var(--font-size-small);
        margin-bottom: 15px;
    }

    .learn-more-btn {
        height: 40px;
        font-size: var(--font-size-small);
    }

    /* stories section*/
    .stories-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .stories-title img {
        height: 15px;
    }

    .stories-title p {
        font-size: var(--font-size-base);
    }

    .stories-heading {
        font-size: var(--font-size-xxl);
    }

    .stories-info p {
        max-width: none;
        font-size: var(--font-size-small);
    }

    /* stores slider */
    .store-card {
        width: 104px;
    }

    .store-card span {
        font-size: var(--font-size-base);
    }

    .store-card img {
        width: 104px;
        height: 89px;
    }

    /* partners section */
    .partners-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .partners-title {
        font-size: var(--font-size-lg);
    }

    .partners-slider {
        width: 100%;
    }

    .partners-logos {
        gap: 25px;
    }

    .partners-logos img {
        width: 120px;
        height: 46px;
    }

    /* designs section */
    .designs-bg {
        display: none;
    }

    .designs-title img {
        height: 15px;
    }

    .designs-title p {
        font-size: var(--font-size-base);
    }

    .designs-heading {
        font-size: var(--font-size-xxl);
    }

    .design-card {
        width: 160px;
        height: 180px;
        gap: 15px;
    }

    .design-card p {
        font-size: var(--font-size-base);
    }

    .design-card img {
        width: 70px;
        height: 70px;
    }

    /* support & help */
    .support-help {
        margin-top: 50px;
    }

    .support-help-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 25px;
    }

    .support-help-title img {
        height: 15px;
    }

    .support-help-title p {
        font-size: var(--font-size-base);
    }

    .support-help-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .support-help-heading {
        width: 100%;
        margin-top: 10px;
        font-size: var(--font-size-xl);
    }

    .support-help-icons {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .support-help-icons img {
        width: 70px;
        height: 70px;
    }

    /* footer */
    .footer {
        margin-top: 60px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-logo {
        width: 90px;
        height: 87px;
    }

    .footer-social h4,
    .footer-col h4 {
        font-size: var(--font-size-base);
        margin-bottom: 12px;
    }

    .footer-col {
        gap: 10px;
    }

    .footer-col a {
        font-size: var(--font-size-small);
    }

    .footer-contact-item span {
        font-size: var(--font-size-small);
        line-height: 20px;
    }

    .footer-cta {
        height: 60px;
        font-size: var(--font-size-base);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 25px;
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    .slide-card {
        width: 250px;
    }
}

@media (max-width: 786px) {
    .store-cards {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Navbar */
    nav {
        gap: 10px;
    }

    .nav-actions {
        gap: 10px;
    }

    nav .logo img {
        width: 80px;
        height: auto;
    }

    nav .contact {
        gap: 8px;
    }

    nav .contact span,
    nav .contact-paragraph br {
        display: none;
    }

    nav .contact img {
        width: 18px;
        height: 18px;
    }

    nav .contact a {
        font-size: var(--font-size-xs);
    }

    .create-store-btn {
        width: auto;
        padding: 0 14px;
    }
}