/* Hero Section Styles */
.hero-section {
    font-family: 'Montserrat', sans-serif;
    color: white;
    max-width: 1280px;
    margin: auto;
    padding: 60px 20px;
}

.hero-section form {
    width: 100%;
}

.hero-section__container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    width: 100%;
}

/* Hero Content */
.hero-section__content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 8px 24px -3px rgba(16, 24, 40, 0.10);
}

.hero-section__headline {
    width: 60%;
    padding: 40px;
    transform: rotate(-1deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section__headline-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-section__search-form {
    width: 40%;
    max-width: 400px;
    padding: 10px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero-section__form-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.11);
    margin-bottom: 10px;
    position: relative;
}

.hero-section__dropdown {
    overflow: visible;
}

.hero-section__select {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    outline: none;
    padding-right: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-section__selected {
    flex: 1;
}

.hero-section__select::after {
    content: '';
    width: 12px;
    height: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23D1D1D1" d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.hero-section__dropdown.active .hero-section__select::after {
    transform: rotate(180deg);
}

.hero-section__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(51, 51, 51, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    display: none;
    z-index: 1000;
}

.hero-section__dropdown.active .hero-section__dropdown-menu {
    display: block;
}

.hero-section__dropdown-item {
    padding: 16px 20px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 20px;
    font-weight: 600;
}

.hero-section__dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-section__dropdown-item:first-child {
    color: #999;
}

.hero-section__search-button {
    width: 100%;
    padding: 22px 32px;
    background: linear-gradient(0deg, white 0%, #ECECEC 50%, white 50%, #ECECEC 100%);
    border: 4px solid #C1C1C1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #6D6D6D;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: 0.50px;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-section__search-button:hover {
    background: linear-gradient(0deg, #ECECEC 0%, white 50%, #ECECEC 50%, white 100%);
}

/* Price Categories */
.hero-section__price-categories {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.hero-section__price-category {
    width: calc(33.333% - 20px);
    height: 200px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.hero-section__price-category:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-section__price-label {
    color: #FC0606;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
}

.hero-section__price-value {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 44px;
    font-family: 'Stardos Stencil', cursive;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 52px;
    letter-spacing: 0.50px;
}

.hero-section__price-category--all {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-section__content {
        flex-direction: column;
        padding: 20px;
    }

    .hero-section__headline,
    .hero-section__search-form {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-section__headline {
        transform: none;
    }

    /* Image styles are handled by max-width */

    .hero-section__price-category {
        width: calc(50% - 10px);
    }
}

@media (max-width: 992px) {
    /* Header styles removed */
}

@media (max-width: 768px) {
    .hero-section__price-category {
        width: 100%;
    }

    .hero-section__dropdown-item {
        font-size: 18px;
        padding: 14px 18px;
    }

    .hero-section__select {
        font-size: 18px;
    }

    /* Image responsive styles */
}

@media (max-width: 576px) {
    .hero-section__container {
        gap: 30px;
    }

    .hero-section__headline {
        padding: 20px;
    }

    .hero-section__form-group {
        padding: 14px 16px;
    }

    .hero-section__select {
        font-size: 16px;
        padding-right: 25px;
    }

    .hero-section__dropdown-item {
        font-size: 16px;
        padding: 12px 16px;
    }

    /* Smaller screen image adjustments */

    .hero-section__price-label {
        font-size: 24px;
    }

    .hero-section__price-value {
        font-size: 36px;
        line-height: 44px;
    }
}