/* Amazon Products Grid */
.amazon-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
    padding: 0 10px;
} 
/* Single Product Card */
.amazon-product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amazon-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper */
.product-image-wrapper {
    height: 220px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.amazon-product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* Content Area */
.product-content {
    padding: 16px;
}

/* Title */
.product-title {
    margin: 0 0 12px;
    font-size: 1.15em;
    line-height: 1.35;
    color: #111;
}

/* Price */
.product-price {
    font-size: 1.5em;
    font-weight: 700;
    color: #c45500;
    margin: 8px 0;
}

/* Description */
.product-description {
    font-size: 0.95em;
    color: #444;
    line-height: 1.5;
    max-height: 176px;
    overflow: hidden;
    margin-bottom: 16px;
}

/* Buy Button */
.amazon-buy-button {
    display: inline-block;
    background: #4DA3FF;
    color: #0f1111;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}.amazon-cta {  display: block;  width: 100%;  background-color: #ffc107;  color: #000;  text-decoration: none;  padding: 18px;  border-radius: 10px;  font-weight: 700;  font-size: 1.1rem;  text-align: center;  margin: 30px 0 10px;  transition: background-color 0.2s ease, transform 0.1s ease;}.amazon-cta:hover {  background-color: #ffb300;  transform: translateY(-1px);}.amazon-cta-trust {  text-align: center;  font-size: 0.85rem;  color: #555;}

.amazon-buy-button:hover {
    background: #28A745;
}.thumbnail-gallery {    scrollbar-width: thin;}.thumbnail-gallery::-webkit-scrollbar {    height: 6px;}.thumbnail-gallery::-webkit-scrollbar-thumb {    background: #ccc;    border-radius: 3px;}.thumbnail:hover {    border-color: #f39c12 !important;    transform: scale(1.05);}

/* Responsive - stack on mobile */
@media (max-width: 768px) {
    .amazon-products-grid {
        grid-template-columns: 1fr;
    }
}
.thumbnail_slider {
    max-width: 700px;
    margin: 30px auto;
}
.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    overflow: hidden;
    transition: .2s;
    border-width: 2px !important;
    margin: 0 4px;
}
.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
    box-shadow: 2px 3px 8px #000000a3;
    border: 3px solid #f39c12;
}
.splide__slide img {
    width: auto;
    height: auto;
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.splide__arrow {
    background: rgba(0,0,0,0.65);
    color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 24px;
    opacity: 0.9;
}
.splide__arrow:hover {
    opacity: 1;
}

