/* config/global.css */
*,*::before, *::after{
    box-sizing: inherit;
}

html{
    box-sizing: border-box;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    padding-top: 80px;
    min-height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

img{
    max-width: 100%;
    object-fit: cover;
}

a{
    text-decoration: none;
    color: inherit;
}

.success_message{
    color: #006d2f;
    background-color: #ccf6de;
    border: 1px solid #ccf6de;
    text-align: center;
    padding: 5px 15px;
    border-radius: 5px;
    margin: 10px auto;
    width: fit-content;
    animation: success 2s ease 2s forwards;
}
.subscribe_message{
    color: #850e0e;
    background-color: rgb(244, 45, 55);
    border: 1px solid rgb(244, 45, 55);
    text-align: center;
    padding: 5px 15px;
    border-radius: 5px;
    margin: 10px auto;
    width: fit-content;
    animation: success 2s ease 2s forwards;
}

@keyframes success {
    to{
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
}

.vf-field-tooltip {
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: fit-content;
    max-width: min(280px, calc(100% - 24px));
    transform: translate(-50%, calc(-100% - 10px));
    padding: 9px 12px;
    border-radius: 10px;
    background: #dc2626;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.vf-field-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #dc2626;
}

.vf-field-tooltip.vf-field-tooltip--visible {
    opacity: 1;
    visibility: visible;
}

.vf-field--error,
input.vf-field--error,
textarea.vf-field--error {
    border: 2px solid #ef4444 !important;
    outline: none !important;
    box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.2) !important;
}

.footerinputs .email.vf-field--error {
    border: 2px solid #ef4444 !important;
    box-shadow: inset 0 0 8px rgba(239, 68, 68, 0.22) !important;
}

/* config/repeat.css */
.title {
    line-height: 36px;
    color: #1E40AF;
    font-weight: 800;
    font-size: 40px;
    text-align: center;
}

.text {
    color: rgb(197, 197, 197);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.button {
    border-radius: 4px;
    background: rgb(222, 60, 60);
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 20px;
}

.maincontainer {
    max-width: 1110px;
    padding: 0 15px;
    margin: 0 auto;
}

/* common.blocks/header.css */
   :root {
        --main-color: #2563EB;
        --main-color-light: #3B82F6;
        --main-color-dark: #1E40AF;
        --text-color: #1f2937;
        --bg-light: #f9fafb;
        --text-white: #FFFFFF;
        --text-hover: #BFDBFE;
    }

    header {
        margin-bottom: 30px;
    }

    .header-notice {
        margin-top: 26px;
        padding: 12px 15px 0;
    }

    .header-notice .maincontainer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 16px;
        background: linear-gradient(135deg, #fff7d6 0%, #ffe7a3 100%);
        border: 1px solid #f3cf67;
        color: #6b4f00;
        box-shadow: 0 10px 25px rgba(214, 161, 24, 0.12);
        text-align: center;
        line-height: 1.4;
    }

    .header-notice__pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(107, 79, 0, 0.12);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .header-notice__text {
        font-size: 16px;
        font-weight: 700;
        white-space: nowrap;
    }

    .header-container .cart,
    .header-container .heart {
        position: relative;
    }

    .header-container li.active > a {
        position: relative;
        font-weight: 600;
        padding-bottom: 15px;
        transition: all 0.3s ease;
    }

    .header-container li.active > a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 3px;
        width: 100%;
        background-color: #fff;
        border-radius: 2px;
        transition: transform 0.3s ease;
        transform: scaleX(1);
        transform-origin: left;
    }

    .header-container .cart-count,
    .header-container .heart-count {
        position: absolute;
        color: var(--text-white);
        font-size: 13px;
        top: -18px;
    }

    .header-container .cart-count {
        left: 45px;
    }

    .header-container .heart-count {
        left: 40px;
    }

    .header-container .cart-count span,
    .header-container .heart-count span {
        padding: 1px 5px;
        border-radius: 50%;
        background: var(--text-white);
        color: var(--main-color-dark);
    }

    .header-container .fa-solid {
        font-size: 25px;
        color: var(--text-white);
    }

    header nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        line-height: 65px;
        background-color: var(--main-color);
        width: 100%;
        padding: 5px 15px;
        z-index: 999;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    }

    nav .navbar {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar .logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar .logo img {
        object-fit: contain;
        width: 100px;
        height: 80px;
        display: flex;
        filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
        transition: transform 0.3s ease;
    }

    .navbar .logo img:hover {
        transform: scale(1.1);
    }

    .navbar .nav_links {
        display: inline-flex;
        align-items: center;
    }

    .nav_links li {
        list-style: none;
    }

    .nav_links li a {
        font-size: 18px;
        font-weight: 500;
        padding: 9px 15px;
        color: var(--text-white);
        transition: color 0.3s ease;
    }

    .nav_links li a:hover {
        color: var(--main-color-light);
    }

    .language-switcher {
        position: relative;
        display: inline-flex;
        align-items: center;
        margin-left: 18px;
        flex-shrink: 0;
    }

    .language-switcher__button {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-height: 36px;
        padding: 6px 10px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-white);
        font: inherit;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        cursor: pointer;
        white-space: nowrap;
        transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .language-switcher__button:hover,
    .language-switcher.is-open .language-switcher__button {
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .language-switcher__button:active {
        transform: translateY(1px);
    }

    .language-switcher__button:focus-visible,
    .language-switcher__option:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(191, 219, 254, 0.42);
    }

    .language-switcher__button-icon,
    .language-switcher__button-chevron {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .language-switcher__button-icon .fa-solid,
    .language-switcher__button-chevron .fa-solid,
    .language-switcher__option-check .fa-solid {
        font-size: 14px;
        color: currentColor;
    }

    .language-switcher__button-text {
        min-width: 1.5em;
        text-transform: uppercase;
    }

    .language-switcher__button-chevron {
        opacity: 0.82;
        transition: transform 0.2s ease;
    }

    .language-switcher.is-open .language-switcher__button-chevron {
        transform: rotate(180deg);
    }

    .language-switcher__menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        min-width: 0;
        width: max-content;
        padding: 6px;
        border-radius: 12px;
        border: 1px solid rgba(37, 99, 235, 0.14);
        background: #ffffff;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
        z-index: 1002;
    }

    .language-switcher__option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
        min-height: 36px;
        padding: 8px 10px;
        border-radius: 8px;
        color: #0f172a;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.2;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .language-switcher__option:hover,
    .language-switcher__option:focus-visible {
        background: rgba(37, 99, 235, 0.08);
        color: var(--main-color-dark);
    }

    .language-switcher__option.is-current {
        background: rgba(37, 99, 235, 0.1);
        color: var(--main-color-dark);
        font-weight: 700;
    }

    .language-switcher__option-text {
        white-space: nowrap;
    }

    .language-switcher__option-check {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 16px;
        color: var(--main-color-dark);
    }

    .nav_links li:hover .mega_menu {
        top: 80px;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .mega_menu {
        position: absolute;
        justify-content: center;
        top: 100px;
        left: 15%;
        width: 70%;
        opacity: 0;
        visibility: hidden;
    }

    .mega_menu .mega_menu_content {
        background-color: var(--main-color);
        padding: 25px 20px;
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }


    .mega_links {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 0;
        margin: 0;
    }

    .mega_links li {
        box-sizing: border-box;
        padding: 10px;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .mega_links li a {
        font-size: 17px;
        display: block;
        white-space: nowrap;
        padding: 0;
        text-align: center;
        color: var(--text-white);
        transition: color 0.3s ease;
    }

    .mega_links li a:hover {
        color: var(--text-hover);
    }

    .logout-link {
        background: none;
        border: none;
        color: var(--text-white);
        font: inherit;
        cursor: pointer;
        padding: 0;
    }

    .navbar .header_btn {
        font-size: 25px;
        cursor: pointer;
        display: none;
        color: var(--text-white);
    }

    .navbar .header_btn.cancel_btn {
        position: absolute;
        right: 30px;
        top: 10px;
    }

    .navbar .header_btn.menu_btn {
        position: relative;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
    }

    .navbar .header_btn.menu_btn .menu_btn__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    #menu_toggle:checked ~ .header_btn.menu_btn {
        pointer-events: none;
        opacity: 0.45;
    }

    .navbar input {
        display: none;
    }

    .nav_links .catalog_mobile_item {
        display: none;
    }

    @media (max-width: 1100px) {
        .language-switcher__option {
            min-height: 40px;
            padding: 9px 12px;
            font-size: 16px;
        }
    }

    @media (max-width: 640px) {
        .header-notice {
            margin-top: 30px;
            padding-top: 10px;
        }

        .header-notice .maincontainer {
            padding: 10px 14px;
            border-radius: 14px;
            gap: 6px;
        }

        .header-notice__text {
            font-size: 13px;
        }

        .header-notice__pill {
            font-size: 11px;
            padding: 5px 8px;
        }

        .language-switcher {
            margin-left: 0;
            margin-right: 0;
        }

        .language-switcher__button {
            min-height: 36px;
            padding: 7px 10px;
            gap: 8px;
            border-radius: 10px;
        }

        .language-switcher__button-text {
            font-size: 13px;
        }

        .language-switcher__menu {
            top: calc(100% + 8px);
        }
    }

/* common.blocks/hero.css */
.hero {
    background: #fff;
    padding: 25px 16px 25px;
}

.hero__inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(47, 107, 234, 0.1);
    color: #1e4fbf;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(47, 107, 234, 0.18);
}

.hero__badge-group,
.hero__badge-tail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero__badge-sep {
    opacity: 0.75;
}

.hero__title {
    margin: 18px 0 10px;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0f1b2d;
    font-weight: 800;
}

.hero__titleAccent {
    display: block;
    margin-top: 8px;
    color: #2f6bea;
}

.hero__text {
    max-width: 780px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #3a4b63;
}

.hero__chips {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hero .chip {
    padding: 9px 12px;
    border-radius: 999px;
    background: #f4f7ff;
    border: 1px solid #dbe6ff;
    color: #234a9c;
    font-weight: 700;
    font-size: 14px;
    user-select: none;
}

.hero .chip--soft {
    background: #f7f7ff;
    border-color: #e6e6ff;
    color: #404a8b;
}

.hero__actions {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 25px 18px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.15s ease;
    min-width: 170px;
    font-size: 18px;
    cursor: pointer;
    font-family: inherit;
}

.hero .btn--primary {
    background: #2f6bea;
    color: #fff;
    box-shadow: 0 10px 24px rgba(47, 107, 234, 0.25);
}

.hero .btn--primary:hover {
    transform: translateY(-1px);
}

.hero .btn--ghost {
    background: #fff;
    color: #2f6bea;
    border-color: rgba(47, 107, 234, 0.35);
}

.hero .btn--ghost:hover {
    background: rgba(47, 107, 234, 0.06);
}

.hero__stats {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero .stat {
    padding: 14px 12px;
    border: 1px solid #eef2ff;
    background: #fbfcff;
    border-radius: 16px;
}

.hero .stat__num {
    font-size: 22px;
    font-weight: 900;
    color: #0f1b2d;
}

.hero .stat__label {
    margin-top: 6px;
    font-size: 13px;
    color: #51637a;
    font-weight: 700;
}

@media (max-width: 720px) {
    .hero {
        padding: 15px 14px 15px;
    }

    .hero__text {
        font-size: 16px;
    }

    .hero__badge {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: 6px;
    }

    .hero__badge-group,
    .hero__badge-tail {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero__badge-sep--before-tail {
        display: none;
    }

    .hero__stats {
        grid-template-columns: 1fr;
    }

    .hero .btn {
        width: 100%;
        max-width: 360px;
    }
}

/* common.blocks/footer.css */
:root {
    --main-color: #2563EB;
    --main-color-light: #3B82F6;
    --main-color-dark: #1E40AF;
    --text-color: #1f2937;
    --bg-light: #f9fafb;
    --text-white: #FFFFFF;
    --text-hover: #BFDBFE;
}
footer {
    background: linear-gradient(135deg, var(--main-color-dark) 0%, var(--main-color) 100%);
    color: var(--bg-light);
    margin-top: auto;
    padding: 15px 15px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 20px;
    padding: 10px 15px;
}

.footer-container .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-container .logo img {
    object-fit: contain;
    width: 100px;
    height: 80px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-container .logo img:hover {
    transform: scale(1.1);
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-hover);
    text-align: center;
}

.contactus {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 5px;
}

.footerinputs {
    display: flex;
    gap: 15px;
}

.email {
    padding: 12px 10px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    color: var(--main-color-dark);
    background: var(--bg-light);
    box-shadow: inset 0 0 6px rgba(30, 58, 138, 0.3);
    transition: box-shadow 0.3s ease;
}

.email::placeholder {
    color: #7C93E1;
}

.email:focus {
    outline: none;
    box-shadow: 0 0 10px var(--main-color-light);
}

.liquid-morph-element {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--main-color-light) 0%, var(--main-color-dark) 100%);
    border-radius: 12px;
    border: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.6);
    transition: all 0.4s ease;
}

.liquid-morph-element:hover {
    background: linear-gradient(135deg, #60A5FA 0%, var(--main-color-dark) 100%);
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.8);
    transform: scale(1.07);
}

.footersocial {
    display: grid;
    justify-items: center;
    gap: 5px;
}

.footersocial i {
    font-size: 32px;
    color: var(--main-color-light);
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.footersocial i:hover {
    color: var(--bg-light);
    transform: scale(1.3);
    filter: drop-shadow(0 0 6px var(--main-color-light));
}

.deepfooter-container {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-hover); /* #BFDBFE */
    font-size: 16px;
    text-align: center;
}




/* common.blocks/index.css */
:root {
    --main-color: #2563EB;
    --main-color-light: #3B82F6;
    --main-color-dark: #1E40AF;
    --text-color: #1f2937;
    --bg-light: #f9fafb;
}

.index-container, .slide-container {
    display: grid;
    justify-content: center;
    justify-items: center;
    padding: 25px 15px;
}

.slider_container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 550px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 550px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    cursor: pointer;
    gap: 40px;
    padding: 40px 0;
}

.goods {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    border: 1.5px solid var(--main-color-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    overflow: hidden;
    position: relative;
}

.goods:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.discount {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 24px;
    background: white;
    color: var(--main-color);
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 2;
}

.productimage {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

.productimage img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.goods:hover .productimage img {
    transform: scale(1.08);
}

.heartandplusicons {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: space-around;
}

.content {
    padding: 10px;
}

.description {
    padding: 10px;
    text-align: center;
}

.description h4 {
    font-size: 15px;
    line-height: 1.4;
    color: var(--main-color-dark);
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 42px;
    margin: 0 auto;
}

.mvalue {
    font-size: 18px;
    color: var(--main-color);
    font-weight: bold;
    padding-top: 5px;
}

.price {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

.index_product_add {
    width: 100%;
}

.index_product_add button {
    width: 100%;
    border: none;
    font-size: 18px;
    padding: 15px 0;
    transition: background 0.3s;
    cursor: pointer;
}

.index_product_add_cart, .index_product_add_heart {
    background: var(--main-color);
    color: white;
}

.index_product_add_cart:hover, .index_product_add_heart:hover {
    background: var(--main-color-dark);
}

.index_product_add_hidden {
    display: none;
}

.searchform {
    margin: 50px 0;
    text-align: center;
}

.searchform .searchproduct {
    width: 500px;
    max-width: 90%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--main-color);
    outline: none;
    transition: box-shadow 0.2s;
    font-size: 16px;
    color: var(--main-color);
}

.searchform .searchproduct:focus {
    box-shadow: 0 0 6px 2px rgba(37, 99, 235, 0.3);
}

.searchform .searchproductbutton {
    padding: 12px 18px;
    background: var(--main-color);
    border-radius: 8px;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    box-shadow: inset 0 0 6px rgba(30, 58, 138, 0.3);
    transition: box-shadow 0.3s ease;
}

.searchform .searchproductbutton:hover {
    background: var(--main-color-dark);
    transform: scale(1.05);
}

.pagination {
    padding: 0;
    display: flex;
    gap: 10px;
    list-style: none;
    justify-content: center;
    margin-top: 30px;
}

.pagination li a {
    color: var(--main-color-dark);
    border: 1px solid var(--main-color-light);
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.pagination li a:hover {
    background-color: var(--main-color-light);
    color: white;
}

.pagination li.disabled span {
    color: #aaa;
    pointer-events: none;
    border-color: #eee;
}

.pagination li.active span {
    background-color: var(--main-color-dark);
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
}

.empty_message span {
    cursor: default;
    font-size: 20px;
    color: var(--main-color-dark);
}

/* common.blocks/cart.css */
.cart-container {
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.project {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.shop {
    flex: 2;
}

.box {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    align-items: center;
}

.forcartimg img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cart_content {
    flex: 1;
}

.cart_content h4 {
    margin: 5px 0;
    color: #222;
}

.cart_content p {
    color: #666;
    font-size: 14px;
}

.quantity-input {
    width: 60px;
    padding: 5px 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
}

.deleteandquantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.delete-area {
    background: #ffdddd;
    color: #d00;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.delete-area:hover {
    background: #ffcccc;
}

.right-bar {
    flex: 1;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    height: fit-content;
}

.right-bar p {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.right-bar button {
    width: 100%;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.right-bar button:hover {
    background-color: #0056b3;
}

.success_message, .subscribe_message {
    margin: 20px auto;
    max-width: 800px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.empty_cart, .empty_heart {
    text-align: center;
    margin: 40px 0;
    color: #888;
}

.empty_cart i, .empty_heart i {
    color: #007bff;
}

.heart-container {
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.heart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    justify-items: center;
}

.heart-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    border: 1.5px solid var(--main-color-light);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

.heart-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.heart-card input[type="number"] {
    display: none;
}

.heart-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 24px;
    background: white;
    color: var(--main-color);
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 2;
}

.heart-image {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.heart-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.heart-card:hover .heart-image img {
    transform: scale(1.08);
}

.heart-info {
    padding: 10px;
    text-align: center;
}

.heart-info h3 {
    font-size: 15px;
    line-height: 1.4;
    color: var(--main-color-dark);
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 42px;
    font-weight: 600;
}

.product-code {
    font-size: 14px;
    color: #888;
    margin-top: 4px;
}

.price-section {
    margin-top: 5px;
    font-size: 18px;
    color: var(--main-color);
    font-weight: bold;
}

.original-price {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
    margin-right: 10px;
}

.discounted-price {
    font-size: 18px;
    color: var(--main-color);
    font-weight: bold;
}

.heart-actions {
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.add-to-cart,
.remove-favorite {
    border: none;
    cursor: pointer;
    font-size: 15px;
    padding: 7px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    height: 100%;
}

.add-to-cart {
    background: var(--main-color);
}

.remove-favorite {
    background: #b91c1c;
}

.add-to-cart:hover {
    background: var(--main-color-dark);
}

.remove-favorite:hover {
    background: #991b1b;
}




/* common.blocks/login.css */
:root {
    --main-color: #2563EB;
    --main-color-light: #3B82F6;
    --main-color-dark: #1E40AF;
    --text-color: #1f2937;
    --bg-light: #f9fafb;
    --text-white: #FFFFFF;
    --text-hover: #BFDBFE;
}

.login-container {
    display: flex;
    justify-content: center;
}

.registerandlogin {
    position: relative;
    width: 850px;
    height: 760px;
    border-radius: 30px;
    box-shadow: rgba(44, 62, 80, 0.3) 2px 4px 6px 4px;
    margin: 20px;
    overflow: hidden;
}

.form-box {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    color: var(--text-color);
    background: var(--text-white);
    text-align: center;
    align-items: center;
    z-index: 1;
}

.registerandlogin h3 {
    font-size: 36px;
    margin: -10px 0;
    color: var(--text-color);
}

.input-box {
    margin: 30px 0;
}

.input-box input {
    position: relative;
    width: 100%;
    padding: 13px 20px 13px 45px;
    background: #D6EAF8;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.input-box .icon {
    position: absolute;
    padding-left: 15px;
    padding-top: 40px;
    transform: translateY(-50%);
    color: var(--text-color);
    font-size: 18px;
    z-index: 1;
}

.input-box input::placeholder {
    color: var(--text-color);
    font-weight: 400;
}

.btn {
    width: 300px;
    height: 50px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--main-color-light), #6DD5FA); /* half using var */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-white);
    font-weight: 600;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 0;
}

.btn:hover::before {
    top: 0%;
    left: 0%;
    opacity: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.toggle-box {
    position: absolute;
    width: 100%;
    height: 100%;
}

.toggle-box::before {
    content: "";
    position: absolute;
    left: -250%;
    width: 300%;
    height: 100%;
    background: #AED6F1;
    border-radius: 150px;
    z-index: 2;
}

.toggle-panel {
    position: absolute;
    width: 50%;
    height: 100%;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.toggle-panel .register {
    width: 160px;
    height: 46px;
    border: 2px solid var(--text-color);
    background: transparent;
    box-shadow: none;
    color: var(--text-color);
}

.error {
    display: grid;
    color: #e74c3c;
    font-size: 10px;
    margin: 0;
    padding: 5px 0 0 0;
}

.reset-password-box {
    margin: 0 auto;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    color: var(--text-color);
    background: var(--text-white);
    text-align: center;
    align-items: center;
    z-index: 1;
}

.reset-password-box .btn {
    width: 420px;
}

.verify-email,
.forgot-email {
    position: relative;
    width: 600px;
    height: 550px;
    border-radius: 30px;
    box-shadow: rgba(44, 62, 80, 0.3) 2px 4px 6px 4px;
    margin: 20px;
    overflow: hidden;
    background-color: #ECF0F1;
}

.verify-email-box,
.forgot-email-box {
    padding: 100px 50px;
    text-align: center;
    line-height: 30px;
    color: var(--text-color);
}

.forgot-email-box .input-box input,
.update-box input {
    width: 300px;
}

.update-container {
    display: flex;
    justify-content: center;
}

.update-info {
    position: relative;
    width: 600px;
    border-radius: 30px;
    box-shadow: rgba(44, 62, 80, 0.3) 2px 4px 6px 4px;
    margin: 20px;
    overflow: hidden;
}

.update-box {
    text-align: center;
    line-height: 30px;
    color: var(--text-color);
}

.update-box h3 {
    font-size: 32px;
}

/* common.blocks/repair.css */
.repair-container {
    display: flex;
    justify-content: center;
    padding: 8px 0 32px;
}

.repair-box {
    position: relative;
    width: 850px;
    height: auto;
    border-radius: 30px;
    margin: 20px 0;
    padding: 52px 0 56px;
    background-color: var(--text-white);
    text-align: center;
    color: var(--text-color);
}

.repair-box--premium {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 95% 70% at 88% 8%, rgba(96, 165, 250, 0.28) 0%, transparent 58%),
        radial-gradient(ellipse 80% 60% at 8% 92%, rgba(37, 99, 235, 0.14) 0%, transparent 55%),
        linear-gradient(168deg, #eef4ff 0%, #ffffff 36%, #f9fbff 100%);
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow:
        0 28px 60px rgba(37, 99, 235, 0.13),
        0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.repair-box--premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.028) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 78%);
    pointer-events: none;
}

.repair-box--premium::after {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    width: 320px;
    height: 120px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.9) 0%, transparent 72%);
    pointer-events: none;
}

.repair-form {
    position: relative;
    z-index: 1;
}

.repair-form__head {
    width: 80%;
    margin: 0 auto 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.repair-form__eyebrow {
    margin: 0 auto 10px;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #64748b;
}

.repair-box h3,
.repair-form__head h3 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 48%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.repair-form__body {
    width: 80%;
    margin: 0 auto;
    padding: 28px 28px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 12px 32px rgba(37, 99, 235, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.repair-box .repair-input-box {
    margin: 0 0 22px;
    position: relative;
}

.repair-box .repair-input-box:last-of-type {
    margin-bottom: 8px;
}

.repair-box .repair-input-box input,
.repair-box .repair-input-box textarea {
    width: 100%;
    padding: 14px 18px 14px 52px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    outline: none;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    resize: vertical;
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.04);
}

.repair-box .repair-input-box input::placeholder,
.repair-box .repair-input-box textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.repair-box .repair-input-box input:focus,
.repair-box .repair-input-box textarea:focus {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.38);
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.1),
        0 8px 20px rgba(37, 99, 235, 0.09);
    transform: translateY(-1px);
}

.repair-box .repair-input-box .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.18));
    color: #2563eb;
    font-size: 14px;
    z-index: 1;
    pointer-events: none;
}

.repair-box .repair-input-box--textarea .icon {
    top: calc(18px + 0.5 * 1.25em);
    transform: translateY(-50%);
}

.repair-box .repair-input-box textarea {
    min-height: 120px;
    line-height: 1.25;
    padding-top: 18px;
}

.repair-form .vf-photo-upload {
    width: 100%;
    margin: 18px 0 6px;
}

.repair-form .vf-photo-upload__label {
    color: #475569;
}

.repair-form .vf-photo-upload__hint {
    color: #64748b;
    font-size: 12px;
}

.repair-box .btn,
.repair-form__submit {
    width: 100%;
    height: 50px;
    margin-top: 22px;
    padding: 0;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 42%, #38bdf8 100%);
    box-shadow:
        0 14px 28px rgba(37, 99, 235, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.repair-form__submit-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.34) 50%, transparent 62%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
    pointer-events: none;
}

.repair-form__submit-inner {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.repair-box .btn:hover,
.repair-form__submit:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 36px rgba(37, 99, 235, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.repair-form__submit:hover .repair-form__submit-glow {
    transform: translateX(120%);
}

.repair-box .btn:active,
.repair-form__submit:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}

@media (max-width: 900px) {
    .repair-box {
        width: calc(100% - 24px);
        border-radius: 24px;
        padding: 40px 0 44px;
    }

    .repair-form__head,
    .repair-form__body {
        width: 90%;
    }

    .repair-form__body {
        padding: 22px 18px 20px;
    }

    .repair-box h3,
    .repair-form__head h3 {
        font-size: 28px;
    }
}

/* common.blocks/photo-upload.css */
.vf-photo-upload {
    width: 80%;
    margin: 24px auto 8px;
    text-align: center;
}

.vf-photo-upload__label {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.vf-photo-upload__hint {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.45;
    color: #51637a;
}

.vf-photo-upload__slots {
    display: grid;
    grid-template-columns: repeat(3, 50px);
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.vf-photo-upload__slot {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    padding: 0;
    margin: 0;
    border: 2px dashed rgba(37, 99, 235, 0.28);
    border-radius: 10px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    color: #234a9c;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.vf-photo-upload.is-dragover .vf-photo-upload__slot,
.vf-photo-upload__slot:hover {
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
}

.vf-photo-upload__slot.is-filled {
    border-style: solid;
    border-color: rgba(37, 99, 235, 0.22);
}

.vf-photo-upload__slot-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2563eb;
    line-height: 1;
}

.vf-photo-upload__slot.is-filled .vf-photo-upload__slot-icon {
    display: none;
}

.vf-photo-upload__slot-text {
    display: none;
}

.vf-photo-upload__preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.vf-photo-upload__slot.is-filled .vf-photo-upload__preview {
    display: block;
}

.vf-photo-upload__input {
    display: none !important;
}

.vf-photo-upload__remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    padding: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

.vf-photo-upload__error {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.4;
    color: #dc2626;
}

.vf-chatbot__field .vf-photo-upload {
    width: 100%;
    margin: 0;
}

.vf-chatbot__field .vf-photo-upload__slots {
    grid-template-columns: repeat(3, 50px);
}

@media (max-width: 640px) {
    .vf-photo-upload {
        width: 90%;
    }
}

/* common.blocks/hero-cta.css */
.hero__facebook {
    margin: 14px 0 0;
}

.hero__facebook-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #51637a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.hero__facebook-link:hover {
    color: #2f6bea;
}

.hero__facebook-arrow {
    font-size: 11px;
    opacity: 0.75;
}

.hero-call-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(15, 27, 45, 0.42);
}

.hero-call-backdrop[hidden] {
    display: none !important;
}

.hero-call-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1201;
    width: min(92vw, 360px);
    padding: 22px 20px 20px;
    border-radius: 18px;
    border: 1px solid rgba(47, 107, 234, 0.16);
    background: #ffffff;
    box-shadow: 0 24px 48px rgba(15, 27, 45, 0.18);
    transform: translate(-50%, -50%);
    text-align: center;
    box-sizing: border-box;
}

.hero-call-panel[hidden] {
    display: none !important;
}

body.hero-call-panel-open {
    overflow: hidden;
}

.hero-call-panel__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: rgba(47, 107, 234, 0.08);
    color: #2f3f56;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.hero-call-panel__close:hover {
    background: rgba(47, 107, 234, 0.14);
}

.hero-call-panel__title {
    margin: 0 0 12px;
    color: #0f1b2d;
    font-size: 20px;
    font-weight: 800;
}

.hero-call-panel__phone {
    margin: 0 0 14px;
    color: #2f6bea;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.hero-call-panel__copy,
.hero-call-panel__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    margin: 0 0 10px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}

.hero-call-panel__copy {
    border: 1px solid rgba(47, 107, 234, 0.28);
    background: rgba(47, 107, 234, 0.06);
    color: #1e4fbf;
}

.hero-call-panel__copy:hover,
.hero-call-panel__copy.is-copied {
    background: rgba(47, 107, 234, 0.12);
}

.hero-call-panel__copied {
    margin: -4px 0 10px;
    color: #0f766e;
    font-size: 13px;
    font-weight: 700;
}

.hero-call-panel__copied[hidden] {
    display: none !important;
}

.hero-call-panel__whatsapp {
    border: 1px solid rgba(37, 211, 102, 0.28);
    background: rgba(37, 211, 102, 0.1);
    color: #128c7e;
}

.hero-call-panel__whatsapp:hover {
    background: rgba(37, 211, 102, 0.16);
}

.hero-call-panel__qr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 8px;
    min-height: 140px;
}

.hero-call-panel__qr img,
.hero-call-panel__qr canvas,
.hero-call-panel__qr table {
    display: block;
    margin: 0 auto;
}

.hero-call-panel__qr-hint {
    margin: 0;
    color: #51637a;
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .hero__facebook {
        margin-top: 12px;
    }

    .hero__facebook-link {
        font-size: 13px;
    }
}

/* common.blocks/about.css */
:root {
    --text-color: #1f2937;
}
.about-container{
    display: grid;
    justify-items: center;
    padding: 25px 15px;
}
.about-container img{
   border-radius: 50%;
}
.about-container p{
   text-align: center;
    color: var(--text-color);
 }

/* common.blocks/contact.css */
/**
 * VoltFix Contact / Find Us page
 * Modern, clean, premium service-business layout
 */

.vf-contact {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f8fafc 42%, #f1f5f9 100%);
    color: #0f172a;
}

.vf-contact__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.vf-contact__hero {
    padding: 56px 0 36px;
}

.vf-contact__hero-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.vf-contact__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: #1d4ed8;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.vf-contact__title {
    margin: 0 0 14px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.vf-contact__subtitle {
    margin: 0 auto;
    max-width: 640px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

/* Main */
.vf-contact__main {
    padding: 0 0 24px;
}

.vf-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.vf-contact__left,
.vf-contact__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Shared card style */
.vf-contact-card,
.vf-contact-map,
.vf-contact-gallery-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05),
        0 2px 8px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(6px);
}

/* Contact card */
.vf-contact-card {
    padding: 28px;
}

.vf-contact-card__header {
    margin-bottom: 20px;
}

.vf-contact-card__title {
    margin: 0 0 8px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.vf-contact-card__text {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
    color: #64748b;
}

.vf-contact-card__row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid #eef2f7;
}

.vf-contact-card__row:first-of-type {
    border-top: none;
    padding-top: 0;
}

.vf-contact-card__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    font-size: 1.1rem;
}

.vf-contact-card__label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.vf-contact-card__value {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #0f172a;
    word-break: break-word;
}

.vf-contact-card__value a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.vf-contact-card__value a:hover {
    text-decoration: underline;
}

/* Map */
.vf-contact-map-group {
    display: grid;
    gap: 18px;
}

.vf-contact-map {
    overflow: hidden;
    position: relative;
}

.vf-contact-map__provider {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vf-contact-map__provider--google {
    background: #e8f0ff;
    color: #1d4ed8;
}

.vf-contact-map__provider--yandex {
    background: #fff4e6;
    color: #c2410c;
}

.vf-contact-map__top {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 24px 18px;
}

.vf-contact-map__title {
    margin: 0 0 6px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
}

.vf-contact-map__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

.vf-contact-map__link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vf-contact-map--google .vf-contact-map__link {
    background: #eff6ff;
    color: #1d4ed8;
}

.vf-contact-map--google .vf-contact-map__link:hover {
    background: #dbeafe;
    transform: translateY(-1px);
}

.vf-contact-map--yandex .vf-contact-map__link {
    background: #fff4e6;
    color: #c2410c;
}

.vf-contact-map--yandex .vf-contact-map__link:hover {
    background: #ffe6c7;
    transform: translateY(-1px);
}

.vf-contact + footer {
    margin-top: auto;
}

.vf-contact-map__embed {
    position: relative;
    height: 320px;
    border-top: 1px solid #eef2f7;
    background: #cbd5e1;
}

.vf-contact-map__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Gallery card */
.vf-contact-gallery-card {
    padding: 24px;
}

.vf-contact-gallery-card__header {
    margin-bottom: 16px;
}

.vf-contact-gallery__title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.vf-contact-gallery__text {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
    color: #64748b;
}

.vf-contact-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.vf-contact-gallery__item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #dbeafe;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vf-contact-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.16);
}

.vf-contact-gallery__item:focus {
    outline: 2px solid #2563eb;
    outline-offset: 3px;
}

.vf-contact-gallery__item img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.vf-contact-gallery__item--large img {
    height: 280px;
}

.vf-contact-gallery__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.65) 100%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.vf-contact-gallery__item:hover .vf-contact-gallery__overlay,
.vf-contact-gallery__item:focus .vf-contact-gallery__overlay {
    opacity: 1;
}

.vf-contact-gallery__overlay span {
    font-size: 0.9rem;
    font-weight: 700;
}

.vf-contact-gallery-placeholder {
    padding: 42px 20px;
    border-radius: 18px;
    border: 1px dashed #cbd5e1;
    background: #fff;
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
}

/* Lightbox */
.vf-contact-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.vf-contact-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.vf-contact-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.88);
    cursor: pointer;
}

.vf-contact-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.vf-contact-lightbox__close:hover {
    background: #f8fafc;
}

.vf-contact-lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 92vw;
    max-height: 86vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.vf-contact-lightbox__content img {
    display: block;
    max-width: 100%;
    max-height: 86vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Tablet */
@media (min-width: 700px) {
    .vf-contact__hero {
        padding: 72px 0 42px;
    }

    .vf-contact-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .vf-contact-gallery__item--large {
        grid-column: 1 / -1;
    }

    .vf-contact-gallery__item--large img {
        height: 300px;
    }
}

/* Desktop */
@media (min-width: 980px) {
    .vf-contact__grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 34px;
    }

    .vf-contact-map__embed {
        height: 360px;
    }

    .vf-contact-gallery__item img {
        height: 210px;
    }

    .vf-contact-gallery__item--large img {
        height: 290px;
    }
}

/* Mobile */
@media (max-width: 699px) {
    .vf-contact__container {
        padding: 0 16px;
    }

    .vf-contact__hero {
        padding: 42px 0 28px;
    }

    .vf-contact__title {
        font-size: 2rem;
    }

    .vf-contact__subtitle {
        font-size: 0.98rem;
    }

    .vf-contact__main {
        padding: 0 0 20px;
    }

    .vf-contact-card,
    .vf-contact-gallery-card {
        padding: 20px;
        border-radius: 18px;
    }

    .vf-contact-map__top {
        padding: 20px 20px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .vf-contact-map__embed {
        height: 270px;
    }

    .vf-contact-gallery__item img,
    .vf-contact-gallery__item--large img {
        height: 220px;
    }
}

/* common.blocks/qr-call.css */
/* Hero QR call block: below heading/description, above CTA buttons; hidden on mobile */
.hero-qr {
    text-align: center;
    margin: 12px auto 16px;
}

.hero-qr .qr-title {
    font-size: 14px;
    color: #5b6b8a;
    margin: 0 0 10px;
}

.hero-qr img {
    display: block;
    margin: 0 auto;
    width: 140px;
    height: 140px;
}

@media (max-width: 768px) {
    .hero-qr {
        display: none;
    }
}

/* common.blocks/productdetails.css */
.productdetails_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    border-bottom: 1px solid #dce1e7;
    background-color: #f9fbfc;
}

.mainimg img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 1/1;
    border: 1px solid #dce1e7;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mainimg:hover img {
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.childimages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.small_img img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #dce1e7;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.small_img:hover img {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.productright {
    padding: 10px 10px 10px 0;
}

.productcategory {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 8px;
    font-weight: 500;
}

.productright h3 {
    font-size: 32px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.productright h3:hover {
    color: #3498db;
}
.productright p {
    color: #3498db;
}

.productright h4 {
    font-size: 20px;
    text-decoration: line-through;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.productright .available {
    color: #2ecc71;
    font-weight: 500;
    margin-bottom: 10px;
}

.productright .notavailable {
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 10px;
}

.productright .quantity {
    width: 60px;
    height: 60px;
    padding: 0 10px;
    font-size: 16px;
    border-radius: 50%;
    border: 2px solid #3498db;
    background-color: #ecf0f1;
    color: #34495e;
    text-align: center;
    outline: none;
    transition: border-color 0.3s ease;
}

.productright .quantity:focus {
    border-color: #2980b9;
}

.productdetailstable_container h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 15px;
}

.fordetailstable {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 20px;
    align-items: start;
}

.detailtable {
    padding: 10px 0;
    color: #5d6d7e;
    font-size: 16px;
}

.detailtable th {
    border-bottom: 1px solid #dce1e7;
    text-align: left;
    padding-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.detailtable td {
    padding: 8px 0;
    font-size: 15px;
}

.detailtable td:nth-child(2) {
    text-align: right;
    padding-left: 10px;
    color: #34495e;
}

/* common.blocks/order.css */
:root {
    --main-color: #2563EB;
    --main-color-light: #3B82F6;
    --main-color-dark: #1E40AF;
    --text-color: #1f2937;
    --bg-light: #f9fafb;
    --text-white: #FFFFFF;
    --text-hover: #BFDBFE;
}

.order-container {
    padding: 40px 15px;
    display: grid;
    gap: 30px;
    font-family: 'Segoe UI', sans-serif;
}

.order-container table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--text-white);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.order-container th {
    background: linear-gradient(135deg, var(--main-color), var(--main-color-light));
    color: var(--text-white);
    padding: 14px 10px;
    font-size: 15px;
}

.order-container td {
    padding: 12px 10px;
    text-align: center;
    color: var(--text-color);
    border-bottom: 1px solid #e5e7eb;
}

.order-info {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: start;
}

.order-info img {
    min-width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.order_product_title {
    font-size: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 42px;
    margin: 0;
    text-align: left;
    color: var(--text-color);
}

.cancelorderbutton {
    background-color: #b91c1c;
    color: var(--text-white);
    padding: 8px 14px;
    font-size: 14px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cancelorderbutton:hover {
    background-color: #991b1b;
}
.cancelorderbutton .icon,
.cancelorderbutton p {
    display: inline-block;
}
.empty_order {
    text-align: center;
    font-size: 18px;
    color: var(--main-color-dark);
    margin-top: 40px;
}

.pagination-container {
    display: flex;
    justify-content: center;
}




/* config/media.css */
:root {
    --main-color: #2563EB;
    --main-color-light: #3B82F6;
    --main-color-dark: #1E40AF;
    --text-color: #1f2937;
    --bg-light: #f9fafb;
}

@media (max-width: 500px) {
    .repair-box h3 {
        font-size: 25px;
    }
}

@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
    .navbar .header_btn {
        display: block;
    }

    .navbar .header_btn.menu_btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    nav .navbar {
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }

    .navbar .logo {
        margin-right: auto;
        flex-shrink: 0;
    }

    .language-switcher {
        margin-left: 0;
        margin-right: 0;
        flex-shrink: 0;
        align-self: center;
    }

    .navbar .nav_links {
        position: fixed;
        height: 100%;
        width: 100%;
        max-width: 300px;
        z-index: 99;
        background: var(--main-color);
        display: block;
        top: -16px;
        left: -100%;
        overflow-y: auto;
        line-height: 50px;
        padding: 50px 10px;
        box-shadow: 15px 15px 15px 15px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }

    #menu_toggle:checked ~ .nav_links {
        left: 0%;
    }

    .navbar .nav_links li {
        margin: 15px 10px;
    }

    #showMega:checked ~ .mega_menu {
        max-height: 100%;
    }

    .nav_links .catalog_mobile_item {
        position: absolute;
        top: 197px;
        left: 138px;
        display: block;
        font-size: 20px;
        font-weight: 500;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
        color: var(--text-color);
    }

    .mega_menu {
        position: static;
        justify-content: center;
        top: 80px;
        opacity: 1;
        width: 100%;
        visibility: visible;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega_menu .mega_menu_content {
        background-color: var(--main-color);
        flex-direction: column;
        padding: 20px 20px 0 5px;
    }

    .mega_menu_content .mega_menu_row {
        line-height: 0px;
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega_links {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0;
    }

    .mega_links li {
        margin: 0;
        padding: 10px;
        border: none;
    }

    .mega_links li a {
        text-align: left;
        color: #FFFFFF;
    }
}

@media (max-width: 770px) {
    .burger {
        display: flex;
    }

    .navandlang {
        display: none;
        position: fixed;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 55%;
        width: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 50;
        overflow-y: auto;
        padding: 50px 40px;
        background-color: var(--main-color-light);
        row-gap: 30px;
        animation: burgerAnimation 0.4s;
    }

    @keyframes burgerAnimation {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

@media (max-width: 950px) {
    .heart-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
    .products {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 800px) {
    .products {
        gap: 30px;
    }
}
@media (max-width: 768px) {

    .slide {
        height: 400px;
    }

    .slider_container {
        height: 400px;
    }
}

@media (max-width: 650px) {

    .heart-grid {
        grid-template-columns: 1fr 1fr;

    }
    .products {
        grid-template-columns: 1fr 1fr;
    }

    .order-info{
        flex-direction: column;
        gap: 5px;
        padding-top: 5px;
    }

    .order_product_title{
        max-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}
@media (max-width: 480px) {

    .slide {
        height: 250px;
    }

    .slider_container {
        height: 250px;
    }
}

@media (max-width: 450px) {
    .products {
        grid-template-columns: 1fr;
    }

    .heart-grid {
        grid-template-columns: 1fr;
    }
    .goods{
        width: 80%;
        margin: 0 auto;
    }

    .index-container h2 {
        font-size: 35px;
    }
}

@media (max-width: 750px) {

    .form-box {
        width: 100%;
        height: 70%;
        bottom: 0;
    }

    .toggle-box::before {
        left: 0;
        top: -270%;
        height: 300%;
        width: 100%;
    }

    .register h3 {
        font-size: 30px;
    }

    .toggle-panel {
        width: 100%;
        height: 30%;
    }

    .input-box input{
        height: 35px;
    }
    .btn {
        height: 40px;
    }

    .heart-container .shop {
        width: 100%;
    }
}

@media(max-width: 450px) {

    .form-box , .reset-password-box{
        padding: 20px;
    }

    .toggle-box::before {
        border-radius: 100px;
    }

    .input-box input {
        width: 200px;
        font-size: 13px;
    }

    .btn, .reset-password-box .btn {
        width: 200px;
        font-size: 13px;
    }


    .login h3,
    .register h3, .reset-password-box h3{
        font-size: 25px;
    }

    .input-box i {
        font-size: 15px;
    }
}

@media(max-width: 400px) {
    .register-btn {
        width: 150px;
        font-size: 12px;
    }
    .input-box i {
        font-size: 13px;
    }
}
@media(max-width: 440px) {

    .verify-email-box, .forgot-email-box {
        padding: 100px 20px;
        line-height: 18px;
    }

}

@media(max-width: 340px) {

    .register-btn {
        width: 120px;
        height: 35px;
    }


    .toggle-box::before {
        border-radius: 80px;
    }

}

@media (max-width: 1250px) {
    .cart-container {
        max-width: 95%;
    }

}

@media(max-width: 900px) {
    .project {
        flex-direction: column;
    }

    .right-bar {
        margin-left: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 550px) {
    .delete span{
        display: none;
    }
    .add_cart-area span{
        display: none;
    }
    .forgot-email-box .input-box input {
        width: 250px;
    }
}


@media (max-width: 500px) {

    .heart_box img {
        width: 150px;
        height: 180px;
    }

    .forheartimg{
        height: 180px;
    }
    .heart_content p{
        font-size: 15px;
        margin: 8px 0;
    }

    .heart_content h3 {
        padding-bottom: 1px;
    }

    .heart_content h4 {
        padding-top: 0px;
        font-size: 14px;
    }

    .box img {
        width: 150px;
        height: 180px;
    }

    .verify-email-box, .forgot-email-box {
        padding: 100px 25px;
    }

    .forcartimg{
        height: 180px;
    }
    .cart_content p{
        font-size: 13px;
        margin: 8px 0;
    }

    .cart_content h3 {
        padding-bottom: 1px;
    }

    .cart_content h4{
        padding-top: 0px;
        font-size: 12px;
    }


    .cart_content .cart_product_title {
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: calc(1.4em * 2);
    }

    .delete-area, .add_cart-area {
        padding: 5px 15px;
    }

    .delete-area i, .add_cart-area i {
        margin: 3px;
    }
}

@media (max-width: 360px) {
    .order-container .order{
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .quantity input {
        padding: 3px 5px;
    }
    .delete-area, .add_cart-area {
        padding: 5px 10px;
    }

}

@media (max-width: 550px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-container .logo {
        justify-content: flex-start;
        text-align: left;
    }

    .footersocial {
        justify-items: center;

    }
    .order-container .order{
        font-size: 13px;
    }

    .fororder-info-img{
        width: 50px;
    }

    .order-info img {
        min-width: 50px;
        height: 50px;
        margin-right: 0px;
    }

    .cancelorderbutton {
        padding: 5px;
    }

    .order td {
        padding: 2px 0;
    }

    .order th {
        font-size: 13px;
        padding: 10px 2px;
    }

    .order_product_title{
        max-width: 50px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
@media (max-width: 390px) {
.order th {
    font-size: 11px;
}
}


@media (max-width: 350px) {
    .verify-email-box , .forgot-email-box{
        padding: 90px 20px;
    }
}

@media (max-width: 850px) {
    .productdetails_container {
        grid-template-columns: 1fr;
        justify-items: left;
    }

    .productright {
        padding: 20px 0px;
    }
}
@media (max-width: 800px) {
    .fordetailstable{
        grid-template-columns: 1fr;
    }
}
@media (max-width: 550px) {
    .productcategory{
        font-size: 15px;
    }
    .productright h3{
        font-size: 25px;
    }
    .productright h4{
        font-size: 20px;
    }
    .productright .cuntityofproduct{
        font-size: 10px ;
        width: 40px;
        height: 40px;
    }
    .productdetailstable_container h3{
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .detailtable td{
        padding: 5px 0;
    }
    .detailtable td:nth-child(2){
        text-align: right;
        padding-left: 5px;
    }
    .productright .btn{
        font-size: 14px;
        width: 180px;
        height: 40px;
    }

}

@media (max-width: 640px) {
    .searchform .searchproduct {
        width: 400px;
    }

}
@media (max-width: 540px) {
    .searchform .searchproduct {
        width: 300px;
    }

}
@media (max-width: 440px) {
    .searchform .searchproduct {
        width: 180px;
        font-size: 13px;
        padding: 12px 7px;
    }

    .searchform .searchproductbutton {
        font-size: 13px;
    }

}

@media (max-width: 1070px), (hover: none) and (pointer: coarse) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        justify-items: stretch;

    }
    .footer-container .logo {
        justify-content: flex-start;
        height: auto;
    }
    .footersocial {
        height: auto;
        align-content: start;
    }

    .subscribeform,
    .footercontact,
    .footersocial {
        width: 100%;
    }

    .footerinputs {
        flex-direction: column;
    }

    .footerinputs .email,
    .footerinputs .liquid-morph-element {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (hover: none) and (pointer: coarse) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        align-items: stretch;
    }

    .footer-container .logo {
        justify-content: flex-start;
        height: auto;
        text-align: left;
    }

    .footersocial {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-container .logo {
        justify-content: flex-start;
        text-align: left;
    }
    .footersocial {
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .input-box input {
        width: 200px;
        font-size: 11.5px;
    }
}

@media (min-width: 1200px) {
    .cancelorderbutton .icon {
        display: none;
    }
    .cancelorderbutton p {
        display: inline-block;
    }
}

@media (max-width: 1200px) {
    .cancelorderbutton p {
        display: none;
    }
    .cancelorderbutton .icon {
        display: inline-block;
    }
}


