:root {
    --button-color: #5454b8;
    --text-color: #5454b8;
    --theme-color: #5454b8;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
input, button {
    outline: none;
    border: none;
}
.w-100 {
    width: 100%;
}
.d-none {
    display: none!important;
}
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--theme-color);
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    font-weight: bold;
}
.button:hover {
    background: var(--button-color);
    color: white;
}
.button.colored {
    background: var(--button-color);
    color: white;
}
.button.colored:hover {
    background: unset;
    color: var(--theme-color);
}
body {
    font-family: sans-serif;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 10px;
}
header {
    margin-top: 20px;
}
header .header {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header .site-link {
    color: var(--text-color);
    font-size: 30px;
    font-weight: bold;
}
header .header .search-input {
    width: 40%;
    height: 40px;
    padding: 0 15px;
    outline: none;
    border: 1px solid gray;
    border-radius: 20px;
}
header .header .user-actions {
    display: flex;
    gap: 10px;
}
header .header .hamburger-menu-wrapper {
    display: none;
}
header .header .hamburger-menu-wrapper .hamburger-menu-button {
    outline: none;
    border: none;
    cursor: pointer;
    padding: 4px 5px 3px 5px;
    border-radius: 5px;
    background: var(--button-color);
}
header .header .hamburger-menu-wrapper .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    max-width: 100%;
    background: #fafafa;
    box-shadow: -2px 0 10px -1px rgba(0, 0, 0, .2);
    z-index: 999;
    padding: 100px 20px;
    transition: .3s;
    display: flex;
    flex-direction: column;
}
header .header .hamburger-menu-wrapper .mobile-menu .close-button {
    text-align: right;
}
header .header .hamburger-menu-wrapper .mobile-menu .close-button button {
    margin: 0;
    padding: 2px 7px;
    border: none;
    outline: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    background: black;
    color: white;
    cursor: pointer;
}
header .header .hamburger-menu-wrapper .mobile-menu .links {
    display: flex;
    gap: 20px;
    text-align: center;
    font-size: 25px;
    flex-direction: column;
    border-top: 3px dashed #1f2630c2;
    padding-top: 20px;
}
header .header .hamburger-menu-wrapper .mobile-menu:not(.active) {
    transform: translateX(100%);
}
@media (max-width: 768px) {
    header .header .hamburger-menu-wrapper {
        display: block;
    }

    header .header .search-input {
        display: none;
    }

    header .header .user-actions {
        display: none;
    }
}
nav {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
nav .nav {
    display: flex;
    gap: 10px;
    text-align: center;
}
nav .nav a {
    padding: 5px;
    border-radius: 5px;
    color: var(--text-color);
}
@media (max-width: 768px) {
    nav .nav {
        display: none;
    }
}
section.section-products .products-area .products-title {
    font-size: 25px;
    font-weight: 600;
    border-bottom: 2px solid var(--theme-color);
    margin-bottom: 20px;
    display: inline-block;
}
section.section-products .products-area .products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 1px;
}
section.section-products .products-area .products .product {
    box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
    width: calc((100% - (30px * 3)) / 4);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: transform 0.2s;
}
@media (max-width: 1200px) {
    section.section-products .products-area .products .product {
        width: calc((100% - (30px * 2)) / 3);
    }
}
@media (max-width: 768px) {
    section.section-products .products-area .products .product {
        width: calc((100% - (30px * 1)) / 2);
    }
}
@media (max-width: 480px) {
    section.section-products .products-area .products .product {
        width: 100%;
    }
}
section.section-products .products-area .products .product .img-container {
    width: 100%;
}
section.section-products .products-area .products .product .img-container img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
}
section.section-products .products-area .products .product .name {
    padding: 10px 0;
    text-align: center;
}
section.section-products .products-area .products .product:hover {
    transform: translateY(5px);
}
section.section-signup .signup-area {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.section-signup .signup-area .signup-title {
    display: inline-block;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--theme-color);
}
section.section-signup .signup-area .input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
section.section-signup .signup-area .input-group .text {
    font-size: 15px;
    font-weight: bold;
}
section.section-signup .signup-area .input-group input {
    border: none;
    outline: none;
    width: 100%;
    border: 2px solid var(--theme-color);
    padding: 10px;
}
footer {
    background: #f7f7f7;
    margin-top: 20px;
    padding-top: 30px;
}
footer .footer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 100px;
}
footer .footer .column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc((100% - (20px * 3)) / 4);
}
@media (max-width: 1200px) {
    footer .footer .column {
        width: calc((100% - (30px * 1)) / 2);
    }

    footer .footer .column:first-child {
        width: 100%;
    }
}
footer .footer .column .name {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 600;
}
footer .footer .column .about {
    font-style: italic;
    font-size: 13px;
}
footer .footer .column .column-title {
    color: var(--text-color);
    font-weight: 600;
}
footer .footer .column .categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .footer .column .categories .category {
    transition: transform 0.2s;
    display: inline;
}
footer .footer .column .categories .category:hover {
    transform: translateX(10px);
}
footer .footer-bottom {
    border-top: 3px solid #eee;
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 1200px) {
    footer .footer-bottom {
        text-align: center;
        flex-direction: column;
    }
}