/********** Template CSS **********/
/* CSS Variables moved to variables.css for unified management */

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--dark);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container Classes - Unified naming */
.containerr{
    max-width: 100%;
    margin: 0px 0px 0px 0px;
    padding: 0 20px;
}

.container {
    max-width: 1305px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.fa-sm {
    /* font-size: .875em; */
    line-height: .07143em;
}

/* تنسيقات قسم البطل المطور */
.hero-full {
        position: relative;
        height: 100vh;
        min-height: 700px;
        overflow: hidden;
    }
    
    .hero-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .slider-track {
        display: flex;
        height: 100%;
        transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .slide {
        position: relative;
        min-width: 100%;
        height: 100%;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .slide-caption {
        position: absolute;
        bottom: 15%;
        right: 10%;
        max-width: 500px;
        background: rgba(255, 255, 255, 0.85);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.8s ease;
    }
    
    .slide.active .slide-caption {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.5s;
    }
    
    .slide-caption h3 {
        font-size: 1.8rem;
        color: var(--text-primary);
        margin-bottom: 10px;
        font-family: 'Cairo', sans-serif;
    }
    
    .slide-caption p {
        font-size: 1rem;
        color: var(--text-primary);
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .slide-tags {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .slide-tags .tag {
        background: var(--primary);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
    }
    
    /* عناصر التحكم بالشريط */
    .slider-controls {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 10;
    }
    
    .slider-dots {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .slider-dots .dot {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .slider-dots .dot span {
        color: white;
        font-weight: bold;
    }
    
    .slider-dots .dot.active {
        background: var(--primary);
        border-color: var(--primary);
        transform: scale(1.1);
    }
    
    .slider-dots .dot:hover .dot-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dot-tooltip {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: white;
        color: var(--text-primary);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        margin-bottom: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .slider-arrows {
        display: flex;
        gap: 20px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }
    
    .slider-arrow:hover {
        background: var(--primary);
        transform: scale(1.1);
    }
    
    /* تحسينات العناصر الأخرى */
    .scroll-down {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        text-decoration: none;
        animation: bounce 2s infinite;
    }
    
    .scroll-down span {
        margin-top: 10px;
        font-size: 0.9rem;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
        40% {transform: translateY(-20px) translateX(-50%);}
        60% {transform: translateY(-10px) translateX(-50%);}
    }
    
    /* تأثيرات حبات القهوة العائمة */
    .floating-bean {
        position: absolute;
        z-index: 5;
        animation: float 8s infinite ease-in-out;
        filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3));
        max-width: 80px;
    }
    
    .bean-1 {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }
    
    .bean-2 {
        top: 70%;
        left: 80%;
        animation-delay: 2s;
    }
    
    .bean-3 {
        top: 40%;
        left: 85%;
        animation-delay: 4s;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-30px) rotate(10deg); }
    }

.txetraed {
    padding: 7px;
}

h1, h2, h3, h4, h5, h6,
.font-secondary {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    padding: 0px 20px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.btn {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: #97755b;
    border-color: #97755b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(232, 143, 42, 0.2);
}

.btn-outline-primary {
    color: #97755b;
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: #97755b;
    color: var(--light);
}

.btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    background-color: #97755b;
}



.icon-link {
    color: #97755b;
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.icon-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    transform: translateY(-3px);
}

.cart-icon {
    position: relative;
}

/* .cart-count {
    position: absolute;
    top: -5px;
    left: -5px;
    background-color: #e5d8c8;
    color: #2b2825;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
} */



.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-shape .shape-1 {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(232, 143, 42, 0.1);
}

.hero-shape .shape-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(232, 143, 42, 0.1);
}

.hero-shape .shape-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(232, 143, 42, 0.05);
    transform: translate(-50%, -50%);
}

/* Video Play Button */
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--light);
    transition: var(--transition);
}

.btn-play:hover {
    transform: scale(1.1);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #e82a2a;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

/* About Section */
.about-img {
    height: 100%;
    min-height: 400px;
}

.about-img img {
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-color: #97755b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border-top-left-radius: 50%;
}

.about-experience h2 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-feature {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.icon-box {
    width: 60px;
    height: 60px;
    transition: var(--transition);
}

.about-feature:hover .icon-box {
    background-color: var(--dark) !important;
    transform: rotate(45deg);
}

.about-feature:hover .icon-box i {
    transform: rotate(-45deg);
}

.about-feature .icon-box i {
    transition: var(--transition);
}

/* Product Slider */
.product-slider-container {
    position: relative;
    padding: 0 50px;
}

.products-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0;
}

.products-wrapper::-webkit-scrollbar {
    display: none;
}

.products-track {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.product-card-slider {
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    scroll-snap-align: start;
    flex: 0 0 300px;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff4d4d, #f9cb28);
    color: var(--light);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

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

.product-info {
    padding: 1.25rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-description {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    min-height: 40px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price del {
    font-size: 0.9rem;
    color: var(--gray);
    margin-left: 0.5rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--light);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.product-slider-container:hover .slider-btn {
    opacity: 1;
    visibility: visible;
}

.slider-btn:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    right: 0;
}

.next-btn {
    left: 0;
}

/* Featured Products */
.featured-product-card {
    position: relative;
    border-radius: 10px;
    transition: var(--transition);
    overflow: hidden;
}

/* .featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow:  0 15px 30px rgba(0, 0, 0, 0.2);
} */

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--light);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 1;
}

/* Coffee Machines */
/* .machine-card {
    background-color: var(--light);
    border: 3px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.machine-card:hover {
    background-color: #97755b !important;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(232, 143, 42, 0.2);
}

.machine-card:hover h5 {
    color: var(--light);
}

.machine-icon {
    transition: var(--transition);
}

.machine-card:hover .machine-icon {
    background-color: var(--light) !important;
    color: var(--primary) !important;
    transform: scale(1.1);
} */

/* Roasting Process */
/* .roasting-steps {
    position: relative;
    padding-right: 30px;
} */

/* .roasting-steps::before {
    content: "";
    position: absolute;
    top: 0;
    right: 15px;
    height: 100%;
    width: 2px;
    background-color: #97755b;
    opacity: 0.2;
} */

.text-primary{
    color: #97755b !important;
}
.bg-primary{
    background-color: #97755b !important;
}
.roasting-step {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.roasting-step.active {
    background-color: #97755b;
    color: var(--light);
}

.roasting-step.active .step-number {
    background-color: var(--light);
    color: #97755b;
}

.roasting-step.active h5,
.roasting-step.active p {
    color: var(--light);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background-color: #97755b;
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    /* box-shadow: 0 5px 15px rgba(232, 143, 42, 0.3); */
    transition: var(--transition);
}

.step-content h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-item {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.testimonial-rating {
    color: #ffc107;
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background-color: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
}

.testimonial-carousel .owl-dot.active {
    background-color: var(--primary) !important;
    transform: scale(1.3);
}

/* Blog */
.blog-card {
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    transition: transform 0.5s;
}

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

/* Newsletter */
.newsletter-form .form-control {
    height: 50px;
    border-radius: 50px 0 0 50px !important;
    border-right: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0 !important;
    padding: 0 25px;
}

/* Footer */
/* .footer-about img {
    max-height: 40px;
} */

.footer-links h5,
.footer-contact h5 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h5::after,
.footer-contact h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.footer-links ul li a {
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary) !important;
    padding-right: 10px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 5px;
    margin-right: 10px;
    color: var(--primary);
}

.footer-social .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social .btn:hover {
    transform: translateY(-5px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    transition: var(--transition);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
    .section-title h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .product-slider-container {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .section-title h1 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.2rem;
    }
    
    .footer-links h5,
    .footer-contact h5 {
        font-size: 1.2rem;
    }
}


/*  */
/* تنسيقات شريط الصور في قسم البطل */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* نقاط التحكم */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* تأثيرات الانتقال بين الصور */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}
/*  */
/*  */



/*  */
/*  */



/* جديد الصوره في الاعلى  */


.hero-full {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: scaleBackground 20s infinite alternate;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 40, 37, 0.85) 0%, rgba(43, 40, 37, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px;
}

.hero-text {
    max-width: 700px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    display: block;
    font-size: 1.3rem;
    color: #97755b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    direction: ltr;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 25px;
    direction: ltr;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-primary {
    color: var(--primary);
}

.hero-description
 {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.8;
    direction: ltr;
    color: #ffffff;
}

.hero-buttons {
    display: flex
;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    direction: ltr;
    margin-left: -363px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}



.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #97755b;
    color: #fff;
    /* box-shadow: 0 5px 20px rgb(151 117 91); */
}



.video-button {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-play {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.btn-play::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
}

.btn-play span {
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    margin-right: -3px;
}

.play-text {
    font-weight: 500;
    font-size: 1.1rem;
    color: #97755b;
}

.hero-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-bean {
    position: absolute;
    width: 50px;
    height: auto;
    opacity: 0.8;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3));
    animation: float 8s infinite ease-in-out;
}

.bean-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bean-2 {
    top: 70%;
    left: 80%;
    animation-delay: 2s;
}

.bean-3 {
    top: 40%;
    left: 85%;
    animation-delay: 4s;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.8rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

@keyframes scaleBackground {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    70% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-full {
        min-height: 700px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 15px 30px;
    }
}

.hero-texts {
    opacity: 1;
    transform: translateZ(0);
    /* margin-right: 9px; */
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .video-button {
        margin-top: 10px;
    }
    
    .floating-bean {
        width: 40px;
    }
}



/*  شريط المنتجات ----------------------------------------------------------------- */


    /* تحسينات قسم المنتجات */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
    
    .product-card {
        background: white;
        border: 2px ridge;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .product-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(to right, #E88F2A, #d47d22);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: bold;
        z-index: 2;
    }
    
    .product-image-container {
        height: 250px;
        position: relative;
        overflow: hidden;
    }
    
    .product-main-image {
        width: 100%;
        height: 100%;
        object-fit: contain; /* هذا هو المفتاح للحفاظ على نسبة العرض دون قص */
        object-position: center;
    }
    
    .product-card:hover .product-main-image {
        transform: scale(1.05);
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #2B2825;
    }
    
    .product-description {
        color: #6c757d;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .image-scroller {
        height: 80px;
        /* overflow: hidden; */
        position: relative;
        margin-bottom: 15px;
    }
    
    .scroller-inner {
        display: flex;
        gap: 10px;
        animation: scroll 15s linear infinite;
        width: calc(200% + 30px);
    }
    
    .related-item {
        flex: 0 0 80px;
    }

    
    .related-item img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .related-item img:hover {
        transform: scale(1.1);
    }
    
    .price-action {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .product-price {
        font-weight: bold;
        color: #E88F2A;
        font-size: 1.2rem;
    }
    
    .product-price del {
        color: #6c757d;
        font-size: 0.9rem;
        margin-left: 5px;
    }
    
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .products-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    
    @media (max-width: 992px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 576px) {
        .products-grid {
            grid-template-columns: 1fr;
        }
    }




/*  */
/*  */


/*  */







.img-pro {
    width: 65%;
    height: 104%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


lef-mm {
    margin-left: 20px;
    padding-right: 16px;
}















/* التنسيق العام */
.luxe-coffee-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* حاوية الصورة */
.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* تغيير أسلوب عرض الصورة */
.image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxe-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* تعديلات للهواتف */
@media (max-width: 768px) {
    .luxe-coffee-hero {
        height: auto;
        min-height: 100vh;
    }
    
    .image-container {
        position: relative;
        height: 28%;
        min-height: 30vh;
    }
    
    .luxe-image {
        width: 100%;
        height: auto;
    }
}

/* تعديلات للشاشات الكبيرة جداً */
@media (min-width: 2000px) {
    .luxe-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}










/* style
 */