/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.logo img {
    height: 50px;
    width: auto;
    display: block;
}
.header_actions {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.search_wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.search_icon {
    width: 20px;
    height: 20px;
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.search_container {
    display: none;
    position: absolute;
    right: 100%;
    margin-right: 8px;
    z-index: 1;
    align-items: center;
}
.search_container.active {
    display: flex;
}
.search_input {
    padding: 8px 40px 8px 16px;
    border: 1px solid #1a237e;
    border-radius: 8px;
    font-size: 16px;
    width: 250px;
    outline: none;
    box-shadow: 0 2px 10px rgba(26, 35, 126, 0.2);
    color: #333;
    background-color: #fff;
}
.search_clear {
    display: none;
    position: absolute;
    right: 12px;
    cursor: pointer;
    color: #333;
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    user-select: none;
    z-index: 2;
}
.search_clear.visible {
    display: block;
}
.search_clear:hover {
    color: #000;
}
.search_input::placeholder {
    color: #1a237e;
    opacity: 0.6;
}
.search_input:focus {
    border-color: #1a237e;
    box-shadow: 0 2px 15px rgba(26, 35, 126, 0.3);
}
.cart_icon {
    width: 20px;
    height: 20px;
    display: block;
}
/* HEADER */

/* Banner Styles */
.banner {
    background: linear-gradient(135deg, #00b4d8 0%, #a8dadc 100%);
    color: white;
    padding: 64px 0;
    text-align: center;
}

.banner_content {
    max-width: 800px;
    margin: 0 auto;
}

.banner_title {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.banner_subtitle {
    font-size: 19.2px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.banner_btn {
    background: white;
    color: #00b4d8;
    border: none;
    padding: 16px 32px;
    font-size: 17.6px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.banner_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* PRODUCTS */
.products_section {
    padding: 64px 0;
    background-color: #fff;
}
.section_title {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: #333;
}
.products_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
}
.product_card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.product_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.product_image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.product_card:hover .product_image img {
    transform: scale(1.05);
}
.product_info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product_name {
    font-size: 19.2px;
    margin-bottom: 8px;
    color: #333;
    text-align: center;
}
.product_description {
    color: #666;
    margin-bottom: 16px;
    flex-grow: 1;
}
.product_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.product_price {
    font-size: 20.8px;
    font-weight: 700;
    color: #00b4d8;
}
.add_to_cart_btn {
    background: #00b4d8;
    color: white;
    border: none;
    padding: 11.2px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}
.add_to_cart_btn:hover {
    background: #0096c7;
}
/* PRODUCTS */

/* FOOTER */
.footer {
    background-color: #f5f5f5;
    color: #00b4d8;
    padding: 48px 0 32px;
    margin-top: 64px;
}
.footer_subscribe {
    margin-bottom: 40px;
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(168, 218, 220, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid rgba(0, 180, 216, 0.2);
}
.subscribe_title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.subscribe_text {
    color: #333;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
    opacity: 0.9;
}
.subscribe_form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}
.subscribe_input {
    flex: 1;
    border: 2px solid #00b4d8;
    border-radius: 8px;
    background: white;
    padding: 12px 16px;
    color: #00b4d8;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.subscribe_input:focus {
    border-color: #0096c7;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}
.subscribe_input::placeholder {
    color: #00b4d8;
    opacity: 0.6;
}
.subscribe_arrow {
    background: #00b4d8;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}
.subscribe_arrow:hover {
    background: #0096c7;
    transform: translateX(2px);
}
.footer_social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}
.social_icon {
    width: 48px;      
    height: 48px;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
    cursor: pointer;
}
.social_icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}
.footer_consumer {
    margin: 24px 0;
    font-size: 13.6px;
    color: #333;
    text-align: center;
    opacity: 0.8;
}
.footer_consumer p {
    margin: 0;
}
/* FOOTER BOTTOM */
.footer_bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    border-top: 2px solid rgba(0, 180, 216, 0.2);
    gap: 24px;
}
.copyright {
    color: #333;
    font-size: 14px;
    margin: 0;
    text-align: center;
}
.footer_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_logo img {
    height: 50px;
    width: auto;
}
/* Responsive Design */
@media (max-width: 768px) {
.header_content {
    flex-direction: row;
    gap: 16px;
}
.banner_title {
    font-size: 32px;
}
.banner_subtitle {
    font-size: 16px;
}
.products_grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}
.footer_bottom {
    flex-direction: column;
    text-align: center;
}
.subscribe_form {
    max-width: 100%;
}}
/* FOOTER */