/* Importing fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

/* Global styles */
* {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Main layout */
.container {
    padding: 4rem 1rem 2.3rem;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}

.static-banners .container,
.social-banner .container,
.discount-banner .container,
.store-location .container {
    padding-left: 0;
    padding-right: 0;
}

/* Screen loader with animation */
.fullscreen-loader {
    background: linear-gradient(135deg, #f3f7fc 0%, #e8eef6 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    animation: fadeIn 0.5s ease-in;
}

#fullscreen-loader > span {
    color: #548DD4;
    font-size: 2rem;
    animation: pulseText 1.5s infinite ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseText {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Navigation with glassmorphism */
.main-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    width: 96%;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.5, 0.52, 0.5, 0.52);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.main-navbar:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.main-navbar .logo img {
    height: 80px;
    transition: transform 0.3s ease;
}

.main-navbar .logo img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .main-navbar .logo img {
        height: 60px;
    }
}

/* Hero section with parallax effect */
.banners-slider {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* إزالة البطانة من الكونتينر داخل السلايدر */
.banners-slider .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* جعل السلايدر ومكوناته بعرض الشاشة الكامل */
.banners-slider .swiper-container,
.banners-slider .banners-slider-wrapper,
.banners-slider .banners-slider-single {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* جعل الصورة داخل السلايدر تملأ العرض الكامل */
.banners-slider img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important; /* إزالة الزوايا الدائرية */
    margin: 0 !important;
}

/* إزالة الهوامش الجانبية للـ swiper-slide */
.banners-slider .swiper-slide {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.banners-slider .banners-builder-single,
.banners-slider .banners-builder-single-wrapper {
    height: 100vh;
    position: relative;
}

.banners-slider img:hover {
    transform: scale(1.03);
}

.banners-builder-overlay-center {
    background:38: linear-gradient(180deg, rgba(1, 3, 17, 0.8) 0%, rgba(1, 3, 17, 0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banners-slider-wrapper h1 {
    line-height: 78px;
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out;
}

.banners-slider-wrapper p {
    line-height: 36px;
    font-size: 1.25rem;
    color: #fff;
    animation: slideInUp 1s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.banners-builder-single-content-informations-button-icon-wrapper {
    background: linear-gradient(45deg, #548DD4, #7BA8E0);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banners-builder-single-content-informations-button-icon-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(84, 141, 212, 0.4);
}

.banners-slider-swiper-actions-prev,
.banners-slider-swiper-actions-next {
    display: none !important;
}

.banners-builder-single-content-informations-button-text-first {
    line-height: 20px !important;
    color: #fff;
}

.custom-slider .swiper-pagination-bullet {
    border: 2px solid #ebebeb;
    background: transparent;
    transition: all 0.3s ease;
}

.custom-slider .swiper-pagination-bullet-active {
    background: #548DD4 !important;
    border-color: #548DD4 !important;
    transform: scale(1.2);
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Fixed banners */
@media (max-width: 640px) {
    .static-banners .grid {
        grid-template-columns: 1fr;
    }
}

/* Product card with hover effects */
.product-card {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-card-content-media {
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.product-card-content-media img {
    transition: transform 0.4s ease;
}

.product-card-content-media:hover img {
    transform: scale(1.08);
}

.s-count-down-wrapper {
    height: 20px;
    background: rgba(84, 141, 212, 0.1);
    border-radius: 4px;
}

.product-card-content-media-discount {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    padding: 0.5rem;
    background: linear-gradient(45deg, #E23535, #FF6B6B);
    color: #fff;
    border-radius: 6px;
}

.product-card-content-media-discount-icon {
    color: #fff;
    margin-left: 0;
}

.product-card-content-meta-pricing {
    margin-bottom: 40px;
}

.product-card-content-meta-pricing-current {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #2c3e50;
}

html:not(.dark) .product-card-actions-add-to-cart {
    color: #3D3D3D;
    border: 2px solid #3D3D3D80;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-card-actions-add-to-cart-label {
    font-size: 15px;
}

html:not(.dark) .product-card-actions-add-to-cart:hover {
    color: #fff;
    background: #548DD4;
    border-color: #548DD4;
    transform: translateY(-2px);
}

html:not(.dark) .product-card-content-meta-pricing-current-discounted-percentage {
    color: #E23535;
    border: 1px solid #E23535;
    padding: 4px 8px;
    border-radius: 4px;
}

html:not(.dark) .product-card-actions-wishlist {
    color: #3D3D3D;
    transition: color 0.3s ease;
}

html:not(.dark) .product-card-actions-wishlist:hover {
    color: #E23535;
}

.product-details-meta-subtitle {
    background: linear-gradient(45deg, #518BD0, #7BA8E0);
    color: white;
    border-radius: 14px;
    padding: 3px 14px;
    font-size: 14px;
    width: max-content;
    display: inline-block;
}

/* Special offers */
.special-offers {
    direction: ltr;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
}

.enhanced-products-slider .swiper-container {
    direction: rtl !important;
}

/* Blue fixed banners */
.social-banner-content-actions-button-text,
.social-banner-content-social-button-text {
    margin-bottom: 0;
    color: #fff;
    background: linear-gradient(45deg, #548DD4, #7BA8E0);
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.social-banner-content-actions-button-text:hover,
.social-banner-content-social-button-text:hover {
    transform: translateY(-3px);
}

.discount-banner-content-actions {
    gap: 3.5rem;
}

.discount-banner-content-heading-title,
.discount-banner-content-actions h4,
.s-count-down-item-value,
.s-count-down-item-label {
    color: white !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.s-count-down-list.s-count-down-boxed .s-count-down-item {
    background: none !important;
    border: none !important;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Store location */
.store-location iframe {
    max-width: 100%;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(10px); /* تأثير زجاجي */
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* أعمدة متجاوبة */
    gap: 2rem;
    border-top: 1px solid rgba(84, 141, 212, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

footer h2 {
    color: #548DD4;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 8px;
}

footer h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #548DD4, #7BA8E0);
    transition: width 0.3s ease;
}

footer h2:hover::after {
    width: 100px;
}

.footer-meta .logo {
    height: 7rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-meta .logo:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.footer-meta ul {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-meta ul a {
    color: #3D3D3D;
    font-size: 1rem;
    position: relative;
    padding-right: 12px;
    transition: all 0.3s ease;
}

.footer-meta ul a::before {
    content: '→';
    position: absolute;
    right: 0;
    color: #548DD4;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-meta ul a:hover {
    color: transparent;
    background: linear-gradient(45deg, #548DD4, #7BA8E0);
    background-clip: text;
    -webkit-background-clip: text;
    transform: translateX(8px);
}

.footer-meta ul a:hover::before {
    opacity: 1;
    transform: translateX(-5px);
}

.footer-meta .social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 1rem;
    flex-direction: row-reverse;
}

.footer-meta .social-links li {
    background: rgba(84, 141, 212, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-meta .social-links li:hover {
    transform: scale(1.2) rotate(5deg);
    background: rgba(84, 141, 212, 0.3);
    box-shadow: 0 4px 15px rgba(84, 141, 212, 0.4);
}

.footer-contact a i {
    color: #548DD4;
    font-size: 1.2rem;
    margin-left: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-contact a i:hover {
    color: #3D3D3D;
    transform: scale(1.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer {
        padding: 3rem 1rem;
        grid-template-columns: 1fr; /* عمود واحد على الموبايل */
    }
    .footer-meta ul {
        align-items: center;
        text-align: center;
    }
    .footer-meta .social-links {
        justify-content: center;
    }
    .footer-meta .logo {
        margin: 0 auto;
    }
}

/* WhatsApp button with enhanced animation */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #34E07A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 90px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Popup with scale animation */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: linear-gradient(135deg, #548DD4 0%, #7BA8E0 100%);
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    color: #231F1E;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    animation: popupScale 0.4s ease forwards;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
}

.popup-close:hover {
    transform: rotate(90deg);
}

.discount-code-box {
    background: #fff;
    color: #548DD4;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.copy-button {
    background: #fff;
    color: #548DD4;
    border: 2px solid #548DD4;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: #548DD4;
    color: white;
    transform: translateY(-2px);
}

@keyframes popupScale {
    to { transform: scale(1); }
}

/* Store features */
@media (max-width: 768px) {
    .store-features-style-1-content-wrapper {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
    }
    .store-features-style-1-content-single {
        flex: 1;
        min-width: auto;
        transition: transform 0.3s ease;
    }
    .store-features-style-1-content-single:hover {
        transform: scale(1.05);
    }
}

/* Table styles with hover animation */
table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 15px 20px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

th {
    background: linear-gradient(45deg, #2c3e50, #4a6278);
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}

td {
    color: #333;
}

tr:nth-child(even) {
    background: #f8f9fa;
}

tr:hover {
    background: #e9ecef;
    transition: background 0.3s ease;
}

@media (max-width: 600px) {
    th, td {
        padding: 10px;
        font-size: 14px;
    }
}

/* Typography with smooth scaling */
h1 {
    font-size: 2.75rem;
    margin: 15px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

h1:hover {
    color: #548DD4;
}

h2 {
    font-size: 1.5rem;
    margin: 10px;
    color: #2c3e50;
}

h3, h4, h5 {
    margin: 7px;
    color: #3D3D3D;
}

p {
    text-align: justify;
    color: #4a6278;
    line-height: 1.6;
}

/* Blog styles with animated borders */
.lg\:basis-\[calc\(70\%-32px\)\] {
    background: #fff;
    border-radius: 19px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.lg\:basis-\[calc\(70\%-32px\)\]:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

div .blog-single ul li {
    list-style-type: circle;
    margin: 10px 0;
}

.blog-single-content-description h2 {
    font-size: 1.5rem;
    margin: 10px;
    border-right: 5px solid #4268ff;
    padding: 10px;
    background: linear-gradient(90deg, #f2f9ff 0%, #ffffff 100%);
    transition: border-color 0.3s ease;
}

.blog-single-content-description h2:hover {
    border-color: #548DD4;
}

.blog-single-content-description li {
    margin: 10px;
    padding: 4px;
    list-style: inside;
    transition: color 0.3s ease;
}

.blog-single-content-description li:hover {
    color: #548DD4;
}

.blog-single-content-description h3 {
    border-right: 5px solid #ff42f3;
    padding-right: 10px;
    margin: 20px 23px 20px 20px;
    transition: border-color 0.3s ease;
}

.blog-single-content-description h3:hover {
    border-color: #548DD4;
}

.blog-single-related-single-image {
    width: 44%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.blog-single-related-single-image:hover {
    transform: scale(1.05);
}

.marquee {
    background: linear-gradient(45deg, #11407b, #1e5ca0);
    color: #fff;
    padding: 10px 0;
}

section .container {
    padding: 0px !important;
    margin-bottom: 16px !important;
}

.bottom-\[6rem\] {
    bottom: 11rem !important;
}

.md\:bottom-6 {
    bottom: 5.5rem !important;
}

.marquee {
    background: linear-gradient(45deg, #11407b, #1e5ca0) !important;
    color: #fff;
    padding: 10px 0;
}

.whatsapp-button {
    position: fixed;
    bottom: 93px !important;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25D366, #34E07A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.banners-slider {
    width: 100%;
    max-width: 100%;
    /* margin: 29px; */
    padding-top: 80px !important;
    overflow: hidden;
}

.social-button h4 {
    color: #ffffff !important;
}

@media (max-width: 450px) {
.product-card {
	/* padding: 24px; */
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card {
	padding: 8px;
}

.product-card-content-meta-pricing-current-discounted-meta {
	display: none;
}

.product-card-content-meta-subtitle {
	display: none;
}
.product-card-content-media {
	margin-bottom: 16px;

}
.product-card-content-meta-pricing {
	 margin-bottom: 3px; 
}
.product-card-content-meta-pricing-current-discounted-meta {
	display: none;
}
a {
	text-align: center;
}

* {
/* font-size: 11px; */
}
.product-card-actions {
font-size: 5px; 
}
}
.marquee {
  background: #74c2e7 !important;
}