/* ************************************************************************* */
/* ********** flex ********** */
/* ************************************************************************* */
.flex-column {
    flex-direction: column !important;
}

.display-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

canvas {
    display: block;
    cursor: crosshair;
}

.hero {
    color: var(--zh-light);
    padding: 10px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
    /* background-image: url('../images/New folder/uranus.jpg'); */
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 25px;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.slides-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* الشرائح الفردية */
.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    will-change: opacity, transform;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide.active::before {
    opacity: 1;
}

/* صور الشرائح */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: brightness(0.7) saturate(1.2);
    transition: filter 0.5s ease;
}

.slide:hover img {
    filter: brightness(0.8) saturate(1.3);
}

/* محتوى الشرائح */
.slide-content {
    position: absolute;
    top: 65%;
    /* left: 57%; */
    transform: translate(-66%, -38%);
    text-align: center;
    color: white;
    z-index: 3;
    padding: 40px;
    background: rgb(0 0 0 / 23%);
    backdrop-filter: blur(1px);
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / 23%);
    /* max-width: 600px; */
    margin: 0 25px;
    width: min-content;
    height: 27vh;
    animation: slideInContent 0.8s ease-out;
}

@keyframes slideInContent {
    0% {
        opacity: 0;
        transform: translate(-50%, -30%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

html[dir="rtl"] .slide-content {
    right: 0;
}

html[dir="ltr"] .slide-content {
    left: 0;
}

/* وصف الشرائح */
.slide-description {
    position: relative;
    font-size: 2.5rem !important;
    font-weight: 900;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--primary-color) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.move-btn {
    width: 100%;
    height: 90vh;
}

/* أزرار التنقل */
.nav-btn.prev,
.nav-btn.next {
    position: absolute;
    top: 50%;
    transform: rotate(180deg);
    background: transparent;
    border: none;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn.prev:hover,
.nav-btn.next:hover {
    background: rgb(255 255 255 / 12%);
    transform: translateY(-50%) scale(1.1);
    transform: rotate(180deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

.indicators {
    left: 50%;
    gap: 10px;
    z-index: 2;
    bottom: 20px;
    display: flex;
    position: absolute;
    transform: translateX(-50%);
}

.dot {
    width: 12px;
    height: 12px;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #333;
    transition: all 0.3s ease;
    background-color: var(--secondary-color);
}

.dot:hover {
    background-color: var(--zh-white);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* تأثيرات الحركة */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.slide.active .slide-content {
    animation: pulse 2s ease-in-out infinite;
}

/* شريط التقدم */
.progress {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    z-index: 10;
    position: absolute;
    border-radius: 2px 2px 0 0;
    transition: width 0.1s linear;
    box-shadow: 0 -2px 10px rgba(255, 107, 107, 0.5);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.progress::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: white;
    animation: progress 5s linear;
}

@keyframes progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

main.container {
    padding: 0 12px;
    flex-grow: 1;
}

main.container.order-details-page {
    margin: 20px 0;
}

.container-loader {
    display: flex;
    justify-content: center;
}

.loader-spinner {
    border: 1px solid var(--primary-color);
    border-top: 1px solid var(--zh-gold);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1.5s linear infinite;
    margin: 2px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* عناوين الأقسام */
.section-title {
    text-align: center;
    position: relative;
    text-shadow: 1px 1px 1px gold;
}

.section-display span {
    padding: 0 15px;
}

.filterBtn {
    display: none !important;
}

/* هذا الكلاس يجعل الشبكة تختفي وتتحرك للأسفل قليلاً */
.product-grid.fading-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* شبكة المنتجات */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
    transition: opacity 1.3s ease-in-out, transform 1.3s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

.product-grid#featured-products-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

.product-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 8px 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;
    position: relative;
}

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

.product-card img {
    max-width: 100%;
    height: 275px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 2px;
}

.product-badge.featured-badge {
    position: absolute;
    top: 5px;
    padding: 2px 6px;
    font-size: var(--zh-font-size-s);
    font-weight: bold;
    z-index: 10;
    display: flex;
    gap: 4px;
    cursor: pointer;
    background: linear-gradient(140deg, #b95a0cd9, #b47e11, #fef1a2, #bc881b, #b95a0cd9);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 3px rgba(255, 184, 0, 0.3);
    align-items: center;
}

html[dir="ltr"] .product-badge.featured-badge {
    right: auto;
    left: 10px;
}

.product-badge.featured-badge::before {
    content: "★";
    font-size: 1.1em;
}


h3 span.h3,
.product-card h3 {
    font-size: var(--zh-font-size-xl) !important;
    margin: 0 !important;
    transition: color 0.6s ease;
    justify-content: center;
    white-space: break-spaces;
}

.product-card h3:hover {
    color: var(--secondary-color);
}

.product-card-category {
    position: absolute;
    bottom: 45%;
    left: 50%;
    transform: translate(-50%, 0);
    /* color: var(--secondary-color) !important; */
    /* background-color: var(--primary-color); */
    padding: 2px 12px;
    border-radius: 6px;
    font-size: var(--zh-font-size-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 20;
    pointer-events: none;
    box-shadow: 1px 6px 6px rgb(0 0 0 / 12%);
}

.product-card:hover .product-card-category {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 50px);
}

.product-card .product-price {
    font-size: var(--zh-font-size-xxl);
    font-weight: bold;
    color: var(--bold-text-color) !important;
    margin: 2px 0;
}

.product-card-actions {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}

html[dir="rtl"] .product-card-actions {
    flex-direction: row-reverse;
}

html[dir="ltr"] .product-card-actions {
    flex-direction: row-reverse;
}

/* --- Product Rating Interaction Styles --- */
.interactive-stars {
    cursor: pointer;
    transition: transform 0.2s ease;
    display: inline-block;
}

.interactive-stars:hover {
    transform: scale(1.05);
}

.interactive-stars .star {
    transition: color 0.2s ease, transform 0.2s ease;
}

.interactive-stars:hover .star {
    color: var(--zh-gold) !important;
}

.rating-interaction-popup {
    position: absolute;
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    min-width: 200px;
    text-align: center;
    animation: fadeInPopup 0.6s ease-out;
}

.rating-interaction-popup p {
    margin: 0 0 12px 0;
    font-size: 0.95em;
    white-space: nowrap;
}

.rating-interaction-popup .btn-rate-now {
    width: 100%;
}

@keyframes fadeInPopup {
    from {
        opacity: 0;
        margin-top: -10px;
        transform: scale(0.9);
        transition: all 0.3s ease-out;
    }

    to {
        opacity: 1;
        margin-top: 0;
        transform: scale(1);
    }
}

/* RTL Support */
html[dir="rtl"] .rating-interaction-popup {
    text-align: right;
}

html[dir="rtl"] .rating-interaction-popup p {
    text-align: center;
}

/* قسم الفئات الرئيسي */
.falcon-categories-section {
    margin: 10px;
    background-color: transparent;
    position: relative;
}

@keyframes falconGlow {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

/* حاوي المحتوى */
.falcon-container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* رأس القسم */
.falcon-header-wrapper {
    text-align: center;
    margin-bottom: 8px;
    animation: falconFadeInDown 1s ease-out;
}

@keyframes falconFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* عناوين الشرائح */
.slide-title {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg,
            var(--primary-color),
            var(--heading-primary-color),
            var(--header-bg-color));
    background-size: 200% 200%;
    white-space: nowrap;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 184, 0, 0.3);
    animation: falconGradientShift 3s ease infinite;
}

@keyframes falconGradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.falcon-subtitle {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.8;
    white-space: nowrap;
    color: var(--primary-color) !important;
}

/* شبكة البطاقات */
.falcon-cards-grid {
    display: grid;
    gap: 15px;
}

/* 🟢 Desktop */
@media (min-width: 1024px) {

    /* 1 */
    .falcon-cards-grid[data-count="1"] {
        grid-template-columns: 1fr;
    }

    /* 2 */
    .falcon-cards-grid[data-count="2"] {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 3 */
    .falcon-cards-grid[data-count="3"] {
        grid-template-columns: repeat(3, 1fr);
    }

    /* 4 */
    .falcon-cards-grid[data-count="4"] {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 5 → 3 فوق + 2 تحت أو العكس، يفضل صف واحد إذا أمكن أو 3+2 */
    .falcon-cards-grid[data-count="5"] {
        grid-template-columns: repeat(3, 1fr);
    }

    /* 6 → 3 + 3 */
    .falcon-cards-grid[data-count="6"] {
        grid-template-columns: repeat(3, 1fr);
    }

    /* أكثر من 6 */
    .falcon-cards-grid[data-count]:not([data-count="1"]):not([data-count="2"]):not([data-count="3"]):not([data-count="4"]):not([data-count="5"]):not([data-count="6"]) {
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    }
}

/* 📱 موبايل */
@media (max-width: 768px) {
    .falcon-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* 📟 تابلت */
@media (min-width: 769px) and (max-width: 1023px) {
    .falcon-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes falconFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* بطاقة الفئة */
.falcon-category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 184, 0, 0.1);
}

.falcon-category-card:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: -1px 1px 13px cyan;
    border: 2px solid rgb(255 184 0);
}

/* حاوي الصورة */
.falcon-image-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.falcon-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.falcon-category-card:hover .falcon-category-image {
    transform: scale(1.15) rotate(2deg);
}

/* طبقة التدرج */
.falcon-gradient-overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.5s ease;
}

.falcon-category-card:hover .falcon-gradient-overlay {
    background: linear-gradient(180deg,
            rgba(255, 184, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.85) 80%,
            rgba(0, 0, 0, 0.95) 100%);
}

/* محتوى البطاقة */
.falcon-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.falcon-category-card:hover .falcon-card-content {
    transform: translateY(0);
}

/* شارة عدد المنتجات */
.falcon-product-badge {
    width: fit-content;
    display: flex;
    background: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
    animation: falconPulse 2s ease-in-out infinite;
    gap: 5px;
    align-items: center;
    justify-content: space-around;
}

@keyframes falconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.falcon-product-badge b,
.falcon-product-badge span {
    color: var(--secondary-color);
}

.falcon-product-badge strong span {
    top: 0px;
    position: relative;
    color: var(--bold-text-color);
}

/* عناوين البطاقة */
.falcon-category-title {
    font-size: var(--zh-font-size-2xl);
    font-weight: 800;
    /* margin-bottom: 8px; */
    color: var(--heading-primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

/* وصف الفئة */
.falcon-category-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-text-color);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
}

.falcon-category-card:hover .falcon-category-description {
    opacity: 1;
    transform: translateY(-10px);
}

/* زر الاستكشاف */
.falcon-explore-button {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
        inset 0 -2px 5px 1px rgba(139, 66, 8, 1),
        inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    background-image: linear-gradient(160deg,
            #a54e07,
            #b47e11,
            #fef1a2,
            #bc881b,
            #a54e07);
    border: 1px solid #a55d07;
    color: rgb(120, 50, 5);
    text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.falcon-explore-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.falcon-explore-button:hover::before {
    width: 300px;
    height: 300px;
}

.falcon-category-card:hover .falcon-explore-button {
    opacity: 1;
    transform: translateY(0);
}

.falcon-explore-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.4);
}

/* تأثيرات إضافية للبطاقات */
.falcon-category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 184, 0, 0.2),
            transparent);
    transition: left 0.7s ease;
}

.falcon-category-card:hover::before {
    left: 100%;
}

/* استجابة الشاشات الصغيرة */
@media (max-width: 480px) {
    .falcon-categories-section {
        padding: 60px 15px;
    }

    .falcon-card-content {
        padding: 20px;
    }

    .falcon-category-title {
        font-size: 1.2rem;
    }
}

/* ================================================================================ */
/* Notifications (Popup) */
/* Notifications (Popup) */
.popup-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 999999;
    box-shadow: 0 2px 10px 5px rgb(0 0 0 / 38%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    min-width: 300px;
    text-align: center;
}

.popup-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.popup-notification.error {
    background-color: #f44336;
}

/* إضافة CSS لمبدل اللغة */

.language-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 120px;
}

.language-select:hover {
    border-color: #007bff;
}

.language-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* تحسين مظهر مبدل اللغة في الشريط العلوي */
.header .language-switcher {
    margin: 0 15px;
    justify-content: flex-end;
}

.language-switcher {
    display: flex;
    align-items: center;
    margin: 10px 0;
    justify-content: center;
}

.header .language-select {
    min-width: 100px;
    font-size: 12px;
}

#bundleNotFound,
#wishlistEmpty,
#empty-cart-message {
    text-align: center;
    font-size: 1.2em;
    color: #777;
    padding: 40px 0;
}

.content-message {
    height: 35vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* تحسين مظهر مبدل اللغة في الوضع المظلم */
@media (prefers-color-scheme: dark) {
    .language-select {
        background-color: #2d3748;
        color: #e2e8f0;
        border-color: #4a5568;
    }

    .language-select:hover {
        border-color: #63b3ed;
    }

    .language-select:focus {
        border-color: #63b3ed;
        box-shadow: 0 0 0 2px rgba(99, 179, 237, 0.25);
    }
}

/* استجابة الشاشات المتوسطة */
@media (max-width: 768px) {
    .hero {
        min-height: 40vh;
    }

    .carousel {
        border-radius: 6px;
    }

    .slide-content {
        top: 65%;
        left: 57%;
        transform: translate(-19%, 10%) !important;
        text-align: center;
        padding: 5px;
        backdrop-filter: blur(1px);
        border-radius: 10px;
        width: 50%;
        height: 8vh;
        margin-right: 2px;
    }

    .slide-title {
        width: 131px;
        font-size: 12px;
        margin-bottom: 3px;
    }

    html[dir="rtl"] .slide-content {
        right: 20px;
    }

    html[dir="ltr"] .slide-content {
        left: 20px;
    }

    .slide-description {
        font-size: 14px !important;
    }

    .nav-btn.prev,
    .nav-btn.next {
        top: 40%;
        width: 45px;
        height: 45px;
    }

    .nav-btn.prev {
        left: 0px;
    }

    .nav-btn.next {
        right: 0px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* ------------------------------- */
    main.container {
        width: 100%;
        position: relative;
        padding: 0 10px;
        flex-grow: 1;
    }

    .section-title {
        font-size: 1em;
    }

    .filterBtn {
        width: 95%;
        position: absolute;
        display: flex !important;
        top: 10px;
        align-items: center;
    }

    .section-display {
        display: none;
    }

    .filterBtn svg {
        width: 20%;
    }

    .loader-spinner {
        width: 30px;
        height: 30px;
    }

    .product-grid#featured-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-grid {
        gap: 10px;
        margin-top: 6px;
    }

    .product-card img {
        height: 150px;
        margin-bottom: 0px;
    }

    .product-card h3 {
        font-size: 1em;
        margin: 0;
        min-height: 1.4em;
    }

    .product-card:hover .product-card-category {
        transform: translate(-50%, 10px);
    }

    .product-card .product-price {
        font-size: 1em;
        margin: 0;
    }

    .product-card {
        padding: 5px;
    }

    .btn-prudact {
        font-size: 10px;
        font-weight: 900;
        white-space: nowrap;
        text-transform: capitalize;
        height: 25px !important;
    }

    html[dir="rtl"] .btn-prudact {
        font-size: 12px;
    }

    .btn-prudact span {
        line-height: 2em;
        height: 25px;
    }

    .wishlist-btn {
        position: absolute !important;
        margin-top: -60px;
    }

    .falcon-header-wrapper {
        margin-bottom: 4px;
    }

    .falcon-subtitle {
        font-size: 9px;
        white-space: normal;
        display: -webkit-box;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .falcon-categories-section {
        width: 100%;
        padding: 2px 10px;
        margin: 5px 0;
    }

    .falcon-cards-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .falcon-category-card {
        height: 200px;
        border-radius: 8px;
    }

    .falcon-category-card:hover {
        transform: translateY(1px) scale(1.03);
        box-shadow: 0px 0px 4px 0px cyan;
        border: 1px solid rgb(255 184 0);
    }

    .falcon-category-image {
        object-fit: fill;
    }

    .falcon-card-content {
        padding: 20px;
    }

    .falcon-category-title {
        font-size: 1.2rem;
    }

    .falcon-category-description {
        font-size: 0.8rem;
    }

    .falcon-explore-button {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    html[dir="rtl"] .product-card-actions {
        flex-direction: row;
    }

    html[dir="ltr"] .product-card-actions {
        flex-direction: row;
    }
}

.summary-total,
.summary-total-line {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 15px;
    padding-top: 15px;
}

.summary-item,
.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}