/* ==========================================================================
   Hayeet Almadina - About Us Section (Bulletproof Layout)
   ========================================================================== */

/* --- Container --- */
/* إخفاء السعر في صفحة السلة، المنتج، و "Frequently Bought Together" */
.product-price, .price, .amount, .cart-price, .subtotal, .checkout-price {
    display: none !important;
}

/* إخفاء تسمية الوزن من السلة */
.cart-product-info small, .cart-product-weight {
    display: none !important;
}
.hayeet-about-container {
    max-width: 1150px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* --- Typography --- */
.hayeet-kicker {
    color: var(--color-brand, #b38e44);
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.hayeet-about-title {
    font-size: 36px !important;
    font-weight: 800;
    color: var(--color-heading, #253D4E);
    line-height: 1.25;
}

.hayeet-about-desc {
    color: var(--color-text, #7E7E7E);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- STRICT Side-by-Side Layout --- */
.hayeet-stats-list-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: nowrap !important; /* CRITICAL: Prevents the list from dropping down */
}

/* --- Stats Box --- */
.hayeet-stats-box {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px 20px;
    flex: 0 0 240px; /* Locks the box width */
    margin: 0 !important;
}

.hayeet-progress {
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.hayeet-progress .progress-bar {
    background-color: var(--color-brand, #b38e44);
    border-radius: 4px;
}

/* --- Bullet List (Palm Trees) --- */
.hayeet-about-list {
    flex: 1 1 auto;
    margin: 0 !important;
    padding: 0 !important;
}

.hayeet-about-list li {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-heading, #253D4E);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.hayeet-palm-icon {
    font-size: 1.25rem;
    margin-right: 12px;
    line-height: 1;
}

/* --- Custom Button --- */
.hayeet-btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-heading, #253D4E);
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hayeet-btn-primary:hover {
    background-color: var(--color-brand, #b38e44);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Image Section --- */
.hayeet-image-section {
    position: relative;
    z-index: 1;
    height: 420px; 
}

.hayeet-about-img-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #f4f5f9;
    border-radius: 20px !important; /* Forces rounded borders */
    overflow: hidden !important; /* Crops the image inside the border */
}

.hayeet-main-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 20px !important;
    transform: scale(1.05); 
}

/* --- Floating Badge (No Circle, Huge 15) --- */
.hayeet-floating-badge {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px; 
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    z-index: 5;
    border: 1px solid rgba(179, 142, 68, 0.15);
}

.hayeet-badge-number {
    font-size: 4.5rem; /* Massive size */
    font-weight: 800;
    color: var(--color-brand, #b38e44);
    line-height: 1;
    margin-right: 15px;
}

.hayeet-badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text, #7e7e7e);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* --- Responsive Layout for Mobile --- */
@media (max-width: 992px) {
    .hayeet-stats-list-wrapper {
        flex-wrap: wrap !important; /* Allows wrapping ONLY on small screens */
        justify-content: center;
    }
    .hayeet-stats-box {
        flex: 1 1 100%;
        max-width: 350px;
    }
    .hayeet-image-section {
        height: 350px; 
    }
    .hayeet-floating-badge {
        left: 20px;
        top: auto;
        bottom: 20px;
        transform: none;
        padding: 20px 25px;
    }
    .hayeet-badge-number {
        font-size: 3.5rem;
    }
}



/* ==========================================================================
   Hayeet Almadina - Why Choose Us Section (Complete CSS)
   ========================================================================== */

.hayeet-features-section {
    background-color: transparent;
    padding: 60px 0;
}

/* --- Header & Spacing --- */
.hayeet-section-header {
    text-align: center;
    margin-bottom: 70px !important; /* Forces generous space above the boxes */
}

.hayeet-main-title {
    font-family: inherit;
    color: #b38e44; /* Standard Palmera Gold */
    font-weight: 700;
    margin-bottom: 15px;
}

.hayeet-sub-title {
    color: #888;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- Grid Layout (Centered and Constrained) --- */
.hayeet-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px; /* Keeps the boxes nicely grouped in the center */
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Feature Cards --- */
.hayeet-feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #b38e44;
    width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

/* Hover Effect: Lifts card, deepens shadow, changes border to Mint/Teal */
.hayeet-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-top-color: #9ACDBA; 
}

/* --- Card Typography & Hover Colors --- */
.hayeet-feature-card h3 {
    font-size: 1.25rem;
    color: #b38e44;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Hover Effect: Changes title text to Mint/Teal */
.hayeet-feature-card:hover h3 {
    color: #9ACDBA; 
}

.hayeet-feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- Icons (Strict sizing to prevent template stretching) --- */
.hayeet-feature-icon {
    width: 55px !important;
    height: 55px !important;
    flex: 0 0 55px; 
    margin: 0 auto 20px auto; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.hayeet-feature-icon img {
    width: 55px !important;
    height: 55px !important;
    max-width: 55px !important;
    max-height: 55px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .hayeet-features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .hayeet-section-header {
        margin-bottom: 50px !important; 
    }
    .hayeet-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .hayeet-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* --- RTL (Arabic) Support --- */
[dir="rtl"] .hayeet-feature-card {
    text-align: center;
}
/* إزالة أي خلفية أو حدود من الصور داخل حاوية التواصل الاجتماعي */
.mobile-social-icon a img {
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* التأكد من أن الرابط لا يضيف أي تأثيرات خلفية عند التحويم أو التركيز */
.mobile-social-icon a {
    background-color: transparent !important;
    border: none !important;
    text-decoration: none !important;
}


/*language switcher modifications */
.header-info>ul>li>ul li a {
    padding: 1px !important;
}