
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #111111;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #ffffff;
}

.logo img {
    height: 24px;
    width: auto;
    display: block;
}
.nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: #111111;
    font-weight: 500;
    font-size: 15px;
    margin: 0 12px;
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: #707072;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box {
    display: none;
    align-items: center;
    background-color: #f5f5f5;
    padding: 8px 16px;
    border-radius: 100px;
}

.search-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
}

.search-box input {
    background: transparent;
    border: none;
    font-size: 14px;
    outline: none;
    width: 100%;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.icon-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 8px;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #111111;
}

.hero-banner {
    width: 100%;
    padding: 0;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-info {
    text-align: center;
    padding: 32px 16px;
}

.subtitle {
    font-size: 14px;
    font-weight: 500;
}

.main-title {
    font-size: 32px;
    font-weight: 900;
    margin: 8px 0 16px 0;
    letter-spacing: -1px;
}

.description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.desktop-only {
    display: none !important;
}

.promo-buttons {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.btn {
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-dark {
    background-color: #111111;
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #707072;
}

.section-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.best-section, 
.essentials-section {
    padding: 24px 16px;
}

.essentials-section {
    padding-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.product-card {
    background-color: #ffffff;
}

.product-img-wrapper {
    background-color: #f6f6f6;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 12px;
}

.product-detail h3 {
    font-size: 15px;
    font-weight: 500;
    color: #111111;
}

.category {
    font-size: 14px;
    color: #707072;
    margin-top: 4px;
}

.price {
    font-size: 15px;
    font-weight: 500;
}

.essentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.essential-card {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.essential-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.essential-btn {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: #ffffff;
    color: #111111;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.essential-btn:hover {
    background-color: #e5e5e5;
}

/* Подвал */
.footer {
    background-color: #111111;
    color: #ffffff;
    padding: 40px 16px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.footer-col a {
    color: #7e7e7e;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.main-links a {
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    justify-content: flex-start;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.social-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
@media (min-width: 769px) {
    .header {
        padding: 12px 48px;
    }

    .nav {
        display: block;
    }

    .search-box {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .hero-banner {
        padding: 0 48px;
    }

    .promo-info {
        padding: 40px 20px;
    }

    .main-title {
        font-size: 48px;
    }

    .desktop-only {
        display: inline !important;
    }

    .best-section {
        padding: 40px 48px;
    }

    .essentials-section {
        padding: 40px 48px 80px 48px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .product-card.desktop-only {
        display: block !important;
    }

    .essentials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .essential-btn {
        bottom: 40px;
        left: 40px;
    }

    .footer {
        padding: 40px 48px;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0;
    }

    .footer-socials {
        margin-top: 0;
    }
}

.catalog-layout {
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    max-width: 1440px;
    margin: 0 auto;
}

.sidebar {
    width: 100%;
    margin-bottom: 24px;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-menu a {
    text-decoration: none;
    color: #111111;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.sidebar-menu a:hover {
    color: #707072;
}

.catalog-content {
    flex: 1;
    width: 100%;
}

.catalog-content .products-grid {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax(220px, 1fr) );
    gap: 16px 12px;
}

.catalog-content .product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.catalog-content .product-img-wrapper {
    background-color: #f6f6f6;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-content .product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-catalog {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tag-status {
    color: #9e3500;
    font-size: 13px;
    font-weight: 500;
}

.product-info-catalog h3 {
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    line-height: 1.3;
    margin-top: 2px;
}

.product-info-catalog .category,
.color-count {
    font-size: 13px;
    color: #707072;
    margin-top: 0;
}

.price-text {
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    margin-top: 6px;
}

@media (min-width: 769px) {
    .catalog-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
        padding: 32px 48px;
    }

    .sidebar {
        width: 180px;
        flex-shrink: 0;
        position: sticky;
        top: 20px;
        margin-bottom: 0;
    }

    .catalog-content .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }
}

@media (max-width: 768px) {
    .icon-btn.mobile-hide {
        display: none !important;
    }
}

.catalog-layout {
    display: flex;
    flex-direction: column;
    padding: 16px;
    max-width: 1440px;
    margin: 0 auto;
}

.sidebar {
    width: 100%;
    margin-bottom: 24px;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu a {
    text-decoration: none;
    color: #111111;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.sidebar-menu a:hover {
    color: #707072;
}

.catalog-content {
    width: 100%;
}

.catalog-content .products-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.catalog-content .product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.catalog-content .product-img-wrapper {
    background-color: #f6f6f6;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-content .product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-info-catalog {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tag-status {
    color: #9e3500;
    font-size: 13px;
    font-weight: 500;
}

.product-info-catalog h3 {
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    margin-top: 2px;
}

.product-info-catalog .category,
.color-count {
    font-size: 13px;
    color: #707072;
    margin-top: 0;
}

.price-text {
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    margin-top: 6px;
}

@media (min-width: 769px) {
    .catalog-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
        padding: 32px 48px;
    }

    .sidebar {
        width: 180px;
        flex-shrink: 0;
        position: sticky;
        top: 20px;
        margin-bottom: 0;
    }

    .sidebar-menu {
        gap: 12px;
    }

    .sidebar-menu a {
        font-size: 14px;
    }

    .catalog-content .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 80px;
    min-height: calc(100vh - 300px);
}

.login-box {
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.login-logo img {
    height: 18px;
    width: auto;
    margin-bottom: 24px;
}

.login-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.login-form .form-group {
    margin-bottom: 14px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    font-size: 14px;
    color: #111111;
    outline: none;
    transition: border-color 0.2s ease;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    border-color: #111111;
}

.login-form input::placeholder {
    color: #8d8d8d;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #8d8d8d;
    margin: 18px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    accent-color: #111111;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.forgot-link {
    color: #8d8d8d;
    text-decoration: none;
}

.forgot-link:hover {
    color: #111111;
}

.terms-text {
    font-size: 12px;
    color: #8d8d8d;
    line-height: 1.4;
    margin-bottom: 24px;
}

.terms-text a {
    color: #8d8d8d;
    text-decoration: underline;
}

.terms-text a:hover {
    color: #111111;
}

.login-btn {
    width: 100%;
    height: 40px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.login-btn:hover {
    background-color: #333333;
}

.join-text {
    font-size: 12px;
    color: #8d8d8d;
    margin-top: 18px;
}

.join-text a {
    color: #111111;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 16px 60px;
    }
    
    .login-title {
        font-size: 18px;
    }
    
    .form-options {
        flex-direction: row;
        gap: 10px;
    }
}