/* Enterprise Bedding - Main CSS File */

/* 1. Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;500;600;700&display=swap');

/* 2. CSS Variables */
:root {
    --primary: #0056b3;
    --secondary: #6c757d;
    --dark: #1a2a3a;
    --light: #f8f9fa;
    --white: #ffffff;
    --text-color: #333333;
    --border-color: #dddddd;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --overlay-background: rgba(0, 0, 0, 0.4);
    --rating-color: #ffc107;
}

/* 3. Global Resets and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow Semi Condensed', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
}

/* 4. Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* 5. Utility Classes */
.font-light { font-weight: 300; }
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* 6. Image Optimization */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.btn-outline-dark:hover, btn-shop-now:hover {
    background: #192a3a;
    border-color: #192a3a;
}

/* 7. Navigation Styles */
.navbar {
    padding: 10px 0; /* يمكن تقليل المسافة العمودية من 15px إلى 10px */
    box-shadow: 0 2px 10px var(--shadow-light);
    background-color: var(--white) !important;
    height: auto; /* تأكد من أن الارتفاع مضبوط تلقائيًا */
}

.navbar > .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar .nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary);
}

.navbar-collapse {
    margin-top: 0; /* إزالة الهامش العلوي */
}

.navbar-nav {
    margin: 0; /* إزالة الهوامش */
    align-items: center; /* محاذاة العناصر عموديًا */
}

/* 8. Navbar Icons and Actions */
.navbar-actions {
    display: flex;
    align-items: center;
}

.search-icon a,
.cart-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding: 0.5rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.cart-icon a {
    position: relative;
}

.cart-icon .badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25em 0.5em;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* 9. Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.video-overlay .container {
    z-index: 2;
    position: relative;
}

.video-overlay h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-transform: uppercase;
    max-width: 800px;
}

.video-overlay p {
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* 10. Swiper Slider Styles */
.heroSwiper {
    height: 80vh;
    position: relative;
}

.heroSwiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 80vh;
}

.heroSwiper .swiper-pagination-bullet {
    background-color: var(--white);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    background-color: var(--white);
    opacity: 1;
    width: 20px;
    border-radius: 10px;
}
h2 {
    color:#063672;
}
/* 11. Button Styles */
.btn {
    font-family: 'Barlow Semi Condensed', sans-serif;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 0;
    /*border: none;*/
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--dark);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* 12. Featured Products */
.featured-product {
    margin: 100px 0;
}

.product-card {
    transition: transform 0.3s;
    margin-bottom: 30px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    background-color: var(--white);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-content {
    padding: 25px;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

/* 13. Section Titles and Subtitles */
.section-title {
    position: relative;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* 14. Blog Cards */
.blog-card {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.blog-card h5 {
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* 15. Sale Timer Styles */
.sale-timer {
    background-color: var(--light);
    padding: 60px 0;
}

.timer-box {
    text-align: center;
    padding: 10px;
    min-width: 60px;
    margin: 10px;
    background-color: var(--white);
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timer-box .number {
    font-size: 2rem;
    font-weight: bold;
}

/* 16. Testimonials Styles */
.testimonial-card {
    background-color: var(--white);
    border-radius: 0;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 1.1rem;
}

.testimonial-rating {
    color: var(--rating-color);
}

.testimonial-author h5 {
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* 17. Certifications Styles */
.certifications {
    background-color: var(--light);
    padding: 60px 0;
}

.certifications h2 {
    font-size: 2.2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.certification-item {
    text-align: center;
    margin-bottom: 30px;
}

.certification-item img {
    height: 80px;
    margin-bottom: 15px;
}

.certification-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* 18. Check List Styles */
.check-list {
    list-style-type: none;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 400;
}

.check-list li:before {
    content: '\f26a';
    font-family: 'Bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* 19. Category Links Styles */
.category-link {
    position: relative;
    display: block;
    margin-bottom: 30px;
    overflow: hidden;
}

.category-link img {
    transition: transform 0.5s ease;
}

.category-link:hover img {
    transform: scale(1.05);
}

.category-title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* 20. Main Categories Styles */
.main-categories {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow-light);
    padding: 20px 0;
    text-align: center;
}

.main-categories h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.main-categories .category-item {
    padding: 30px;
    transition: all 0.3s ease;
}

.main-categories .category-item:hover {
    background-color: var(--light);
}

/* 21. Footer Styles */
footer {
    background-color: var(--dark);
    padding: 60px 0 20px;
    color: var(--white);
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style-type: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ced4da;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--white);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary);
}

/* 22. Search Modal Styles */
.modal-content {
    border-radius: 0;
    border: none;
}

.search-form .form-control {
    border-radius: 0;
    border: 1px solid var(--border-color);
    height: 50px;
    padding: 0.375rem 1rem;
    font-size: 1.1rem;
}

.search-form .btn {
    border-radius: 0;
    padding: 0.375rem 1.5rem;
    font-weight: 600;
}

/* 23. Contact Form Styles */
.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.form-label {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.form-control {
    border-radius: 0;
    padding: 12px;
    border: 1px solid var(--border-color);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

/* 24. Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-image-container,
    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: 70vh;
    }

    .video-overlay h1 {
        font-size: 3rem;
    }

    .video-overlay p {
        font-size: 1.1rem;
    }

    .featured-product {
        margin: 80px 0;
    }

    .certification-item img {
        height: 70px;
    }

    .main-categories h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 991.98px) {
    .hero-image-container,
    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: 60vh;
    }

    .video-overlay h1 {
        font-size: 2.5rem;
    }

    .video-overlay p {
        font-size: 1rem;
        max-width: 500px;
    }

    .featured-product {
        margin: 60px 0;
    }

    .certification-item img {
        height: 60px;
    }

    .timer-box {
        min-width: 50px;
        margin: 5px;
    }

    .timer-box .number {
        font-size: 1.5rem;
    }
    .navbar-collapse {
        margin-top: 0.5rem; /* إعادة هامش صغير للشاشات الصغيرة */
    }

    .navbar-nav {
        margin: 0.5rem 0;
    }
}

@media (max-width: 767px) {
    .hero-image-container,
    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: 50vh;
    }

    .video-overlay h1 {
        font-size: 2rem;
    }

    .video-overlay p {
        font-size: 0.9rem;
        max-width: 400px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 13px;
    }

    .blog-card {
        margin-bottom: 20px;
    }

    .certification-item img {
        height: 50px;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }

    .main-categories .category-item {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero-image-container,
    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: 40vh;
    }

    .video-overlay h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .section-title {
        font-size: 2rem;
    }

    .certification-item img {
        height: 40px;
    }

    .timer-box {
        min-width: 40px;
        margin: 3px;
    }

    .timer-box .number {
        font-size: 1.2rem;
    }
}

/* Navigation Styles - Centered Logo with Left Menu */
.navbar {
    padding: 10px 0;
    box-shadow: 0 2px 10px var(--shadow-light);
    background-color: var(--white) !important;
    height: auto;
    position: relative; /* لضمان عمل المواضع المطلقة والنسبية داخله */
}

/* تغليف الحاوية الداخلية للنافبار */
.navbar > .container {
    display: flex;
    justify-content: flex-start; /* ترتيب العناصر من اليسار */
    align-items: center;
    position: relative; /* للتحكم في موضع اللوجو */
}

/* وضع اللوجو في المنتصف باستخدام الموضع المطلق */
.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* تعديل موضع المركز بدقة */
    margin: 0;
    z-index: 10; /* جعل اللوجو فوق العناصر الأخرى */
}

.navbar-brand img {
    max-height: 35px;
}

/* ترتيب القائمة على اليسار */
.navbar-nav {
    margin: 0;
    padding-left: 0;
    align-items: center;
}

/* تعديل نمط الروابط في القائمة */
.navbar .nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 1rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary);
}

/* نقل أزرار التسجيل وأيقونات البحث والسلة إلى اليمين */
.navbar-actions {
    display: flex;
    align-items: center;
    margin-left: auto; /* هذا سيدفع العناصر إلى اليمين */
}

.search-icon a,
.cart-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding: 0.4rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.cart-icon a {
    position: relative;
}

.cart-icon .badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25em 0.5em;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* تعديلات لمعالجة عرض زر التوجل في العروض الصغيرة */
.navbar-toggler {
    margin-right: auto; /* هذا سيضع زر التوجل على اليسار */
    padding: 0.5rem;
}

/* تعديلات للشاشات المتوسطة والصغيرة */
@media (max-width: 991.98px) {
    /* إعادة ترتيب العناصر للشاشات الصغيرة */
    .navbar-collapse {
        position: absolute;
        top: 100%; /* تحت النافبار */
        left: 0;
        right: 0;
        background-color: var(--white);
        z-index: 100;
        padding: 1rem;
        box-shadow: 0 5px 10px var(--shadow-light);
    }

    /* عند الفتح، اللوجو يبقى في المنتصف والقائمة تفتح تحته */
    .navbar-nav {
        text-align: left;
        margin: 0.5rem 0;
    }

    /* أزرار التسجيل تصبح في الأسفل على كامل العرض */
    .navbar-actions {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .auth-buttons {
        margin-top: 0.5rem;
        width: 100%;
    }

    .auth-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* للشاشات الصغيرة جداً، تعديلات إضافية */
@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 30px; /* تصغير اللوجو قليلاً للشاشات الصغيرة */
    }
}




/* category */


/* أنماط قسم الفئات في المنتصف */
.categories-exact-match {
    padding: 50px 0;
    background-color: #fff;
}

/* محاذاة الصف للمنتصف */
.categories-exact-match .row.justify-content-center {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.category-item {
    position: relative;
    background-color: #f5f5f5;
    height: 100%;
    overflow: hidden;
}

.category-name {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0;
    z-index: 2;
}

.category-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-shop-now {
    position: absolute;
    bottom: 20px;
    left: 30px;
    display: inline-block;
    padding: 8px 20px;
    background-color: #fff;
    color: #222;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}

.btn-shop-now:hover {
    background-color: #222;
    color: #fff;
}

/* تعديلات للشاشات المختلفة */
@media (max-width: 991.98px) {
    .category-name {
        font-size: 24px;
        top: 25px;
        left: 25px;
    }

    .btn-shop-now {
        left: 25px;
    }

    .category-image {
        height: 100%;
    }
}

@media (max-width: 767.98px) {
    .category-item {
        margin-bottom: 30px;
    }

    .category-image {
        height: 100%;
    }
}

@media (max-width: 575.98px) {
    .category-name {
        font-size: 20px;
        top: 20px;
        left: 20px;
    }

    .btn-shop-now {
        padding: 6px 15px;
        font-size: 10px;
        left: 20px;
        bottom: 15px;
    }

    .category-image {
        height: 100%;
    }
}

/*end cateogry*/

/*about us*/

/* أنماط قسم About Us مع خلفية فيديو */
.about-video-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* خلفية الفيديو */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* طبقة التعتيم فوق الفيديو */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 20, 50, 0.7); /* لون أزرق داكن شفاف */
    z-index: 2;
}

/* محتوى القسم */
.about-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* نص "عدد سنوات الخدمة" */
.years-serving {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

/* عنوان "من مصنعنا إلى منزلك" */
.factory-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.2;
}

/* زر "عن الشركة" */
.btn-about {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: #fff;
    color: #000;
}

/* تعديلات للشاشات المختلفة */
@media (max-width: 991.98px) {
    .factory-title {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .about-video-section {
        height: 400px;
    }

    .factory-title {
        font-size: 30px;
    }

    .btn-about {
        padding: 12px 25px;
    }
}

@media (max-width: 575.98px) {
    .about-video-section {
        height: 350px;
    }

    .years-serving {
        font-size: 12px;
    }

    .factory-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .btn-about {
        padding: 10px 20px;
        font-size: 12px;
    }
}


/*end about us*/


/* brands */

/* أنماط قسم العلامات التجارية بتصميم بسيط - بدون بطاقات */
.minimal-brands-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* عنوان القسم */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0e2b5c;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #0e2b5c;
    margin: 0 auto 25px;
}

.section-description {
    color: #596275;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* صف العلامات التجارية */
.brands-row {
    margin-top: 40px;
}

/* العلامة التجارية */
.brand-item {
    background-color: #ffffff;
    margin-bottom: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s;
}

.brand-item:hover {
    transform: translateY(-5px);
}

/* منطقة شعار العلامة التجارية */
.brand-logo-area {
    padding: 40px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f1f1;
}

.brand-logo {
    max-width: 320px;
    /*max-height: 80px;*/
    object-fit: contain;
}

/* معلومات العلامة التجارية */
.brand-info {
    padding: 30px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.brand-separator {
    width: 40px;
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 15px;
}

.brand-description {
    color: #596275;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ميزات العلامة التجارية */
.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #596275;
    margin-right: 5px;
}

.feature-badge i {
    color: #0e2b5c;
    margin-right: 5px;
}

/* رابط عرض المنتجات */
.view-products-link {
    display: inline-flex;
    align-items: center;
    color: #0e2b5c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
}

.view-products-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.view-products-link:hover {
    color: #3867d6;
}

.view-products-link:hover i {
    transform: translateX(5px);
}

/* تعديلات الشاشات المختلفة */
@media (max-width: 991.98px) {
    .minimal-brands-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .brand-logo {
        max-width: 180px;
    }
}

@media (max-width: 767.98px) {
    .minimal-brands-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 16px;
    }

    .brand-logo-area {
        padding: 30px;
    }

    .brand-info {
        padding: 25px;
    }

    .brand-name {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 20px;
    }

    .brand-logo-area {
        padding: 25px;
    }

    .brand-logo {
        max-width: 220px;
    }

    .brand-info {
        padding: 20px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-description {
        font-size: 14px;
    }

    .feature-badge {
        font-size: 13px;
    }
}

/* end brands */


/* product care */

/* Estilos para la sección Premium & Value con colores corregidos */
.premium-value-section {
    position: relative;
    overflow: hidden;
}

/* Columna de contenido */
.content-column {
    background-color: #152238; /* Azul oscuro similar a la imagen de referencia */
    color: #ffffff;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.content-wrapper {
    padding: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: 60px;
}

/* Título principal */
.premium-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff; /* Blanco puro para el título principal */
}

/* Descripción principal */
.premium-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
    font-weight: 300;
    opacity: 0.9;
    color: #ffffff; /* Blanco para la descripción */
}

/* Líneas de productos */
.product-line {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.product-number {
    font-size: 20px;
    font-weight: 600;
    margin-right: 20px;
    opacity: 0.8;
    width: 40px;
    color: #ffffff; /* Blanco para los números */
}

.product-info {
    flex-grow: 1;
}

/* Título del producto - Color azul claro */
.product-title1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #4B9CD3; /* Azul claro para los títulos de productos */
}

.product-description1 {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 0;
    color: #ffffff; /* Blanco para las descripciones */
}

/* Enlace con flecha */
.arrow-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
    background-color: transparent;
}

.arrow-link:hover {
    background-color: #4B9CD3; /* Azul claro al hacer hover */
    color: #ffffff;
    border-color: #4B9CD3;
    transform: translateX(5px);
}

/* Separador entre líneas de productos */
.separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Columna de imagen */
.image-column {
    min-height: 600px;
    background-color: #f5f5f5;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.premium-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .content-wrapper {
        padding: 50px;
        margin-right: 30px;
    }

    .premium-title {
        font-size: 40px;
    }
}

@media (max-width: 991.98px) {
    .content-column, .image-column {
        min-height: auto;
    }

    .content-wrapper {
        padding: 40px;
        margin-right: auto;
        margin-left: auto;
    }

    .premium-title {
        font-size: 36px;
    }

    .premium-description {
        margin-bottom: 40px;
    }

    .image-wrapper {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .content-wrapper {
        padding: 30px;
    }

    .premium-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .premium-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .product-title {
        font-size: 20px;
    }

    .image-wrapper {
        height: 350px;
    }
}

@media (max-width: 575.98px) {
    .premium-title {
        font-size: 28px;
    }

    .product-number {
        font-size: 18px;
        width: 30px;
    }

    .product-line {
        margin-bottom: 20px;
    }

    .arrow-link {
        width: 40px;
        height: 40px;
    }

    .image-wrapper {
        height: 300px;
    }
}

/* end product care */


/* warranty */

/* Estilos para la sección de Garantía */
.warranty-section {
    position: relative;
    overflow: hidden;
}

/* Columna de imagen */
.image-column {
    min-height: 600px;
    background-color: #f5f5f5;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.warranty-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Columna de contenido */
.warranty-section .content-column {
    background-color: #ffffff;
    color: #1a2a3a;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.content-wrapper {
    padding: 60px;
    max-width: 600px;
    margin-left: 60px;
}

/* Título principal */
.warranty-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #1a2a3a;
    text-transform: uppercase;
}

/* Descripción principal */
.warranty-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
    font-weight: 400;
    color: #5a6a7a;
}

/* Elementos de la garantía */
.warranty-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.item-number {
    font-size: 20px;
    font-weight: 600;
    margin-right: 20px;
    color: #1a2a3a;
    width: 40px;
}

.item-info {
    flex-grow: 1;
}

.item-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #3a7cbd; /* Azul similar al de la imagen de referencia */
    text-transform: uppercase;
}

.item-description {
    font-size: 16px;
    color: #5a6a7a;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Enlace con flecha */
.arrow-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(26, 42, 58, 0.2);
    color: #1a2a3a;
    transition: all 0.3s ease;
}

.arrow-link:hover {
    background-color: #3a7cbd;
    color: #ffffff;
    border-color: #3a7cbd;
    transform: translateX(5px);
}

/* Separador entre elementos */
.separator {
    height: 1px;
    background-color: rgba(26, 42, 58, 0.1);
    margin: 30px 0;
}

/* Botón para ver la tarjeta de garantía */
.view-warranty-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 30px;
    background-color: #1a2a3a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #1a2a3a;
}

.view-warranty-btn:hover {
    background-color: transparent;
    color: #1a2a3a;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .content-wrapper {
        padding: 50px;
        margin-left: 30px;
    }

    .warranty-title {
        font-size: 40px;
    }
}

@media (max-width: 991.98px) {
    .content-column, .image-column {
        min-height: auto;
    }

    .content-wrapper {
        padding: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .warranty-title {
        font-size: 36px;
    }

    .warranty-description {
        margin-bottom: 40px;
    }

    .image-wrapper {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .content-wrapper {
        padding: 30px;
    }

    .warranty-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .warranty-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .item-title {
        font-size: 20px;
    }

    .image-wrapper {
        height: 350px;
    }

    .view-warranty-btn {
        padding: 12px 24px;
    }
}

@media (max-width: 575.98px) {
    .warranty-title {
        font-size: 28px;
    }

    .item-number {
        font-size: 18px;
        width: 30px;
    }

    .warranty-item {
        margin-bottom: 20px;
    }

    .arrow-link {
        width: 40px;
        height: 40px;
    }

    .image-wrapper {
        height: 300px;
    }

    .view-warranty-btn {
        width: 100%;
        text-align: center;
    }
}

/* end warranty */


/* map */

/* US Map Nationwide Delivery Section Styles */
.us-map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Text Content Styles */
.map-content {
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2a3a;
}

.title-separator {
    width: 80px;
    height: 3px;
    background-color: #3a7cbd;
    margin-bottom: 25px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6a7a;
    margin-bottom: 30px;
}

/* Delivery Features List */
.delivery-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.delivery-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.delivery-features i {
    margin-right: 15px;
    font-size: 22px;
    color: #3a7cbd;
    flex-shrink: 0;
}

.delivery-features span {
    color: #1a2a3a;
    font-weight: 500;
}

/* Delivery Button */
.delivery-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a2a3a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.delivery-btn:hover {
    background-color: #3a7cbd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(58, 124, 189, 0.3);
}

/* Map Container Styles */
.map-container {
    position: relative;
    height: 400px;
    max-width: 100%;
    overflow: hidden;
}

.map-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.us-map {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Distribution Points on Map */
.distribution-point {
    position: absolute;
    width: 20px;
    height: 20px;
}

.point-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #3a7cbd;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.point-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 124, 189, 0.4);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulse 2s infinite;
}

/* Distribution Point Positions */
.west {
    top: 30%;
    left: 15%;
}

.midwest {
    top: 30%;
    left: 40%;
}

.south {
    top: 65%;
    left: 35%;
}

.northeast {
    top: 25%;
    left: 75%;
}

/* Map Overlay */
.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(26, 42, 58, 0.8);
    color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.states-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.count-label {
    font-size: 14px;
    margin-top: 5px;
}

/* Pulse Animation for Map Points */
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .map-content {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .us-map-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .map-container {
        height: 350px;
    }

    .delivery-features i {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .map-container {
        height: 300px;
    }

    .delivery-btn {
        width: 100%;
        text-align: center;
    }

    .count-number {
        font-size: 28px;
    }
}


/* end map */


/*delar*/
/* Become a Dealer Section Styles */
.become-dealer-section {
    background-color: #152238;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}

.dealer-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
}

/* Section Title */
.become-dealer-section .section-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Section Description */
.become-dealer-section .section-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #152238;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 30px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.learn-more-btn:hover {
    background-color: transparent;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .become-dealer-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .become-dealer-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .become-dealer-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 14px;
    }

    .learn-more-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
}
/*end delar*/


/* gallery */

/* Simplified Gallery Styles with Two-Column Layout */
.simple-gallery-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-5, .col-lg-7 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

/* Text Column Styles */
.gallery-text {
    padding: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6a7a;
    margin-bottom: 20px;
}

/* Button Style Matching Warranty Section */
.btn-primary {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 30px;
    background-color: #1a2a3a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #1a2a3a;
}

.btn-primary:hover {
    background-color: #3a7cbd;
}

/* Gallery Column Styles */
.simple-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-row {
    display: flex;
    gap: 20px;
}

.gallery-thumbnail {
    flex: 1;
    height: 180px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-thumbnail:hover {
    transform: translateY(-5px);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-thumbnail:hover img {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .gallery-thumbnail {
        height: 160px;
    }
}

@media (max-width: 991px) {
    .gallery-text {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .simple-gallery-section {
        padding: 60px 0;
    }

    .gallery-row {
        gap: 15px;
    }

    .gallery-thumbnail {
        height: 140px;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .gallery-row {
        flex-direction: column;
    }

    .gallery-thumbnail {
        height: 180px;
        margin-bottom: 15px;
    }
}

/* end gallery */


@media (max-width: 991.98px) {
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /*.navbar-collapse {*/
    /*    margin-top: 60px; !* للتأكد من عدم تداخل القائمة مع اللوجو *!*/
    /*}*/
}

@media (max-width: 767.98px) {
    .navbar-actions {
        position: absolute;
        top: 10px;
        right: 15px;
    }
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}


/**/


@media (max-width: 991.98px) {
    .navbar {
        position: relative;
    }

    .navbar-brand {
        position: static;
        margin: 0 auto;
        transform: none;
    }

    .navbar-toggler {
        order: -1;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f8f8f8;
        z-index: 1000;
        padding: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
}




/* shop css */

/* Shop Mattresses Page Styles - Enterprise Bedding */

/* Main container and section styling */
.shop-mattresses-section {
    padding: 20px 0 60px;
    background-color: transparent;
}

/* Page title styling */
.shop-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Shop header with product count and sorting */
.shop-header {
    margin-bottom: 30px;
}

.product-count {
    font-size: 15px;
    color: #555;
}

.sort-dropdown select {
    border: none;
    padding: 8px 30px 8px 0;
    color: #333;
    font-size: 15px;
    cursor: pointer;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 16px;
}

.sort-dropdown select:focus {
    outline: none;
    box-shadow: none;
}

/* Product card styling */
.product-card {
    margin-bottom: 30px;
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: transparent;
    border: none;
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product tags (sale, find in store) */
.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    text-transform: uppercase;
    z-index: 2;
}

.product-tag.sale {
    background-color: #000;
}

/* Product info styling */
.product-info {
    padding: 5px 0;
    background-color: transparent;
    border: none;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a2a3a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.original-price {
    font-size: 15px;
    color: #f74f4f;
    text-decoration: line-through;
}

/* Simple Login to see prices text */
.login-text {
    font-size: 13px;
    color: #3a7cbd;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.login-text:hover {
    color: #1a2a3a;
    text-decoration: none;
}

/* Choose options button - static instead of overlay */
.btn-choose-options {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #1a2a3a;
    color: #1a2a3a;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-align: center;
}

.btn-choose-options:hover {
    background-color: #1a2a3a;
    color: #fff;
}

/* Product overlay with options button - appears on hover */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.btn-options {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid #1a2a3a;
    color: #1a2a3a;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-options:hover {
    background-color: #1a2a3a;
    color: #fff;
}

/* Product badges (cooling, sustainable, etc.) */
.product-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 80px;
    height: 80px;
    z-index: 3;
}

.badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Pagination styles */
.pagination-container {
    display: flex;
    justify-content: center;
}

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

.page-item {
    margin: 0 3px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #dee2e6;
    color: #3a7cbd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background-color: #3a7cbd;
    border-color: #3a7cbd;
    color: #fff;
}

.page-link:hover {
    background-color: #f8f9fa;
    color: #3a7cbd;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

/* Remove any card-related styles */
.card, .card-body, .card-footer, .card-header {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .product-image img {
        height: 250px;
    }

    .product-badge {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767.98px) {
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .product-image img {
        height: 220px;
    }

    .product-badge {
        width: 60px;
        height: 60px;
        bottom: 10px;
        right: 10px;
    }

    .product-title {
        font-size: 14px;
    }

    .current-price,
    .original-price {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .product-image img {
        height: 180px;
    }
}

/* end shop css */



/* auth css */

/* Authentication Pages Styles - Enterprise Bedding */

/* Account Section */
.account-section {
    padding: 60px 0;
    background-color: transparent;
}

/* Page Title */
.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a2a3a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Login Form */
.login-form,
.register-form,
.register-info {
    margin-bottom: 40px;
}

.login-title,
.register-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a2a3a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Elements */
.form-control {
    border-radius: 0;
    padding: 12px 15px;
    height: auto;
    font-size: 15px;
    border: 1px solid #e0e0e0;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: #1a2a3a;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    font-size: 12px;
    margin-top: -5px;
    margin-bottom: 10px;
}

/* Checkbox Styling */
.form-check {
    margin-bottom: 20px;
}

.form-check-input {
    margin-top: 0.25rem;
}

.form-check-label {
    font-size: 14px;
    color: #555;
}

/* Forgot Password Link */
.forgot-password {
    display: block;
    margin-bottom: 20px;
    color: #3a7cbd;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #1a2a3a;
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    display: block;
    width: 100%;
    padding: 12px 30px;
    background-color: #1a2a3a;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #3a7cbd;
    transform: translateY(-3px);
}

/* Register Button */
.register-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a2a3a;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.register-btn:hover {
    background-color: #3a7cbd;
    color: #fff;
    transform: translateY(-3px);
}

/* Registration Info Section */
.register-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Social Login Section */
.social-login {
    margin-top: 30px;
}

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

.or-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.or-divider span {
    display: inline-block;
    position: relative;
    background-color: #fff;
    padding: 0 15px;
    color: #888;
    font-size: 14px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.google {
    color: #DB4437;
    border: 1px solid #DB4437;
    background-color: transparent;
}

.social-btn.google:hover {
    background-color: #DB4437;
    color: white;
}

.social-btn.facebook {
    color: #4267B2;
    border: 1px solid #4267B2;
    background-color: transparent;
}

.social-btn.facebook:hover {
    background-color: #4267B2;
    color: white;
}

/* Login Link for Register Page */
.login-link {
    margin-top: 30px;
}

.login-link p {
    font-size: 15px;
    color: #555;
}

.login-link a {
    color: #3a7cbd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: #1a2a3a;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .account-section {
        padding: 50px 0;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .login-title,
    .register-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .account-section {
        padding: 40px 0;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .register-info {
        margin-top: 40px;
    }

    .submit-btn,
    .register-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .page-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .login-title,
    .register-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* end auth css */


/* prodcut details  */


/* Product Detail Page Styles */

/* Main Product Section */
.product-main {
    margin-bottom: 60px;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    margin-bottom: 30px;
}

.main-image-container {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #eee;
}

.main-product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 5;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:after {
    content: '‹';
    font-size: 24px;
    font-weight: bold;
}

.next-btn:after {
    content: '›';
    font-size: 24px;
    font-weight: bold;
}

.gallery-nav i {
    display: none;
}

/* Thumbnails */
.thumbnails-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid #eee;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.thumbnail-item.active {
    border-color: #1e2b37;
}

.thumbnail-item:hover {
    border-color: #1e2b37;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
    transform: scale(1.1);
}

/* Image Zoom */
.image-zoom-lens {
    position: fixed;
    background-repeat: no-repeat;
    background-position: center;
    width: 300px;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    pointer-events: none;
}

/* Product Info */
.product-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.sale-price {
    font-size: 24px;
    font-weight: 700;
    color: #1e2b37;
}

.variant-price-notice {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.contact-for-price {
    font-size: 18px;
    color: #1e2b37;
    font-weight: 500;
}

.shipping-info {
    font-size: 14px;
    color: #666;
    margin-left: 10px;
}

.product-description {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

/* Variant Options */
.product-options {
    margin-bottom: 25px;
}

.option-group {
    margin-bottom: 20px;
}

.option-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-button {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.option-button input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.option-text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 40px;
    padding: 0 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
    transition: all 0.3s;
    font-size: 14px;
}

.option-button input:checked + .option-text {
    border-color: #1e2b37;
    background-color: #1e2b37;
    color: #fff;
}

.option-button:hover .option-text {
    border-color: #1e2b37;
}

/* Color Options - For backward compatibility */
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    position: relative;
    cursor: pointer;
}

.color-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.color-swatch {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.color-option input:checked + .color-swatch {
    border-color: #1e2b37;
    border-width: 2px;
}

.color-option:hover .color-swatch {
    border-color: #1e2b37;
}

/* Variant Info */
.variant-info {
    margin: 20px 0;
    display: none;
}

.variant-info-content {
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
}

/* Stock Status */
.stock-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.stock-badge.in-stock {
    background-color: #d4edda;
    color: #155724;
}

.stock-badge.out-of-stock {
    background-color: #f8d7da;
    color: #721c24;
}

.stock-badge.low-stock {
    background-color: #fff3cd;
    color: #856404;
}

/* Quantity Controls */
.cart-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 46px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.quantity-input {
    width: 60px;
    height: 46px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 16px;
}

/* Action Buttons */
.add-to-cart-btn, .contact-btn {
    flex: 1;
    height: 46px;
    background-color: #1e2b37;
    color: white;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.add-to-cart-btn:hover, .contact-btn:hover {
    background-color: #162130;
    color: white;
}

.add-to-cart-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Hidden Elements */
.buy-now-btn,
.meta-item:has(span.meta-label:contains("SKU")),
#reviews-tab,
#reviews {
    display: none !important;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.wishlist-btn, .compare-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
}

.wishlist-btn i, .compare-btn i {
    margin-right: 5px;
}

.wishlist-btn:hover, .compare-btn:hover {
    color: #1e2b37;
}

/* Product Meta */
.product-meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 14px;
}

.meta-item {
    margin-bottom: 5px;
}

.meta-label {
    font-weight: 600;
    color: #777;
    margin-right: 5px;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 50px;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    border: none;
    padding: 10px 20px;
    color: #555;
    font-weight: 600;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: #1e2b37;
    background-color: transparent;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1e2b37;
}

.tab-content {
    padding: 20px 0;
}

.product-description-content {
    line-height: 1.7;
    color: #666;
}

/* Specification Image */
.specification-image {
    max-width: 100%;
    height: auto;
    margin: 0 0 20px;
    border: 1px solid #eee;
    border-radius: 8px;
}

/* Related Products */
.related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    color: #1e2b37;
}

.product-card {
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    color: white;
    font-size: 12px;
    z-index: 1;
    border-radius: 4px;
}

.product-badge.out-of-stock {
    background-color: #dc3545;
}

.product-badge.low-stock {
    background-color: #ffc107;
    color: #333;
}

.product-image {
    display: block;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-card-info {
    padding: 15px;
}

.product-card-title {
    font-size: 16px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-title a {
    color: #333;
    text-decoration: none;
}

.product-card-title a:hover {
    color: #1e2b37;
}

.product-card-price {
    font-weight: 600;
    color: #1e2b37;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .cart-actions {
        flex-direction: column;
    }

    .quantity-selector {
        margin-bottom: 10px;
        width: 100%;
    }

    .add-to-cart-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .product-title {
        font-size: 24px;
    }

    .product-tabs .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }

    .thumbnails-container {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .product-price {
        flex-direction: column;
        align-items: flex-start;
    }

    .shipping-info {
        margin-left: 0;
        margin-top: 5px;
    }
}

/* end product details */


/* بداية تنسيقات سلة التسوق */

/* تنسيقات عامة للقسم */
.shop-cart {
    padding: 70px 0;
    background-color: #f9f9f9;
}

.shop-cart-wrap {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* تنسيقات جدول سلة التسوق */
.cart-table {
    margin-bottom: 30px;
}

.cart-table .table {
    margin-bottom: 0;
}

.cart-table .table thead th {
    border-bottom: 1px solid #eee;
    padding: 15px 10px;
    font-weight: 600;
    color: #1a2a3a;
    background-color: #f8f9fa;
    font-size: 15px;
    text-transform: uppercase;
}

.cart-table .table tbody td {
    padding: 20px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.shop-cart-img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
}

.shop-cart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-cart-content {
    padding-right: 15px;
}

.shop-cart-name {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.shop-cart-name a {
    color: #1a2a3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-cart-name a:hover {
    color: #4B9CD3;
}

.shop-cart-info {
    font-size: 14px;
    color: #666;
}

.shop-cart-info p {
    margin-bottom: 3px;
}

.shop-cart-info span {
    font-weight: 500;
    color: #444;
    margin-right: 5px;
}

.shop-cart-price {
    font-size: 16px;
    font-weight: 600;
    color: #1a2a3a;
}

/* تنسيقات كمية المنتج */
.shop-cart-qty {
    display: flex;
    align-items: center;
    max-width: 120px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

.shop-cart-qty button {
    width: 30px;
    height: 36px;
    background-color: #f5f5f5;
    border: none;
    color: #333;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-cart-qty button:hover {
    background-color: #e0e0e0;
}

.shop-cart-qty .quantity {
    width: 40px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background-color: transparent;
}

.shop-cart-subtotal {
    font-size: 16px;
    font-weight: 600;
    color: #1a2a3a;
}

.shop-cart-remove {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #666;
    text-align: center;
    line-height: 32px;
    transition: all 0.3s ease;
}

.shop-cart-remove:hover {
    background-color: #ff6b6b;
    color: #fff;
}

/* تنسيقات تذييل سلة التسوق */
.shop-cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.shop-cart-coupon .form-group {
    display: flex;
    max-width: 350px;
}

.shop-cart-coupon .form-control {
    border-radius: 4px 0 0 4px;
    border: 1px solid #e1e1e1;
    height: 46px;
    padding: 10px 15px;
    font-size: 14px;
}

.shop-cart-coupon .theme-btn {
    border-radius: 0 4px 4px 0;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #1a2a3a;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-cart-coupon .theme-btn:hover {
    background-color: #4B9CD3;
}

.shop-cart-btn .theme-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1a2a3a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-cart-btn .theme-btn:hover {
    background-color: #4B9CD3;
}

.shop-cart-btn .theme-btn .fas {
    margin-right: 8px;
}

/* تنسيقات ملخص سلة التسوق */
.shop-cart-summary {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    position: sticky;
    top: 20px;
}

.shop-cart-summary h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e1e1;
}

.shop-cart-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-cart-summary ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.shop-cart-summary ul li strong {
    font-weight: 600;
    color: #333;
}

.shop-cart-summary ul li.shop-cart-total {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e1e1e1;
    font-size: 18px;
    font-weight: 700;
    color: #1a2a3a;
}

.shop-cart-summary ul li.shop-cart-total strong {
    color: #1a2a3a;
}

.shop-cart-summary .theme-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4B9CD3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-cart-summary .theme-btn:hover {
    background-color: #1a2a3a;
}

.shop-cart-summary .theme-btn i {
    margin-left: 8px;
}

/* تنسيقات السلة الفارغة */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 8px;
}

.empty-cart-icon {
    font-size: 80px;
    color: #e0e0e0;
    margin-bottom: 25px;
    display: inline-block;
}

.empty-cart h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 15px;
}

.empty-cart p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.start-shopping-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1a2a3a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.start-shopping-btn:hover {
    background-color: #4B9CD3;
    transform: translateY(-3px);
}

.start-shopping-btn i {
    margin-right: 8px;
}

/* تنسيقات للشاشات المتوسطة والصغيرة */
@media (max-width: 991px) {
    .shop-cart-summary {
        margin-top: 30px;
        position: static;
    }
}

@media (max-width: 767px) {
    .shop-cart {
        padding: 50px 0;
    }

    .cart-table .table {
        min-width: 650px;
    }

    .shop-cart-footer {
        padding: 15px;
    }

    .shop-cart-btn {
        text-align: left !important;
        margin-top: 15px;
    }

    .shop-cart-summary {
        padding: 20px;
    }

    .empty-cart {
        padding: 40px 15px;
    }

    .empty-cart-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    .empty-cart h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .shop-cart-coupon .form-group {
        max-width: 100%;
    }

    .shop-cart-coupon .theme-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .shop-cart-btn .theme-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .shop-cart-summary {
        padding: 15px;
    }

    .shop-cart-summary .theme-btn {
        width: 100%;
        text-align: center;
    }

    .empty-cart-icon {
        font-size: 50px;
    }

    .empty-cart h3 {
        font-size: 20px;
    }

    .empty-cart p {
        font-size: 14px;
    }

    .start-shopping-btn {
        width: 100%;
        text-align: center;
    }
}

/* cart page end*/



