/* Add custom CSS styles below */ 
.store-info p {
    max-width: 245px;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgba(31, 31, 31, 1);
    color: rgba(31, 31, 31, var(--tw-text-opacity, 1));
    text-align
Describes how inline contents of a block are horizontally aligned if the contents do not completely fill the line box.

Widely available across major browsers (Baseline since January 2018)
Learn more

Don't show
: center;
}
body {
    background-color: #f5f5dc !important; /* لون بيج ناعم */
}
.main-content, .product-details {
    background-color: #f5f5dc !important;
}
/* لون العناوين (الكحلي) */
h1, h2, h3, .product-title {
    color: #001f3f !important; /* لون كحلي */
}
/* تخصيص زر "أضف للسلة" */
.btn-primary, .add-to-cart-btn {   background-color: #2ecc71 !important; /* لون أخضر تفاحي */
    border-color: #27ae60 !important;
    color: #ffffff !important;
    font-weight: bold;
}
/* لون السعر */
.product-price {
    color: #001f3f !important;
    font-size: 1.5rem;
}
/* إزالة الظلال الزائدة لجعل التصميم Pure */
.card {
    box-shadow: none !important;
    border: 1px solid #e0e0e0;
}

/* تحسين شكل الصور لتكون واضحة */
.product-image {
    transition: transform 0.3s ease;
}
.product-image:hover {
    transform: scale(1.05); /* تأثير تكبير بسيط عند المرور بالماوس */
}