/* Amazon Affiliate Links Widget - 223922a2 */

.aal-223922a2-wrapper {
    width: 100%;
}

/* Search Banner */
.aal-223922a2-banner {
    background-color: #232F3E;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 24px;
}

.aal-223922a2-banner-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.aal-223922a2-banner-title {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.aal-223922a2-search-form {
    display: flex;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
}

.aal-223922a2-search-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #FF9900;
    border-right: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    background: #FFFFFF;
    color: #111;
    transition: border-color 0.2s;
}

.aal-223922a2-search-input:focus {
    border-color: #E88B00;
}

.aal-223922a2-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background-color: #FF9900;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.aal-223922a2-search-btn:hover {
    background-color: #E88B00;
}

.aal-223922a2-search-icon {
    flex-shrink: 0;
}

/* Product Grid */
.aal-223922a2-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 16px;
}

.aal-223922a2-cols-1 { grid-template-columns: 1fr; }
.aal-223922a2-cols-2 { grid-template-columns: repeat(2, 1fr); }
.aal-223922a2-cols-3 { grid-template-columns: repeat(3, 1fr); }
.aal-223922a2-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .aal-223922a2-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .aal-223922a2-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .aal-223922a2-cols-2,
    .aal-223922a2-cols-3,
    .aal-223922a2-cols-4 {
        grid-template-columns: 1fr;
    }
    .aal-223922a2-search-form {
        flex-direction: column;
    }
    .aal-223922a2-search-input {
        border-right: 2px solid #FF9900;
        border-radius: 6px;
    }
    .aal-223922a2-search-btn {
        border-radius: 6px;
        justify-content: center;
    }
}

/* Product Card */
.aal-223922a2-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

.aal-223922a2-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.aal-223922a2-image-wrap {
    position: relative;
    background: #F7F7F7;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.aal-223922a2-product-img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
}

.aal-223922a2-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #E47911;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 1;
}

.aal-223922a2-card-body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.aal-223922a2-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

/* Rating */
.aal-223922a2-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.aal-223922a2-star {
    font-size: 16px;
    line-height: 1;
}

.aal-223922a2-star-full {
    color: #FFA41C;
}

.aal-223922a2-star-half {
    color: #FFA41C;
    opacity: 0.6;
}

.aal-223922a2-star-empty {
    color: #CCCCCC;
}

.aal-223922a2-rating-num {
    font-size: 13px;
    color: #555;
    margin-left: 4px;
}

/* Price */
.aal-223922a2-price {
    font-size: 20px;
    font-weight: 700;
    color: #B12704;
    margin-bottom: 8px;
}

.aal-223922a2-description {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 16px 0;
    flex: 1;
}

/* Product Button */
.aal-223922a2-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #FF9900;
    color: #111111;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
    text-align: center;
    margin-top: auto;
}

.aal-223922a2-product-btn:hover {
    background-color: #E88B00;
    color: #111111;
    text-decoration: none;
}

/* Disclosure */
.aal-223922a2-disclosure {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 12px 0 0 0;
    padding-top: 12px;
    border-top: 1px solid #E0E0E0;
}
