.billing-cycles {
    margin-top: 10px;
    text-align: left;
}

.billing-cycles .cycle-line {
    font-size: 14px;
    margin-bottom: 4px;
}

.billing-cycles .cycle-price {
    color: #0657ff;
    font-weight: bold;
    margin-left: 6px;
}



.blue-ticks li {
    list-style: none;
    position: relative;
    padding-left: 26px; /* απόσταση του κειμένου */
    margin-bottom: 3px;
}

.blue-ticks li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #007bff; /* ΜΠΛΕ ΧΡΩΜΑ */
    font-weight: 700;
    font-size: 16px;
}




/* LAGOM-LIKE PRODUCT CARD, 2 PER ROW WITH SIDEBAR */

/* Card styling */
#order-standard_cart .products .product {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e6e6e6;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
}

/* Header */
#order-standard_cart .products .product header {
    background: transparent !important;
    border: 0 !important;
    margin: 0 0 8px 0;
    padding: 0;
}
#order-standard_cart .products .product header span {
    font-size: 20px;
    font-weight: 600;
}

/* Description */
#order-standard_cart .products .product .product-desc {
    width: 100% !important;
    float: none !important;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
}

/* Price */
#order-standard_cart .products .product .price {
    font-size: 24px !important;
    font-weight: 700;
    color: #0657ff;
}

/* Button */
#order-standard_cart .products .product .btn-order-now {
    width: 55%;
    padding: 11px 16px;
    font-size: 14px;
    border-radius: 999px;
    background: #007bff !important;
    border-color: #0657ff !important;
}

/* Footer layout */
#order-standard_cart .products .product footer {
    float: none !important;
    width: 100% !important;
    text-align: center !important;
}
/* ----------------------------------------------------
   LAGOM-LIKE HOVER MOTION EFFECTS
----------------------------------------------------- */

/* Card hover effect (lift + stronger shadow) */
#order-standard_cart .products .product {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#order-standard_cart .products .product:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

/* Button hover animation (smooth grow + brighter color) */
#order-standard_cart .products .product .btn-order-now {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

#order-standard_cart .products .product .btn-order-now:hover {
    transform: scale(1.05);
    background-color: #0069e6 !important;
}
/* Center product title */
#order-standard_cart .products .product header span {
    display: block;
    text-align: center !important;
    width: 100%;
}
/* ----------------------------------------------------
   MAKE ALL TEXT INSIDE PRODUCT BOX BIGGER (Lagom style)
----------------------------------------------------- */

/* Title bigger */
#order-standard_cart .products .product header span {
    font-size: 24px !important;
}

/* Description bigger */
#order-standard_cart .products .product .product-desc {
    font-size: 16px !important;
    line-height: 1.55;
}

/* Price bigger */
#order-standard_cart .products .product .price {
    font-size: 30px !important;
}

/* Button text bigger */
#order-standard_cart .products .product .btn-order-now {
    font-size: 16px !important;
}
/* ----------------------------------------------------
   CENTER ALL TEXT INSIDE PRODUCT BOX
----------------------------------------------------- */

#order-standard_cart .products .product {
    text-align: left !important;
}

#order-standard_cart .products .product .product-desc {
    text-align: left  !important;
}

#order-standard_cart .products .product .product-pricing {
    text-align: center  !important;
}

#order-standard_cart .products .product footer {
    text-align: center  !important;
}

