/* Target the specific feature section */
.tp-feature-area .row.gx-1.gy-1.gy-xl-0 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    margin: 0 !important;
}

/* Reset Bootstrap column behavior for this section */
.tp-feature-area .row.gx-1.gy-1.gy-xl-0 [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure feature items maintain their styling */
.tp-feature-area .tp-feature-item {
    display: flex !important;
    align-items: flex-start !important;
    height: 100% !important;
    padding: 1rem !important;
}

/* Responsive design */
@media (max-width: 1200px) {
    .tp-feature-area .row.gx-1.gy-1.gy-xl-0 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .tp-feature-area .row.gx-1.gy-1.gy-xl-0 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Change icon color to #bc0101 */
.tp-feature-area .tp-feature-icon span {
    color: #bc0101 !important;
}

.tp-feature-area .tp-feature-icon svg {
    color: #bc0101 !important;
}

/* More specific selector if needed */
.tp-feature-area .tp-feature-icon span[style*="color"] {
    color: #bc0101 !important;
}

/* النصوص */
.tp-banner-content-4,
.tp-banner-content-4 a,
.tp-banner-content-4 h3,
.tp-banner-content-4 h3 a {
  color: #fff !important;
}

/* الزرار */
.tp-banner-btn-4 .tp-btn,
.tp-banner-btn-4 .tp-btn-border {
  color: #fff !important;
  border-color: #fff !important;
}

/* الأيقونة جوا الزرار */
.tp-banner-btn-4 .tp-btn svg path {
  stroke: #fff !important;
}

/**/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
    color: #FFF;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;

}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float .tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #333;

}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
        padding-bottom: 70px;

    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
        padding-bottom: 70px;

    }
    
    .whatsapp-float .tooltip {
        font-size: 12px;
        right: 60px;
        padding-bottom: 70px;

    }
}



/* Hide the entire action wrapper that contains quantity selector and add to cart */
.tp-product-details-action-item-wrapper {
    display: none !important;
}

/* Style the contact us button to match the original buy now button */
.tp-product-details-contact-us-btn {
    background-color: #bc0101;
    border: 1px solid #bc0101;
    color: #ffffff;
    font-weight: 500;
    border-radius: 6px;
    padding: 15px 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.tp-product-details-contact-us-btn:hover {
    background-color: #bc0101;
    border-color: #bc0101;
    color: #ffffff;
    text-decoration: none;
}

/* Ensure the button takes full width like the original */
.tp-product-details-contact-us-btn.w-100 {
    width: 100% !important;
}

/* Make logo bigger */
.logo img {
    height: 80px !important; /* Increased from 100px */
    width: auto; /* Maintains aspect ratio */
    max-width: 100%; /* Ensures it doesn't overflow container */
}

/* Alternative: If you want even bigger */
.logo img {
    height: 80px !important;
    width: auto;
    max-width: 100%;
}

/* Responsive approach - different sizes for different screens */
.logo img {
    height: 80px !important; /* Mobile/small screens */
    width: auto;
    max-width: 100%;
    padding-left:5px; !important
    margin-left:5px; !important
}

@media (min-width: 768px) {
    .logo img {
        height: 80px !important; /* Tablets */
      padding-left:5px; !important
      margin-left:5px; !important      
    }
}

@media (min-width: 1200px) {
    .logo img {
        height: 80px !important; /* Desktop */
    }
}

/* If you need to adjust the logo container as well */
.logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers the logo horizontally */
}

#lg-download {
    display: none !important;
}