* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geologica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1b1b18;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-banner {
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 0;
    text-align: center;
}

.top-banner__text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header__search {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.header__search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    width: 20px;
    height: 20px;
}

.header__search-input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1px solid #d1d5db;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.header__search-input:focus {
    border-color: #2563eb;
}

.header__logo {
    flex: 1;
    text-align: center;
}

.header__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1e40af;
}

.header__logo-img {
    height: 32px;
    width: auto;
}

.header__logo-text {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1e40af;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.header__lang {
    cursor: pointer;
}

.header__lang-text {
    font-size: 14px;
    font-weight: 500;
    color: #939393;
}

.header__icon {
    color: #939393;
    transition: color 0.2s;
}

.header__icon:hover {
    color: #1e40af;
}

.header__icon svg {
    width: 24px;
    height: 24px;
}

.header__nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header__nav-link {
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    padding: 8px 0;
}

.header__nav-link:hover {
    color: #1e40af;
}

.summer-offers {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
}

.summer-offers__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.main-banner {
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
}

.main-banner__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.categories {
    padding: 60px 0;
    background-color: #f9fafb;
}

.categories__title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #1b1b18;
    font-family: 'Cormorant', serif;
}

.categories__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.categories__item {
    background-color: #000000;
    color: #ffffff;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 0;
    transition: background-color 0.2s;
    font-family: 'Geologica', sans-serif;
    white-space: nowrap;
}

.categories__item:hover {
    background-color: #1f2937;
}

.footer {
    margin-top: 60px;
}

.footer__subscribe {
    background-color: #9333ea;
    padding: 40px 0;
}

.footer__subscribe-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer__subscribe-text {
    flex: 1;
    min-width: 300px;
}

.footer__subscribe-text p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.6;
    margin: 0;
    font-family: 'Geologica', sans-serif;
}

.footer__subscribe-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Geologica', sans-serif;
    white-space: nowrap;
}

.footer__subscribe-btn:hover {
    background-color: #1f2937;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__social-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Geologica', sans-serif;
    white-space: nowrap;
}

.footer__social-icons {
    display: flex;
    gap: 10px;
}

.footer__social-icon {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
    font-family: 'Geologica', sans-serif;
}

.footer__social-icon:hover {
    background-color: #f3f4f6;
}

.footer__main {
    background-color: #ffffff;
    padding: 60px 0 40px;
    border-top: 1px solid #e5e7eb;
}

.footer__grid {
    display: grid;
    grid-template-columns: 258px 1fr 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__column--logo {
    max-width: 258px;
}

.footer__logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer__description {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Geologica', sans-serif;
}

.footer__heading {
    color: #1b1b18;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: 'Geologica', sans-serif;
}

.footer__heading--margin {
    margin-top: 30px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links li:last-child {
    margin-bottom: 0;
}

.footer__link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    font-family: 'Geologica', sans-serif;
}

.footer__link:hover {
    color: #1e40af;
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer__column--logo {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer__subscribe-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer__social {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer__column--logo {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .header__top {
        flex-direction: column;
        gap: 20px;
    }
    
    .header__search {
        max-width: 100%;
        order: 2;
    }
    
    .header__logo {
        order: 1;
    }
    
    .header__actions {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .header__nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .main-banner {
        grid-template-columns: 1fr;
        min-height: 400px;
    }
    
    .main-banner__title {
        font-size: 32px;
    }
    
    
    .categories__grid {
        grid-template-columns: 1fr;
    }
}

