:root{--brand:#049b44;--brand-dark:#037a36;--brand-light:#07b854;--brand-soft:#f3f3f3;}
/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Cairo', Arial, sans-serif; /* تم إضافة خط Cairo */
    direction: rtl;
    background: #fbfbfb;
    overflow-x: hidden;
}

/* Slider Styles */
.slider-wrapper {
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3rem;
    margin: 0;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-family: 'Cairo', sans-serif;
}

.slide-content h2 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Cairo', sans-serif;
}

.slide-txt {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 2rem;
}

.slide-txt p {
    margin: 0;
    max-width: 100%;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Cairo', sans-serif;
}

.slider-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--brand);
    border: 2px solid var(--brand);
    color: white;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Cairo', sans-serif;
}

.slider-button:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slider-nav-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    text-align: center;
    z-index: 2;
}

.slider-dots {
    display: inline-block;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 7px;
}

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

.slider-dots .dot:hover {
    background-color: var(--brand);
    transform: scale(1.1);
}

/* قسم نبذة عن الشركة */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 60px;
}

/* تعديل: نقل الصورة للأعلى مع هامش قليل */
.about-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    width: calc(100% - 30px);
    margin: 0 15px 40px 15px;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

.about-image:hover img {
    transform: scale(1.03);
}

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

.about-title {
    font-size: 2.5rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
}

.about-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-features li {
    font-size: 1rem;
    color: #444;
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-family: 'Cairo', sans-serif;
}

.about-features li i {
    color: var(--brand);
    margin-left: 10px;
    font-size: 1.1rem;
}

/* قسم الصور الثلاثة */
.about-image-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 0;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.about-image-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 450px;
    margin: 0;
}

.about-image-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-image-box .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.about-image-box:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
    transition: all 0.3s ease;
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.image-overlay p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #f0f0f0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

.box-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--brand);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid var(--brand);
    font-family: 'Cairo', sans-serif;
}

.box-button:hover {
    background-color: transparent;
    color: var(--brand);
}

/* قسم المقالات */
.articles-section {
    padding: 60px 10px;
    background-color: #f9f9f9;
    text-align: right;
    direction: rtl;
}

.articles-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* المقال الرئيسي */
.spotlight {
    text-align: right;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.spotlight img {
    width: 100%;
    border-radius: 5px;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.spotlight h1 {
    font-size: 22px;
    color: var(--brand);
    font-weight: bold;
    margin: 10px 0;
    width: 100%;
    text-align: right;
    padding-right: 0;
    font-family: 'Cairo', sans-serif;
}

.spotlight h1 a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: right;
}

.spotlight h1 a:hover {
    color: var(--brand-dark);
}

.spotlight p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align: right;
    width: 100%;
    margin: 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Cairo', sans-serif;
}

/* قائمة المقالات المميزة */
.articles-header {
    font-size: 1.8rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
    text-align: right;
    padding-right: 0;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.articles {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.articles li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: right;
    transition: background-color 0.3s ease;
}

.articles li:last-child {
    border-bottom: none;
}

.articles li:hover {
    background-color: rgba(4,155,68,0.05);
}

.articles a {
    text-decoration: none;
    font-size: 16px;
    color: var(--brand);
    font-weight: bold;
    display: block;
    padding: 5px 0 5px 10px;
    transition: all 0.3s ease;
    position: relative;
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

.articles a:hover {
    color: var(--brand-dark);
    padding-left: 15px;
}

/* السهم في نهاية العنوان */
.articles a::after {
    content: "←";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.articles a:hover::after {
    left: 5px;
    opacity: 1;
}

/* قسم المنتجات المعدل مع Swiper */
.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.products-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

/* شريط العنوان المحسن */
.section-title-container {
    text-align: center;
    margin-bottom: 60px; /* تم زيادة من 50px إلى 60px */
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 25px; /* تم زيادة من 20px إلى 25px */
    position: relative;
    display: inline-block;
    padding-bottom: 30px; /* تم زيادة من 25px إلى 30px */
    font-family: 'Cairo', sans-serif;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark));
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px; /* تم زيادة من 30px إلى 40px */
    line-height: 1.7;
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    padding: 0 20px;
}

/* Swiper Container */
.swiper-container-wrapper {
    position: relative;
    padding: 20px 0 60px;
    overflow: hidden;
    width: 100%;
}

/* Swiper Container */
.swiper {
    width: 100%;
    height: auto;
    padding: 20px 0;
    overflow: hidden !important;
}

/* Swiper Slides */
.swiper-slide {
    width: 85%;
    max-width: 520px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    opacity: 1;
    transition: transform 0.25s ease;
    margin: 0;
}

/* إظهار كارت ونص (Peek) بدون Coverflow */
@media (min-width: 900px) {
    .swiper-slide { width: 360px; }
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 10px !important;
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--brand);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(4,155,68,0.20);
}

.swiper-pagination-bullet:hover {
    background: var(--brand);
    transform: scale(1.2);
}

/* كروت المنتجات (Yara-style card — DESIGN ONLY) */
.product-card{
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
    user-select: none;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 26px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

/* صورة المنتج أعلى الكارت */
.product-image-container{
    width: 100%;
    height: 300px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img{
    max-width: 86%;
    max-height: 86%;
    object-fit: contain;
    display: block;
}

.product-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--brand);
    font-size: 3.2rem;
}

/* الشارة العلوية (اسم الشركة) */
.product-brand {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--brand);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    font-family: 'Cairo', sans-serif;
    color: #fff;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
}

/* معلومات المنتج (المقفل) */
.product-info{
    padding: 28px;
    text-align: right;
    background: #f2f2f2;
}

.product-card span{
    display:block;
    font-size: 1.15rem;
    color:#666;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-card h4{
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color:#111;
    line-height: 1.15;
}

/* المنسدِل عند الضغط */
.product-details{
    position: absolute;
    inset: 0;
    background: #ffffff;
    padding: 34px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: all .28s ease;
    border-radius: 10px;
    box-sizing: border-box;
    overflow-y: auto;
    z-index: 4;
}

.product-card.active .product-details{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.product-details h5{
    font-size: 1.9rem;
    margin: 0 0 18px 0;
    font-weight: 800;
    color:#111;
    text-align: right;
}

.product-details p{
    font-size: 1.05rem;
    line-height: 1.9;
    color:#444;
    margin: 0 0 26px 0;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Learn more */
.product-details a{
    display:inline-block;
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
}

.product-details a:hover{ text-decoration: underline; }

/* زر عرض الكل */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(4,155,68,0.30);
    border: none;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(4,155,68,0.40);
    gap: 15px;
}

.view-all-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(-5px);
}

/* لا توجد منتجات */
.no-products {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-products-content {
    text-align: center;
    padding: 40px;
}

.no-products-content i {
    font-size: 4rem;
    color: var(--brand);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products-content p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

/* تحسينات للاستجابة */
@media (max-width: 1400px) {
    .products-section .container {
        padding: 0 20px;
    }
    
    .swiper {
        height: 500px;
    }
    
    .swiper-slide {
        width: 300px;
        height: 430px;
    }
    
    .product-image-container {
        height: 340px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        margin-bottom: 35px;
    }
}

@media (max-width: 1200px) {
    .about-section .container {
        padding: 0 15px;
    }
    
    .about-image {
        width: calc(100% - 30px);
        margin: 0 15px 40px 15px;
    }
    
    .about-image-boxes {
        padding: 0 15px;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        padding-bottom: 25px;
    }
    
    .section-subtitle {
        margin-bottom: 35px;
    }
    
    .swiper {
        height: 480px;
    }
    
    .swiper-slide {
        width: 280px;
        height: 410px;
    }
    
    .product-image-container {
        height: 320px;
    }
    
    .product-card h4 {
        font-size: 20px;
    }
    
    .product-card span {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .about-content {
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .products-section {
        padding: 60px 0;
    }
    
    .section-title-container {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 18px;
        padding-bottom: 22px;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        max-width: 700px;
        margin-bottom: 30px;
    }
    
    .swiper {
        height: 460px;
        padding: 15px 0;
    }
    
    .swiper-slide {
        width: 260px;
        height: 390px;
    }
    
    .swiper-slide-next {
        transform: translateX(-35%) scale(0.9);
    }
    
    .swiper-slide-prev {
        transform: translateX(35%) scale(0.9);
    }
    
    .product-image-container {
        height: 300px;
    }
    
    .product-card h4 {
        font-size: 19px;
    }
    
    .product-card span {
        font-size: 15px;
    }
    
    .product-details h5 {
        font-size: 20px;
    }
    
    .product-details p {
        -webkit-line-clamp: 6;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-section .container {
        padding: 0 15px;
    }
    
    .about-image {
        width: calc(100% - 30px);
        margin: 0 15px 40px 15px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .about-image-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .about-image-box {
        height: 400px;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .products-section .container {
        padding: 0 15px;
    }
    
    .section-title-container {
        margin-bottom: 45px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
        padding-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .swiper-container-wrapper {
        padding: 15px 0 50px;
    }
    
    .swiper {
        height: 440px;
    }
    
    .swiper-slide {
        width: 240px;
        height: 370px;
    }
    
    .swiper-slide-active {
        transform: scale(1.03);
    }
    
    .swiper-slide-next {
        transform: translateX(-30%) scale(0.85);
    }
    
    .swiper-slide-prev {
        transform: translateX(30%) scale(0.85);
    }
    
    .product-brand {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .product-image-container {
        height: 280px;
    }
    
    .product-card h4 {
        font-size: 18px;
        margin: 0 0 10px 0;
    }
    
    .product-card span {
        font-size: 14px;
    }
    
    .product-info {
        padding: 18px 12px;
    }
    
    .product-details {
        padding: 22px;
    }
    
    .product-details h5 {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .product-details p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
        -webkit-line-clamp: 6;
    }
    
    .product-details a {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .view-all-btn {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-section .container {
        padding: 0 10px;
    }
    
    .about-image {
        width: calc(100% - 20px);
        margin: 0 10px 30px 10px;
    }
    
    .about-image-boxes {
        padding: 0 10px;
        gap: 15px;
    }
    
    .products-section {
        padding: 40px 0;
    }
    
    .section-title-container {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding-bottom: 15px;
        margin-bottom: 12px;
    }
    
    .section-title::after {
        width: 100px;
        height: 4px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .swiper-container-wrapper {
        padding: 10px 0 40px;
    }
    
    .swiper {
        height: 420px;
        padding: 10px 0;
    }
    
    .swiper-slide {
        width: 220px;
        height: 350px;
    }
    
    .swiper-slide-active {
        transform: scale(1.02);
    }
    
    .swiper-slide-next {
        transform: translateX(-25%) scale(0.8);
    }
    
    .swiper-slide-prev {
        transform: translateX(25%) scale(0.8);
    }
    
    .product-brand {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    
    .product-image-container {
        height: 260px;
    }
    
    .product-card h4 {
        font-size: 17px;
        margin: 0 0 8px 0;
    }
    
    .product-card span {
        font-size: 13px;
    }
    
    .product-info {
        padding: 15px 10px;
    }
    
    .product-details {
        padding: 20px;
    }
    
    .product-details h5 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .product-details p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        -webkit-line-clamp: 5;
    }
    
    .product-details a {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px !important;
    }
    
    .view-all-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-image-box {
        height: 350px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .image-overlay {
        padding: 20px;
    }
    
    .image-overlay h3 {
        font-size: 1.3rem;
    }
    
    .image-overlay p {
        font-size: 0.9rem;
    }
    
    .section-title-container {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        padding: 0 10px;
    }
    
    .swiper {
        height: 400px;
    }
    
    .swiper-slide {
        width: 200px;
        height: 330px;
    }
    
    .product-image-container {
        height: 240px;
    }
    
    .product-card h4 {
        font-size: 16px;
        margin: 0 0 6px 0;
    }
    
    .product-card span {
        font-size: 12px;
    }
    
    .product-details p {
        -webkit-line-clamp: 4;
    }
}