.elementor-582 .elementor-element.elementor-element-43c21776{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-6da2a24c *//* ===== PRODUCT CARD STYLING ===== */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 320px;
    margin: auto;
    transition: all 0.3s ease-in-out;
    font-family: 'Open Sans', sans-serif;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ===== PRODUCT IMAGE ===== */
.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ===== PROS & CONS SECTION ===== */
.pros-cons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #333;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li::before {
    content: "✔";
    color: #2ecc71;
    margin-right: 8px;
}

.cons li::before {
    content: "✘";
    color: #e74c3c;
    margin-right: 8px;
}

/* ===== BUTTONS ===== */
.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.shop-button {
    background: #E91E63;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.shop-button:hover {
    background: #c2185b; /* Darker shade for hover */
    color: white; /* Ensure text stays white on hover */
}

/* FIX: Keep text visible when clicking or focusing */
.shop-button:active,
.shop-button:focus {
    background: #c2185b;
    color: white;
    outline: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .product-card {
        max-width: 600px;
        padding: 15px;
    }
}/* End custom CSS */