.safe-product-box {
    border: 2px solid #ffee58;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 400px;
    font-family: Arial, sans-serif;
}

.safe-product-image {
    text-align: center;
    margin-bottom: 15px;
}

.safe-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.safe-product-title {
    color: #333;
    font-size: 1.4em;
    margin: 0 0 15px 0;
    text-align: center;
    font-weight: bold;
}

.safe-product-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.safe-product-bullets li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.safe-product-bullets li:before {
    content: "✓";
    color: #ffee58;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.safe-product-bullets li:last-child {
    border-bottom: none;
}

.safe-product-price {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
    padding: 10px;
    background: #fff9c4;
    border-radius: 5px;
}

.safe-product-actions {
    text-align: center;
}

.safe-product-button {
    display: inline-block;
    background: #ffee58;
    color: #333 !important;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid #ffee58;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.safe-product-button:hover {
    background: #ffffff;
    color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.safe-product-info-link {
    margin-top: 5px;
}

.safe-product-info-link a {
    color: #666;
    text-decoration: none;
    font-size: 0.9em;
}

.safe-product-info-link a:hover {
    text-decoration: underline;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .safe-product-box {
        margin: 15px 0;
        padding: 15px;
    }
    
    .safe-product-title {
        font-size: 1.2em;
    }
    
    .safe-product-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}