* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    color: #1a1a1a;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 2rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.logo-icon {
    width: 42px;
    height: 42px;
    color: #1a1a1a;
    object-fit: contain;
}

.nav-icons {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s;
    color: #6c757d;
}

.nav-btn svg {
    width: 18px;
    height: 18px;
}

.nav-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.nav-btn:hover {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.cart-btn.hidden {
    display: none;
}

.search-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    color: #6c757d;
    z-index: 1;
}

.search-input {
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    background: #ffffff;
    outline: none;
    width: 180px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}

.profile-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s;
    color: #6c757d;
}

.profile-btn svg {
    width: 20px;
    height: 20px;
}

.profile-btn:hover {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: 75vh;
}

.content {
    flex: 1;
    max-width: 550px;
}

.title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-text {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-text p {
    margin-bottom: 1rem;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.examples {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #6c757d;
}

.examples-icon {
    color: #1a1a1a;
    font-size: 0.8rem;
}

.illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
}

.person-silhouette {
    width: 220px;
    height: 220px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.person-image {
    width: 220px;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .main {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .search-input {
        width: 120px;
    }
    
    .illustration {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .person-silhouette {
        width: 180px;
        height: 180px;
    }
    
    .person-image {
        width: 180px;
        max-height: 240px;
    }
}

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .header {
        padding: 1.25rem 3rem;
    }
    
    .nav {
        max-width: 1400px;
    }
    
    .main {
        max-width: 1400px;
        padding: 4rem 3rem;
    }
    
    .title {
        font-size: 3.5rem;
    }
    
    .info-text {
        font-size: 1.2rem;
    }
    
    .person-image {
        width: 280px;
        max-height: 360px;
    }
    
    .search-input {
        width: 220px;
    }
}

/* Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .header {
        padding: 1rem 2.5rem;
    }
    
    .main {
        padding: 3.5rem 2.5rem;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .person-image {
        width: 240px;
        max-height: 320px;
    }
    
    .search-input {
        width: 200px;
    }
}

/* Tablet Large (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .header {
        padding: 1rem 2rem;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav-icons {
        gap: 0.25rem;
    }
    
    .nav-btn {
        padding: 0.4rem;
    }
    
    .nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-icon-img {
        width: 16px;
        height: 16px;
    }
    
    .main {
        padding: 3rem 2rem;
        gap: 2rem;
    }
    
    .content {
        max-width: 450px;
    }
    
    .title {
        font-size: 2.8rem;
        margin-bottom: 1.75rem;
    }
    
    .info-text {
        font-size: 1rem;
    }
    
    .illustration {
        padding-left: 1.5rem;
    }
    
    .person-image {
        width: 200px;
        max-height: 280px;
    }
    
    .search-input {
        width: 160px;
        font-size: 0.85rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
}

/* Tablet Small & Mobile Large (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .header {
        padding: 0.875rem 1.5rem;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .logo {
        order: 1;
        flex-basis: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .nav-icons {
        order: 2;
        gap: 0.25rem;
    }
    
    .search-profile {
        order: 3;
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.375rem;
    }
    
    .nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .main {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }
    
    .content {
        max-width: 100%;
    }
    
    .title {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
        line-height: 1.15;
    }
    
    .info-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .illustration {
        padding-left: 0;
        margin-top: 0;
    }
    
    .person-image {
        width: 180px;
        max-height: 240px;
    }
    
    .search-input {
        width: 140px;
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem 0.4rem 2.25rem;
    }
    
    .search-icon {
        width: 14px;
        height: 14px;
        left: 10px;
    }
}

/* Mobile Medium (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .header {
        padding: 0.75rem 1rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .logo {
        order: 1;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .nav-icons {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.2rem;
    }
    
    .search-profile {
        order: 3;
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.3rem;
    }
    
    .nav-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .nav-icon-img {
        width: 14px;
        height: 14px;
    }
    
    .main {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }
    
    .info-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .person-image {
        width: 160px;
        max-height: 200px;
    }
    
    .search-input {
        width: 120px;
        font-size: 0.8rem;
        padding: 0.35rem 0.5rem 0.35rem 2rem;
    }
    
    .search-icon {
        width: 13px;
        height: 13px;
        left: 8px;
    }
    
    .profile-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile Small (до 359px) */
@media (max-width: 359px) {
    .header {
        padding: 0.625rem 0.75rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.625rem;
        align-items: center;
    }
    
    .logo {
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.15rem;
        max-width: 200px;
    }
    
    .search-profile {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .nav-btn {
        padding: 0.25rem;
    }
    
    .nav-btn svg {
        width: 13px;
        height: 13px;
    }
    
    .nav-icon-img {
        width: 13px;
        height: 13px;
    }
    
    .main {
        padding: 1.5rem 0.75rem;
        gap: 1.25rem;
    }
    
    .title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.25;
    }
    
    .info-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .info-text p {
        margin-bottom: 0.875rem;
    }
    
    .person-image {
        width: 140px;
        max-height: 180px;
    }
    
    .search-input {
        width: 100px;
        font-size: 0.75rem;
        padding: 0.3rem 0.4rem 0.3rem 1.75rem;
        border-radius: 15px;
    }
    
    .search-icon {
        width: 12px;
        height: 12px;
        left: 6px;
    }
    
    .profile-btn {
        padding: 0.375rem;
    }
    
    .profile-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* Ultra Small (до 280px) */
@media (max-width: 280px) {
    .header {
        padding: 0.5rem;
    }
    
    .main {
        padding: 1rem 0.5rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .info-text {
        font-size: 0.8rem;
    }
    
    .person-image {
        width: 120px;
        max-height: 160px;
    }
    
    .search-input {
        width: 80px;
        font-size: 0.7rem;
    }
    
    .nav-icons {
        max-width: 160px;
    }
}
