
.love-it-shop-it-block {
    margin: 0 0 20px 0;
    border: none;
    padding: 15px;
    background: #FFFFFF;
}

.love-it-shop-it-heading {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.love-it-shop-it-heading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23E91E63"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') no-repeat center;
    background-size: contain;
    animation: pulse 1.5s ease-in-out infinite;
}

.love-it-shop-it-heading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230073aa"><path d="M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0020 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z"/></svg>') no-repeat center;
    background-size: contain;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.love-it-shop-it-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .love-it-shop-it-block {
        padding: 10px;
        margin: 0 0 20px 0;
    }
    
    .love-it-shop-it-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .love-it-shop-it-heading {
        font-size: 20px;
    }
    
    .shop-it-placeholder,
    .love-it-placeholder {
        padding: 20px;
    }
}

.love-it-column,
.shop-it-column {
    flex: 1;
    text-align: center;
}

.love-it-image {
    display: block;
    margin: 0 auto;
}

.love-it-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    margin: 0 auto;
}

/* Caption styling matching reference */
.love-it-caption {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    display: block;
    clear: both;
    font-size: 13px;
    font-style: normal;
    color: #000;
    background-color: #F5F5F5;
    padding: 8px 12px;
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.love-it-caption a {
    text-decoration: none;
    color: #000;
}

.love-it-caption a:hover {
    text-decoration: underline;
}

.shop-it-product {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #0073aa;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.shop-it-product:hover {
    border-color: #005a87;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.shop-it-product a.product-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.shop-it-product .product-image,
.shop-it-product .product-title,
.shop-it-product .product-price,
.shop-it-product .shop-it-button {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .shop-it-product {
        padding: 15px;
    }
}

.shop-it-product .product-image {
    margin-bottom: 15px;
}

.shop-it-product .product-image img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.shop-it-product .product-image,
.shop-it-product .product-image * {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.shop-it-button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    background: #0073aa;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shop-it-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.shop-it-button:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

.shop-it-button:hover::before {
    left: 100%;
}

.shop-it-product .product-title a,
.shop-it-product .product-price a {
    text-decoration: none;
    color: inherit;
}

.shop-it-product .product-title a:hover {
    text-decoration: underline;
}

.shop-it-product .product-image a {
    display: block;
}

.shop-it-placeholder,
.love-it-placeholder {
    padding: 40px;
    border: 2px dashed #ddd;
    color: #666;
    background: #f9f9f9;
    border-radius: 8px;
}
