*{
    margin: 0px;
}
body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    background-color: #ededed;   
}
/* استدعاء خطوط  */
.bold-text {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700; /* Bold */
}
.medium-text {
    font-family: 'Tajawal', sans-serif;
    font-weight: 500; /* Medium */
}
.extralight-text {
    font-family: 'Tajawal', sans-serif;
    font-weight: 200; /* ExtraLight */
}
::-webkit-scrollbar{
    background-color: transparent;
    width: 10px;
}
::-webkit-scrollbar-thumb{
    background-color: #19c3f7;
    border-radius: 100px;
}


/* تنسيقات عامة للقائمة */
/* تنسيقات القائمة */
/* تنسيقات القائمة */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f3f4f6; /* رمادي فاتح */
    padding: 1rem 2rem;
    color: #6b7280; /* text-gray-500 */
    font-family: 'Tajawal', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    width: 150px;
}

.nav {
    display: flex;
    position: relative;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.nav-link {
    color: #6b7280; /* text-gray-500 */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: #1f2937; /* text-gray-800 */
}

.icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-icon, .profile-icon {
    cursor: pointer;
    position: relative;
}

.cart-svg, .profile-svg {
    width: 24px;
    height: 24px;
    fill: #6b7280; /* text-gray-500 */
    transition: transform 0.3s ease;
}

.cart-icon:hover .cart-svg, .profile-icon:hover .profile-svg {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e63946;
    color: #fff;
    font-size: 0.8rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger {
    display: none !important; /* إجبار الإخفاء على الشاشات الكبيرة */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001; /* لضمان الظهور */
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #1f2937; /* text-gray-800 */
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.btn--close {
    display: none;
    background: none;
    border: none;
    color: #1f2937; /* text-gray-800 */
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem;
}

/* استجابة الجوال */
@media (max-width: 767px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f3f4f6; /* رمادي فاتح */
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav.active {
        display: block;
    }

    .main-menu {
        flex-direction: column;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .nav-link {
        font-size: 0.875rem; /* text-sm */
        padding: 0.8rem;
        color: #6b7280;
    }

    .hamburger {
        display: flex !important; /* إجبار الظهور على الجوال */
    }

    .btn--close {
        display: block;
    }

    .icons {
        gap: 0.8rem;
    }

    .cart-svg, .profile-svg {
        width: 22px;
        height: 22px;
    }

    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.8rem 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .hamburger {
        width: 25px;
        height: 18px;
    }

    .hamburger span {
        height: 2.5px;
    }
}






.top-info .info-item {
    text-align: center;
}
.top-info .info-item span {
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
}
.top-info .info-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
    font-size: 20px;
}

.info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1e293b;
            font-size: 16px;
            transition: transform 0.2s ease;
        }
        .info-item svg {
            
            width: 40px;
            height: 40px;
            fill: #e7e7e700;
            transition: fill 0.2s ease;
        }

        .info-item p {
            margin: 0;
            font-weight: 500;
            order: 1; /* لجعل النص يأتي أولاً */
        }
        .info-item svg {
            order: 2; /* لجعل الأيقونة تأتي بعد النص */
        }


.hero {
    position: relative;
    text-align: center;
    width: 100vw;
    margin: 0;
    padding: 0;
    height: 565px;
    overflow: hidden;
    margin-bottom: 30px;
}
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
    direction: ltr;
}
.hero-content .slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content .slide span {
    font-size: 24px;
}
.hero-content .slide h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.hero-content .slide .subtext {
    font-size: 18px;
    margin-bottom: 20px;
}
.hero-content .slide .btn {
    background-color: #00c3ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}

.deals {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1850px;
    margin-bottom: 30px;
 
}
.deal {
    position: relative;
    flex: 1;
    height: 468px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
}
.deal:hover {
    transform: scale(1.02);
}
.deal.red {
    background-color: #e63946;
}
.deal.purple {
    background-color: #36d0ff;
}
.deal-content {
    z-index: 1;
    padding: 20px;
    text-align: center;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
}
.deal-content h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    left: 69px;
    top: 173px;
}
.deal-content p {
    margin: 10px 0;
    font-size: 20px;
    line-height: 1.5;
    left: 70px;
}
.zlabia{
    margin-top: 10px;
}
.deal .btn {
    background-color: #fff;
    color: #000000;
    padding: 9px 20px;
    border-radius: 26px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    right: 700px;
    bottom: 160px;
    font-weight: 500;
}
.deal .btn:hover {
    background-color: #f0f0f0;
}
.categories h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.category-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.category {
    text-align: center;
    transition: transform 0.3s ease;
}
.category:hover {
    transform: scale(1.1);
}
.category img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.category.sale img {
    border: 3px solid #8e2de2;
}
.category p {
    margin: 10px 0 0;
    font-size: 16px;
    color: #333;
}
.category.sale p {
    color: #8e2de2;
    font-weight: bold;
}

/* .footer .brands, .footer .newsletter {
    margin-bottom: 20px;
} */
.footer .brands img {
    width: 200px;
    margin: 0 10px;
    /* margin-bottom: 20px; */
    /* height: 503px; */
} 
 .footer .newsletter input {
    padding: 10px;
    border: none;
    border-radius: 20px;
    margin-right: 10px;
    display: inline-block;
}
.footer .newsletter button {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 20px;
    display: inline-block;
} 
.admin-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.admin-container h2 {
    text-align: center;
    color: #8e2de2;
    margin-bottom: 30px;
    font-size: 28px;
}
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.tab-button {
    background-color: #f0f0f0;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: background-color 0.3s, transform 0.1s;
}
.tab-button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}
.tab-button.active {
    background-color: #8e2de2;
    color: #fff;
}
.tab-content {
    display: none;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 10px;
}
.tab-content.active {
    display: block;
}
.admin-section {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.admin-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #8e2de2;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}
.form-group label {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}
.form-group input[type="file"] {
    padding: 5px;
}
.form-group button {
    background-color: #8e2de2;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.form-group button:hover {
    background-color: #6b1ab8;
}
.admin-section ul {
    list-style: none;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 5px;
}
.admin-section li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}
.admin-section li:hover {
    background-color: #f5f5f5;
}
.admin-section li:last-child {
    border-bottom: none;
}
.admin-section li button {
    background-color: #e63946;
    color: #fff;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.admin-section li button:hover {
    background-color: #c5303d;
}
.admin-section li img {
    border-radius: 5px;
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.stat-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.stat-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}
.stat-item p {
    font-size: 24px;
    font-weight: bold;
    color: #8e2de2;
    margin: 0;
}

/* أنماط لـ category.html */
.category-products {
    background-color: #fff;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
    margin-top: 20px;
    
}
.category-products h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e63946;
    background-color: #fff;
    padding: 10px;
    display: inline-block;
}
.products-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.product-item {
    background-color: #fff;
    padding: 10px;
    width: 200px;
    text-align: center;
    border: 1px solid #e5e7eb; /* هنا صار تعديل */
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.product-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 12px;
    background: #f9f9f9;
    transition: transform 0.3s ease;
}
.product-item img:hover {
    transform: scale(1.1);
}
.product-item p {
    margin: 5px 0;
    font-size: 14px;
}
.product-item .price {
    color: #8e2de2;
    font-weight: bold;
}

/* أنماط جديدة لـ product-details.html */
.product-details-container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.product-details-image {
    flex: 1;
    padding: 20px;
}
.product-details-image img {
    max-width: 60px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.product-details-info {
    flex: 1;
    padding: 20px;
}
.product-details-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}
.product-details-info #product-sku {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}
.product-details-info #product-price {
    font-size: 20px;
    color: #00a2d3;
    font-weight: bold;
    margin-bottom: 20px;
}
.product-details-info .product-info h4 {
    font-size: 16px;
    margin: 10px 0 5px;
}
.product-details-info .product-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.product-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
.product-actions .add-to-cart {
    background-color: #8e2de2;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.product-actions .add-to-cart:hover {
    background-color: #2c8fff;
}
.product-actions .buy-now {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.product-actions .buy-now:hover {
    background-color: #333;
}


/* ازالة الروابط من النص واللون الرابط */

a {
    text-decoration: none !important; /* لا يفضل استخدامه إلا كحل أخير */
    color: inherit;
}



.links {
    column-count: 2;
    text-align: right;
    /* opacity: 1; */
    /* transform: translateY(0px); */
    position: relative;
    height: 108px;
    width: 337px;
}

.title {
    position: relative;
    width: 175px;
    margin-top: 0px;
    right: 65px;
}

/* .map {
    width: max-content;
    position: relative;
    bottom: 170px;
} */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* إضافة لضمان احتساب الحدود والهوامش ضمن العرض */
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background-color: #ededed;
}

/* استدعاء خطوط */
.bold-text {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700; /* Bold */
}
.medium-text {
    font-family: 'Tajawal', sans-serif;
    font-weight: 500; /* Medium */
}
.extralight-text {
    font-family: 'Tajawal', sans-serif;
    font-weight: 200; /* ExtraLight */
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    width: 100%;
}
.header .logo {
    width: 150px;
}
.header .nav {
    display: flex;
    gap: 45px;
    transition: color 0.2s ease-in-out;
}
.header .nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    font-weight: bolder;
}
.header .nav a:hover {
    color: #32c4fd;
}
.header .icons {
    display: flex;
    gap: 10px;
}

/* Top Info */
.top-info {
    display: flex;
    justify-content: space-around;
    background-color: white;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    margin: 0px 20px 0px 20px;
    /* width: 100%; */
}
.top-info .info-item {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-size: 16px;
    transition: transform 0.2s ease;
}
.top-info .info-item svg {
    width: 40px;
    height: 40px;
    fill: #e7e7e700;
    transition: fill 0.2s ease;
}
.top-info .info-item p {
    margin: 0;
    font-weight: 500;
    order: 1;
}
.top-info .info-item svg {
    order: 2;
}

/* Hero */
.hero {
    position: relative;
    text-align: center;
    width: 100%; /* تغيير من 100vw إلى 100% */
    margin: 0;
    padding: 0;
    min-height: 300px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
    direction: ltr;
}
.hero-content .slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: self-start;
    background-size: cover;
    background-position: center;
    padding: 30px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    align-content: flex-start;
}
.hero-content .slide span {
    font-size: 24px;
}
.hero-content .slide h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Categories */
.categories {
    padding: 5px;
    text-align: center;
    background: white;
    margin: 5px 20px 0 20px;
}
.categories h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.category-list {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}
.category {
    text-align: center;
    transition: transform 0.3s ease;
}
.category img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.205);
}
.category p {
    margin: 10px 0 0;
    font-size: 16px;
    color: #333;
}


/* Media Queries للتجاوب */
@media screen and (max-width: 768px) {
    .header .nav {
        gap: 20px;
    }
   нень    .header .nav a {
        font-size: 12px;
    }
    .header .logo {
        font-size: 20px;
    }

    .top-info .info-item svg {
        width: 30px;
        height: 30px;
    }
    .top-info .info-item p {
        font-size: 14px;
    }
    .hero {
        min-height: 200px;
    }
    .hero-content .slide h1 {
        font-size: 24px;
    }
    .hero-content .slide span {
        font-size: 18px;
    }
    .hero-content .slide .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .deals {
        gap: 10px;
        padding: 0 5px;
    }
    .deal {
        min-height: 200px;
    }
    .deal-content h3 {
        font-size: 18px;
    }
    .deal-content p {
        font-size: 16px;
    }
    .deal .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .category img {
        width: 100px;
        height: 100px;
    }
    .category p {
        font-size: 14px;
    }
    .top-info .info-item p {
        font-size: 12px;
    }
    .top-info .info-item svg {
        width: 25px;
        height: 25px;
    }
    .hero {
        min-height: 150px;
    }
    .hero-content .slide h1 {
        font-size: 20px;
    }
    .hero-content .slide span {
        font-size: 16px;
    }
    .deal-content h3 {
        font-size: 16px;
    }
    .deal-content p {
        font-size: 14px;
    }
    .category img {
        width: 80px;
        height: 80px;
    }

    .map{
        display: inline-block;
    }
    /* .footer .newsletter input {
        width: 120px;
    }
    .footer .brands img {
        width: 80px;
    }
    .footer .links ul li a {
        font-size: 12px;
    }
    .map {
    width: max-content;
    position: relative;
    bottom: 170px;
    display: contents; */
}

/* 
.links{
    column-count: 2;
    text-align: center;
    height: 108px;
    width: 337px;
}  */

@media screen and (max-width: 480px) {
    
}

.footer {
    background-color: #101010;
    color: #fff;
    padding: 20px;
    margin-top: 30px;
    display: block;
    position: relative;
    height: auto;
    text-align: center;
}



.map {
    display: inline-block;

}

.brands {
    display: inline-block;
    text-align: center;
    margin: 20px;
} 

.shhada{
    display: inline-block;
    text-align: center;
    margin: 20px;
}

.newsletter{
    width: fit-content;
}

.para{
    width: auto;
}

.footer .shhada img {
    max-width: 200px;
}



 /* المنتجات المختارة */
.recommendations-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Tajawal', sans-serif;
}

.recommendations-container h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: right;
    color: #333;
}

.recommendations-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.recommendations-list {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.recommendations-list::-webkit-scrollbar {
    display: none;
}

.carousel-control {
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-control:hover {
    background: #e67e22;
}

.carousel-control.prev {
    left: -50px;
}

.carousel-control.next {
    right: -50px;
}

@media (max-width: 768px) {

    .carousel-control.prev {
        left: -30px;
    }

    .carousel-control.next {
        right: -30px;
    }
}


#checkout-form {
      background: #fff;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-top: 20px;
  }

  #checkout-form h3 {
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 10px;
      text-align: right;
      color: #333;
  }

  #checkout-form label {
      display: block;
      font-size: 14px;
      margin-bottom: 5px;
      text-align: right;
  }

  #checkout-form input {
      width: 100%;
      padding: 8px;
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-family: 'Tajawal', sans-serif;
  }



  .Checkout-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
}

.Checkout-left, .Checkout-right {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 0 10px;
}

.Checkout-left h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e63946;
    text-align: right;
}

.Checkout-right h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    text-align: right;
}

.Checkout-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}

.Checkout-item img {
    max-width: 80px;
    max-height: 80px;
    object-fit: cover;
    margin-left: 15px;
    border-radius: 4px;
}

.Checkout-item h3 {
    font-size: 16px;
    margin: 0;
    color: #333;
    flex: 1;
}

.Checkout-item p {
    font-size: 14px;
    color: #e63946;
    margin: 0 10px;
}

.Checkout-item span {
    font-size: 14px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
    text-align: right;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Tajawal', sans-serif;
}

.next-step {
    background-color: #8e2de2;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    margin-right: auto;
    display: block;
}

.next-step:hover {
    background-color: #6b1ab8;
}

.progress-steps {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.step {
    margin: 0 20px;
    text-align: center;
    position: relative;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.step-icon {
    position: absolute;
    left: -30px; /* معكوس بسبب RTL */
    top: 50%;
    transform: translateY(-50%);
    color: #4CAF50;
    font-size: 18px;
    font-weight: bold;
}

.step.active .step-title {
    color: #e63946;
}

.step.completed .step-title {
    color: #4CAF50;
}

.divider {
    width: 100%;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.order-summary p {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #333;
    margin: 5px 0;
}

.order-summary p span {
    font-weight: 500;
}

/* أنماط الهيدر */

.icons span {
    margin: 0 10px;
    font-size: 20px;
    color: #333;
}

/* أنماط التذييل */

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.map .title {
    font-size: 18px;
    margin-bottom: 15px;
}

.brands img {
    margin-bottom: 15px;
}



.newsletter button:hover {
    background-color: #d62835;
}

.newsletter .para {
    font-size: 12px;
    margin-top: 10px;
}

.shhada img {
    max-width: 150px;
}

/* استجابة للجوال */
@media (max-width: 768px) {
    .Checkout-container {
        flex-direction: column;
        padding: 10px;
    }

    .Checkout-left, .Checkout-right {
        margin: 10px 0;
    }

    .progress-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        margin: 10px 0;
    }

    .step-icon {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .map, .brands, .shhada {
        margin-bottom: 20px;
    }

    .newsletter input {
        width: 100%;
    }
}




/* ايقونة السلة */
.cart-icon {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px; /* تغيير إلى 'left: 20px' للظهور من اليسار */
    width: 60px;
    height: 60px;
    background-color: #2d8ae2; /* نفس لون الأزرار في الموقع */
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

.cart-icon:hover {
    transform: scale(1.1);
    background-color: #50b9ff;
}

.cart-svg {
    width: 35px;
    height: 35px;
    fill: #fff; /* لون الأيقونة، يمكنك تغييره */
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #e63946; /* لون العداد */
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}

/* Animation for cart icon appearance */
@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cart-icon.active {
    animation: slideIn 0.3s ease forwards;
}



/* زر اضافة للسلة لكل المنتجات */

.add-to-cart-btn {
    background: #40c6ff;
    color: #fff;
    font-size: medium;
    position: relative;
    /* margin-top: 10px; */
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
    flex: 1;
    text-align: center;
    width: auto;
    border: none;
    font-family: 'Tajawal';
}

.add-to-cart-btn:hover {
    background-color: #313131;
    color: white;
}

.add-to-cart-btn .fas {
    margin-right: 8px;
    font-size: 16px;
}

.add-to-cart-btn .btn-text {
    display: flex;
    align-items: center;
}

.cart-confirmation {
    position: fixed;
    bottom: 90%;
    right: 49%;
    background-color: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}

.sellers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.cart-icon.visible {
    right: 20px; /* تظهر من اليمين عند الإضافة */
    position: fixed;
    display: flex;
}

.cart-icon .fas {
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
}

#product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
/* تنسيقات صفحة السلة */
.cart-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    font-family: 'Tajawal', sans-serif;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item h3 {
    margin: 0;
    font-size: 18px;
}

.cart-item p {
    margin: 5px;
    color: #5999ff;
    font-weight: bold;
}

.cart-item button {
    background-color: #ef4444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 5px;
    margin-right: 5px;
}

.cart-item button:hover {
    background-color: #dc2626;
}

.checkout-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #5999ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.checkout-button:hover {
    background-color: #2563eb;
}
/* نهاية زر اضافة للسلة لكل المنتجات */


/* ================================================= */
/* نافذة منبثقة (#success-modal) */
/* ================================================= */

/* الخلفية الشفافة للنافذة */
#success-modal {
    /* الموضع والتغطية */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;

    /* العرض كـ flex لتوسيط المحتوى */
    display: none; /* مخفي افتراضيًا */
    display: flex;
    justify-content: center;
    align-items: center;

    /* الخلفية */
    background-color: rgba(0, 0, 0, 0.5);
}

/* ================================================= */
/* محتوى النافذة (#success-modal div) */
/* ================================================= */
#success-modal div {
    /* الموضع والحجم */
    position: relative; /* لدعم زر الإغلاق */
    width: 400px;
    max-width: 90%;
    padding: 20px;

    /* التنسيق */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;

    /* تأثير الظهور */
    animation: fadeIn 0.3s ease-in-out;
}

/* ================================================= */
/* زر الإغلاق */
#success-modal .close-btn {
    /* الموضع */
    position: absolute;
    top: 10px;
    right: 10px;

    /* التنسيق */
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
}

/* ================================================= */
/* تنسيق النصوص */
#success-modal h3 {
    /* التنسيق */
    color: #27ae60;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

#success-modal p {
    /* التنسيق */
    color: #333;
    font-size: 16px;
    margin: 0 0 15px 0;
}

/* ================================================= */
/* توافق الشاشات الصغيرة */
@media (max-width: 600px) {
    #success-modal div {
        width: 90%;
        padding: 15px;
    }

    #success-modal h3 {
        font-size: 18px;
    }

    #success-modal p {
        font-size: 14px;
    }
}

/* تأثير الظهور */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ======================================== قائمة المنتجات ============================================== */
/* منع التمرير في الخلفية عند فتح النافذة */
body.modal-open {
    overflow: hidden;
}
.Name {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    font-weight: 700;
    font-size: 20px;
    color: rgba(51, 51, 51, 1);
    text-align: right;
}
.contents {
    display: flex;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-left: auto;
    margin-right: 0;
    padding-right: 10px;
    margin-top: 15px;
    flex-direction: column;
}
/* .count-stroke {
    display: contents;
    border: #2183a1;
} */
/* عداد الكمية */
.count-stroke {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stepper {
    display: inline-flex;
    width: 57px;
    height: 45px;
    border: 1px solid rgba(226, 226, 226, 1);
    border-radius: 3px;
    margin-left: 5px;
    flex-direction: row-reverse;
}

.stepper-input {
    width: 30px;
    padding: 0;
    text-align: center;
    border: none;
    font-size: 14px;
    background: transparent;
}
.stepper-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f0f0f0;
    width: 30px;
    color: #5f5f5f;
}

.stepper-controls i {
    font-size: 12px;
    color: #333;
    cursor: pointer;
    padding: 3px 5px;
    transition: background 0.2s ease, color 0.2s ease;
}

.stepper-controls i:hover {
    background: #40c6ff;
    color: #fff;
}
/* عداد الكمية نهاية*/
.cart-group {
    display: flex;
}
.button-group {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: auto;
    margin-top: 37px;
    font-family: 'Tajawal';
    justify-content: space-between;
}
.wish-group{
    font-size: 22px;
    color: #303030;
    margin-left: 10px;
}
/* سلايدات المنتجات في الصفحة الرئيسية */
.best-sellers {
    width: calc(100% - 40px);
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    background-color: white;
    box-sizing: border-box;
}
.best-sellers h2 {
    margin-bottom: 20px;
}

.best-sellers h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #00bbf6;
    background-color: #fff;
    padding: 10px;
    display: inline-block;
}
 .sellers-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    
}
.seller-item img {
    object-fit: contain;
    border-radius: 8px;
    max-width: 270px;
    height: 250px;
    border-radius: 8px;
    transition: opacity 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease-out;
}


.seller-item img:hover {
    transform: scale(1.1);
}
.seller-item .sale {
    background-color: #e63946;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
}
.seller-item p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    font-size: 20px;
}



.seller-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    background-color: #fff;
    padding: 8px; /* تصغير الحشوة لتتناسب مع الحجم الأصغر */
    width: 160px; /* تصغير عرض الصندوق */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 25px; /* تقليل الهامش */
    border: 1px solid #00000012;
    border-radius: 10px;
}

.seller-item img:hover {
    opacity: 0.9;
}

.seller-item .price {
    color: #2e8fff;
    display: block;
    font-size: 20px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    margin-top: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

.category-carousel-card .price{
    color: #2e8fff;
    font-weight: bold;
    margin: 10px 0;
}
.seller-item a {
    text-decoration: none;
    color: #333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
/* ##################################################################   Swiper  ##################################################################################### */
.swiper {
    width: 100%;
    overflow: hidden; /* إخفاء الشرائح خارج الحاوية */
    direction: rtl;
    /* height: 480px; */
}
/* أزرار التنقل */
.swiper-button-next,
.swiper-button-prev {
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* نقاط التنقل */
.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background: #e91e63;
}

/* تحميل */
#loading {
    margin: 20px 0;
    font-size: 16px;
    color: #333;
    text-align: center;
}
.swiper-wrapper{
    max-height: 450px;
    gap :20px;
}
/* أزرار التنقل */
.swiper-button-prev-sellers, .swiper-button-next-sellers,
.swiper-button-prev-category, .swiper-button-next-category {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.swiper-button-prev-sellers:hover, .swiper-button-next-sellers:hover,
.swiper-button-prev-category:hover, .swiper-button-next-category:hover {
    background: var(--accent-color);
}

.swiper-button-prev-sellers:after, .swiper-button-next-sellers:after,
.swiper-button-prev-category:after, .swiper-button-next-category:after {
    font-size: 20px;
}

/* نقاط التنقل */
.best-sellers .swiper-pagination,
.category-sellers .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

.best-sellers .swiper-pagination-bullet,
.category-sellers .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #ccc; /* إضافة حدود للوضوح */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* إضافة ظل خفيف */
    opacity: 1;
    margin: 0 6px; /* زيادة المسافة بين الدوائر */
    transition: all 0.3s ease;
}

.best-sellers .swiper-pagination-bullet-active,
.category-sellers .swiper-pagination-bullet-active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* ظل أقوى للدائرة النشطة */
}

/* التصميم المتجاوب */
@media (min-width: 360px) and (max-width: 769px) {
    .seller-item {
        width: 190px !important;
        height: 380px !important; 
    }
    
    .best-sellers {
        width: auto;
        margin: 20px auto;
        padding: 12px;
        text-align: center;
        background-color: white;
        box-sizing: border-box;
        height: 500px;
    }
    .Name {
    font-weight: 700;
    font-size: 15px;
}
    .seller-item .price {
    font-size: 15px;
}
    .seller-item img{
        max-width: 120px;
        max-height: 180px;
    }
    .cart-text {
    display: none;  
}

    /* .swiper-wrapper{
        max-height: 450px;
        gap: 10px;
    } */
    .swiper {
        padding: 0 5px; /* تقليل الحشوة */
    }
}

@media (min-width: 770px) and (max-width: 1023px) {
    .seller-item {
        width: calc(100vw - 40px); /* عرض يتناسب مع الشاشة */
        margin: 0 5px;
    }
    .swiper {
         padding: 0 5px; /* تقليل الحشوة */
    }
    svg.svg-inline--fa.fa-cart-shopping {
    display: none;
    }
}

@media (min-width: 1024px) {
    .seller-item {
        width: 240px;
        margin: 0 10px;
    }
    .swiper {
        padding: 0 15px;
    }
    svg.svg-inline--fa.fa-cart-shopping {
    display: none;
    }
}

@media (min-width: 1440px) {
    .seller-item {
        width: 240px;
        margin: 0 10px;
    }
        svg.svg-inline--fa.fa-cart-shopping {
    display: none;
    }
    .swiper {
        padding: 0 15px;
    }
}
/* ##################################################################  END Swiper  ##################################################################################### */

/* ======================================== نهاية قائمة المنتجات  ============================================== */




/* حالة المنتج */
.status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff4757;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 2;
    font-weight: bold;
}

/*########################################################### PD Page عرض صور إضافية للمنتج #################################################################*/
.main-image {
    max-width: 400px;
}
.secondary-image {
    width: 100%;
    height: auto;
    cursor: pointer;
    border: 1px solid #ddd;
}
.placeholder {
    height: 200px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}
.main-image, .secondary-image {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    background: #fff;
    width: 150px;
    height: 150px;
}
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.close-modal {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        cursor: pointer;
        z-index: 1000;
}

.secondary-image-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100px;
    margin-right: 20px;
}

.secondary-placeholder {
    display: none;
    color: #888;
}
/*########################################################### END PD Page #################################################################*/

/* واتس اب الدائرة الطائفة */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}
/* نهاية واتس اب الدائرة الطائفة */















/* المتغيرات (مدمجة مع أسلوبك) */
:root {
    --accent-color: #2e8fff; /* لون الأزرق من CSS الخاص بك */
    --dark-color: #1f2937;
    --light-dark-color: #6b7280;
    --light-color: #fff;
    --grey-color: #e5e7eb;
    --light-grey-color: #f8f8f8;
    --body-font: 'Tajawal', sans-serif;
    --heading-font: 'Tajawal', sans-serif;
}




/* السلايد الثاني */
.category-sellers {
    width: calc(100% - 40px);
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    background-color: white;
    box-sizing: border-box;
}

.category-sellers .head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.category-sellers h2 {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 24px;
    color: #00bbf5;
    background-color: #fff;
    padding: 10px;
    display: inline-block;
    margin: 0;
}

.category-sellers .view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    color: var(--accent-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-sellers .view-more-btn:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.category-carousel-item {
    width: 390px; /* عرض الصندوق من المثال */
}

.category-carousel-item .category-carousel-card {
    position: relative;
    width: 100%;
    height: 350px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.category-carousel-item .category-carousel-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.category-carousel-item .category-carousel-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 12px;
    background: #f9f9f9;
    margin: 0 auto;
}

.category-carousel-item .category-carousel-card .content h3 {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 18px;
    color: #333;
    margin: 8px 0 0;
    display: flex;
    justify-content: flex-start;
}

.category-carousel-item .category-carousel-card .content p {
    font-weight: bold;
    font-size: 18px;
    color: var(--accent-color);
    margin: 8px 0 0;
    display: flex;
    justify-content: flex-start;
}

.category-carousel-item .category-carousel-card .button-group {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.category-carousel-item .category-carousel-card .category-add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 20px); /* عرض كامل مع هامش صغير */
    margin: 0 auto;
    padding: 12px;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    color: var(--accent-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-carousel-item .category-carousel-card .category-add-to-cart-btn:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.category-carousel-item .category-carousel-card .category-add-to-cart-btn .fa-cart-shopping {
    margin-right: 8px;
    font-size: 18px;
}





















