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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: #f5f5f5;
    color: #333;
}

.search-bar {
    width: 100%;
    background: #131921;
    /* Amazon dark header */
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 2000;
}

.search-bar input {
    width: 60%;
    max-width: 550px;
    padding: 12px 14px;
    border: none;
    outline: none;
    border-radius: 4px;
    font-size: 16px;
}

.search-bar button {
    padding: 12px 14px;
    border: none;
    background: #febd69;
    border-radius: 4px;
    cursor: pointer;
}

.search-bar button:hover {
    background: #f3a847;
}

.search-bar button i {
    font-size: 18px;
}


.dot {
    width: 32px;
    height: 22px;
    background: red;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.hero-banner {
    background: linear-gradient(135deg, #ffd9b3 0%, #fff8dc 50%, #ffb3d9 100%);
    padding: 60px 40px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.site-credit {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 999;
    font-family: inherit;
}

.banner-content {
    flex: 1;
    max-width: 500px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.banner-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.brands {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.brands img {
    height: 30px;
    object-fit: contain;
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 300px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 40px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 15px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.card-content {
    padding: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.product-item {
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.price-tag {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.product-description {
    font-size: 13px;
    color: #999;
    line-height: 1.4;
}

.explore-link {
    color: #0066c0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.explore-link:hover {
    color: #c45500;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 30px;
    }

    .hero-banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-content {
        max-width: 100%;
    }

    .hero-banner h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }

    .product-card {
        margin-bottom: 0;
    }

    .hero-banner {
        padding: 40px 20px;
        gap: 20px;
    }

    .hero-banner h1 {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        margin-bottom: 0;
    }
}