:root {
    --primary-orange: #FF8C00; /* Logodaki Turuncu */
    --secondary-grey: #6c757d; /* Logodaki Gri */
    --light-grey: #f0f2f5; /* Arka plan */
    --dark-text: #343a40; /* Ana Metin Rengi */
    --light-text: #ffffff; /* Açık Zemin Üzerine Metin */
    --dark-bg: #212529; /* Footer ve bazı arka planlar */
    --border-color: #e9ecef;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--light-grey);
    color: var(--dark-text);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: var(--light-text);
    color: var(--dark-text);
    padding: 5px 0;
    border-bottom: 3px solid var(--primary-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    flex-wrap: nowrap;
    max-width: 1200px;
    gap: 20px;
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0;
}

.logo img {
    height: 150px;
    max-width: 100%;
}

.header-center {
    flex-grow: 1;
    text-align: center;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-list li {
    position: relative;
    margin: 0 15px;
}

.nav-list li a {
    color: var(--dark-text);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: var(--primary-orange);
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--light-text);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 10px 10px;
    border-top: 3px solid var(--primary-orange);
    left: 0;
}

.dropdown-content a {
    color: var(--dark-text);
    padding: 8px 15px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: var(--light-grey);
    color: var(--primary-orange);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown .fa-chevron-down {
    margin-left: 5px;
    font-size: 0.7em;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 15px;
    margin-left: 0;
    position: relative;
}

/* B4B Login Button */
#b4b-login-btn {
    background-color: var(--primary-orange);
    color: var(--light-text);
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#b4b-login-btn:hover {
    background-color: #e67e00;
}

/* Language Menu Specific Styles */
.language-menu-container {
    position: relative;
    display: inline-block;
}

.language-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    color: var(--dark-text);
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}
.language-menu-toggle:hover {
    color: var(--primary-orange);
}
.language-menu-toggle .mobile-lang-view {
    display: none;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--light-text);
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
    padding: 5px 0;
    border-top: 3px solid var(--primary-orange);
    right: 0;
    top: 100%;
    list-style: none;
    margin: 0;
}

.language-dropdown-content.active {
    display: block;
}

.language-dropdown-content li a {
    color: var(--dark-text);
    padding: 8px 15px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 400;
    white-space: nowrap;
}

.language-dropdown-content li a:hover {
    background-color: var(--light-grey);
    color: var(--primary-orange);
}

/* Hero Section (Giriş Bölümü) */
.hero-section {
    background-image: url('../image/hero-banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

/* Hero Section overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-orange);
    font-size: 3.2em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1.4em;
    color: var(--light-text);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Sections */
section {
    padding: 60px 0;
    background-color: var(--light-text);
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
}

section:nth-child(even) {
    background-color: var(--light-grey);
}

h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-grey);
    margin: 10px auto 0;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.text-content, .image-content {
    flex: 1;
    min-width: 300px;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.text-content p, .values-list li {
    line-height: 1.7;
    color: var(--dark-text);
    font-size: 1.1em;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    background-color: var(--light-grey);
    margin-bottom: 10px;
    padding: 15px;
    border-left: 5px solid var(--primary-orange);
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
}

.values-list li strong {
    color: var(--primary-orange);
    margin-right: 10px;
    font-family: 'Montserrat', sans-serif;
}

.values-list li i {
    margin-right: 10px;
    color: var(--primary-orange);
    font-size: 1.2em;
}

/* Location Section */
.map-container {
    margin-top: 30px;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    margin: 0;
    font-size: 1.1em;
}

.contact-info strong {
    color: var(--primary-orange);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
    border-top: 3px solid var(--primary-orange);
}

footer p {
    margin: 5px 0;
}

footer a {
    color: var(--primary-orange);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* RTL adjustments */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .header-left {
    margin-left: auto;
    margin-right: 0;
}
body.rtl .header-right {
    margin-right: auto;
    margin-left: 0;
}

body.rtl .hero-section h1,
body.rtl .hero-section p {
    text-align: right;
}

body.rtl .values-list li {
    border-left: none;
    border-right: 5px solid var(--primary-orange);
    text-align: right;
}

body.rtl .values-list li strong,
body.rtl .values-list li i {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl .dropdown-content {
    left: unset;
    right: 0;
}
body.rtl .dropdown-content a {
    text-align: right;
}
body.rtl .dropdown .fa-chevron-down {
    margin-left: 0;
    margin-right: 5px;
}
body.rtl .header-left {
    align-items: center;
}
body.rtl .language-dropdown-content {
    right: 0;
    left: auto;
    text-align: right;
}
body.rtl .language-dropdown-content li a {
    text-align: right;
}

/* Main Navigation Hamburger Icon - Hidden by default for desktop */
.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8em;
    color: var(--dark-text);
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) { /* Tablet ve mobil için geçerli */
    .header-content-wrapper {
        flex-direction: row;
        justify-content: center; /* Merkeze hizala */
        align-items: center;
        padding: 10px 20px;
        gap: 20px; /* Öğeler arasında boşluk */
        flex-wrap: wrap; /* Taşmayı önlemek için sarma */
    }

    /* Ana Menü Hamburger (sol) */
    .header-center {
        order: 1;
        flex-grow: 0;
        text-align: left;
        margin-right: 0; /* Otomatik marjı kaldır */
    }

    /* Firma Logosu (orta) */
    .header-left {
        order: 2;
        flex-grow: 0; /* Flex-grow'u kaldır */
        text-align: center;
        margin: 0;
        display: flex; /* İçindeki logoyu dikeyde ve yatayda ortalamak için flex kullan */
        justify-content: center;
        align-items: center;
    }
    .header-left .logo {
        margin: 0;
    }
    .header-left img {
        display: block;
        margin: 0 auto;
    }

    /* B4B Login & Dil (sağ) */
    .header-right {
        order: 3;
        flex-direction: row;
        gap: 10px;
        margin-left: 0; /* Otomatik marjı kaldır */
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-text);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
        z-index: 999;
        padding: 15px 0;
        align-items: flex-start;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 0;
        width: 100%;
        text-align: left;
    }

    .nav-list li a {
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list li:last-child a {
        border-bottom: none;
    }

    .nav-toggle {
        display: block;
    }

    .language-menu-container {
        position: relative;
        display: inline-block;
    }
    .language-menu-toggle {
        font-size: 1.8em;
        padding: 0;
        color: var(--dark-text);
    }
    .language-menu-toggle .desktop-lang-view {
        display: none;
    }
    .language-menu-toggle .mobile-lang-view {
        display: block;
    }

    .language-dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: max-content;
        min-width: 120px;
        background-color: var(--light-text);
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
        z-index: 999;
        padding: 5px 0;
        border-top: 3px solid var(--primary-orange);
    }
    .language-dropdown-content.active {
        display: flex;
        flex-direction: column;
    }
    .language-dropdown-content li {
        width: 100%;
    }
    .language-dropdown-content li a {
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-color);
    }
    .language-dropdown-content li:last-child a {
        border-bottom: none;
    }
    #b4b-login-btn {
        padding: 6px 10px;
        font-size: 0.8em;
        width: auto;
        max-width: none;
    }

    /* Diğer section'lar için mobil düzen */
    .hero-section {
        padding: 60px 0;
    }
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section p {
        font-size: 1.2em;
    }
    .section-content {
        flex-direction: column;
        text-align: center;
    }
    .text-content, .image-content {
        min-width: unset;
        width: 100%;
    }
    .values-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .values-list li strong, .values-list li i {
        margin-bottom: 5px;
        margin-right: 0;
        margin-left: 0;
    }
    body.rtl .values-list li {
        border-right: none;
        border-left: 5px solid var(--primary-orange);
    }

    /* Product Page Specific Styles */
    .product-page-container {
        flex-direction: column;
        padding-top: 20px;
    }

    .sidebar {
        flex: none;
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }

    .product-content {
        flex: none;
        width: 100%;
        padding: 20px;
    }

    .product-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-content h2 {
        text-align: center;
    }

    .product-content h2::after {
        margin: 10px auto 0;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2em;
    }
    .hero-section h1 {
        font-size: 2em;
    }
    .hero-section p {
        font-size: 1.1em;
    }
    .logo-slide { margin: 0 15px; }
    .logo-slide img { max-height: 90px; max-width: 160px; }
    .brands-title { font-size: 1.7em; }
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .header-content-wrapper {
        padding: 8px 15px;
    }
    .logo img {
        height: 60px;
    }
    .nav-toggle {
        font-size: 1.6em;
    }
    #b4b-login-btn {
        font-size: 0.75em;
        padding: 5px 8px;
    }
    h2 {
        font-size: 1.8em;
    }
    .text-content p, .values-list li {
        font-size: 1em;
    }
    .hero-section h1 {
        font-size: 1.6em;
    }
    .hero-section p {
        font-size: 0.9em;
    }
    .hero-section {
        padding: 40px 0;
    }
    .social-float-container {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    .social-float-button {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    .logo-slide { margin: 0 10px; }
    .logo-slide img { max-height: 70px; max-width: 140px; }
    .brands-title { font-size: 1.5em; }
}

.social-float-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.social-float-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-float-button:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.whatsapp-float {
    background-color: #25d366;
}

.facebook-float {
    background-color: #1877F2;
}

.instagram-float {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
/* IRAK MARKALARI SLIDER STİLLERİ */
.brands-section {
    padding: 40px 0;
    background-color: var(--light-text);
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}
.brands-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    position: relative;
}
.brands-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-grey);
    margin: 10px auto 0;
}
.logo-slider {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
.logo-track {
    display: flex;
    animation: scroll 30s linear infinite;
    min-width: 100%;
    animation-play-state: running;
    transition: animation-play-state 0.3s ease;
}
.logo-slide {
    flex: 0 0 auto;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-slide img {
    max-height: 120px;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.logo-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 6 * 12)); }
}
/* Mobil Uyum */
@media (max-width: 768px) {
    .logo-slide { margin: 0 15px; }
    .logo-slide img { max-height: 90px; max-width: 160px; }
    .brands-title { font-size: 1.7em; }
}
@media (max-width: 480px) {
    .logo-slide { margin: 0 10px; }
    .logo-slide img { max-height: 70px; max-width: 140px; }
    .brands-title { font-size: 1.5em; }
}
.social-float-button {
    text-decoration: none !important;
}
/* KATALOGLAR BÖLÜMÜ */
.catalog-section {
    padding: 60px 0;
    background-color: var(--light-text);
    margin-bottom: 20px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.catalog-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.catalog-thumbnail {
    height: 200px;
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-thumbnail img {
    max-height: 80%;
    max-width: 80%;
}

.catalog-info {
    padding: 20px;
    background-color: white;
}

.catalog-info h3 {
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.download-btn {
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #e67e00;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.anchor-target {
    scroll-margin-top: 180px!important;
}
/* Product Page Specific Styles */
.product-page-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 600px;
}

.sidebar {
    flex: 0 0 280px;
    background-color: var(--light-text);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.product-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-menu .main-categories > .product-category {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.product-menu .main-categories > .product-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Ürün Menüsü - Kategori Başlıkları için Stil (Güncellendi) */
.product-category .category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-text);
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05em;
}

.product-category .category-header:hover {
    color: var(--primary-orange);
}

.product-category .category-header .toggle-icon {
    font-size: 0.9em;
    color: var(--secondary-grey);
    transition: transform 0.3s ease;
}

.product-category .category-header .toggle-icon.fa-minus {
    transform: rotate(180deg);
}

/* Ürün Menüsü - Alt Kategoriler İçin (Güncellendi) */
.product-subcategories {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
    display: none;
}

.product-subcategories .product-category .category-header {
    font-weight: 500;
    padding: 8px 0;
}

/* Ürün Menüsü - Tüm Linkler (product-item da dahil) için varsayılan stil (Güncellendi) */
.product-menu li a {
    display: block;
    padding: 8px 0;
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 0.95em;
}

.product-menu li a:hover,
.product-menu li a.active {
    color: var(--primary-orange);
    background-color: var(--light-grey);
    padding-left: 5px;
    font-weight: 600;
}

/* Alt ürünler için spesifik stil (mevcut .product-item yok, yeni ekleniyor) */
.product-menu .product-item {
    display: block;
    padding: 8px 10px;
    color: #495057;
    text-decoration: none;
    background-color: var(--light-grey);
    border-radius: 3px;
    transition: background-color 0.2s ease, color 0.2s ease;

    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 0.95em;
}

.product-menu .product-item:hover,
.product-menu .product-item.active {
    background-color: var(--primary-orange);
    color: var(--light-text);
    font-weight: 600;
}

/* En üst seviye "Ürünler" başlığı için özel stil (Güncellendi) */
.main-categories > .product-category > .category-header {
    background-color: var(--primary-orange);
    color: var(--light-text);
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-categories > .product-category > .category-header:hover {
    background-color: #e07b00;
}


.product-content {
    flex: 1;
    background-color: var(--light-text);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.product-content h2 {
    color: var(--primary-orange);
    text-align: left;
    margin-bottom: 20px;
    font-size: 2em;
}

.product-content h2::after {
    margin-left: 0;
}

.product-detail {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.product-detail .product-image {
    width: 100%;
    max-width: 500px;
    margin-bottom: 15px;
}

.product-detail .product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-detail .product-description p {
    line-height: 1.8;
    color: var(--dark-text);
    font-size: 1.1em;
}

/* RTL adjustments for product page */
body.rtl .sidebar {
    text-align: right;
}

body.rtl .product-menu .product-subcategories {
    padding-left: 0;
    padding-right: 15px;
}

body.rtl .product-menu li a {
    padding-left: 0;
    padding-right: 0;
}

body.rtl .product-menu li a:hover,
body.rtl .product-menu li a.active {
    padding-left: 0;
    padding-right: 5px;
}

body.rtl .product-content h2 {
    text-align: right;
}

body.rtl .product-content h2::after {
    margin-left: auto;
    margin-right: 0;
}

body.rtl .product-detail {
    align-items: flex-end;
}
.category { overflow-x: hidden; }
.category .subcategory { max-width: 100%; box-sizing: border-box; }
