/* 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;
    height: 100%;
    margin: 0;
}

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);
    }
}

/* 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-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;
    }

    .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);
    }

    .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 input {
        display: none;
    }

    .nav_links .catalog_mobile_item {
        display: none;
    }


/* 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: 40px;
    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;
}

.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;
}

.repair-box {
    position: relative;
    width: 850px;
    height: auto;
    border-radius: 30px;
    box-shadow: rgba(44, 62, 80, 0.3) 2px 4px 6px 4px;
    margin: 20px;
    padding: 60px 0;
    background-color: var(--text-white);
    text-align: center;
    color: var(--text-color);
}

.repair-box h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-color);
}

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

.repair-box .repair-input-box input,
.repair-box .repair-input-box textarea {
    width: 80%;
    padding: 13px 20px 13px 45px;
    background: #D6EAF8;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    resize: vertical;
}

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

.repair-box .repair-input-box textarea {
    min-height: 120px;
}

.repair-box .btn {
    width: 80%;
    height: 50px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--main-color-light), #6DD5FA);
    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);
}

.repair-box .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;
}

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

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


/* 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: 0;
}

.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) {
    .navbar .header_btn {
        display: block;
    }

    .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%;
    }

    #menu_toggle:checked ~ .header_btn.menu_btn {
        display: none;
    }


    .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;
    }

    .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) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        justify-items: center;

    }
    .footer-container .logo {
        justify-content: flex-start;
    }
    .footersocial {
        justify-content: flex-start;
    }

    .footerinputs {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .liquid-morph-element {
        width: 100%;
    }
    .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;
    }
}


