/* =====================================================
   PRODUCT DETAIL PAGE
   File: assets/css/product-detail.css
===================================================== */

/*=====================================================
  SECTION BASE
===================================================== */

.Product-Detail {
    padding: 40px 0 80px;
    margin-top: 90px;
    background: #ffffff;
}

.Product-Detail .Container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/*=====================================================
  BREADCRUMB
===================================================== */

.Product-Breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.Product-Breadcrumb a {
    color: #0d4d8b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.Product-Breadcrumb a:hover {
    color: #F28C28;
}

.Product-Breadcrumb .current {
    color: #1e293b;
    font-weight: 600;
}

.Product-Breadcrumb span {
    color: #cbd5e1;
}

/*=====================================================
  PRODUCT MAIN
===================================================== */

.Product-Main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/*=====================================================
  IMAGE GALLERY
===================================================== */

.Product-Image-Gallery {
    position: relative;
}

.Product-Main-Image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8edf2;
    background: #f8fafc;
}

.Product-Main-Image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.Product-Main-Image img:hover {
    transform: scale(1.02);
}

.Product-Code-Badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(11, 43, 74, 0.85);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 8px;
}

/*=====================================================
  PRODUCT INFO
===================================================== */

.Product-Info {
    display: flex;
    flex-direction: column;
}

.Product-Category-Link {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(242, 140, 40, 0.10);
    color: #F28C28;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
    width: fit-content;
    transition: all 0.3s ease;
}

.Product-Category-Link:hover {
    background: #F28C28;
    color: #ffffff;
}

.Product-Title {
    font-size: 36px;
    font-weight: 800;
    color: #0B2B4A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.Product-Description-Text {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/*=====================================================
  QUICK INFO
===================================================== */

.Product-Quick-Info {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid #e8edf2;
    border-bottom: 1px solid #e8edf2;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.Quick-Info-Item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
}

.Quick-Info-Item i {
    color: #F28C28;
}

/*=====================================================
  PRODUCT ACTIONS
===================================================== */

.Product-Actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.Product-Actions .Btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.Product-Actions .Btn-Primary {
    background: #F28C28;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.30);
}

.Product-Actions .Btn-Primary:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.40);
}

.Product-Actions .Btn-Secondary {
    background: #0B2B4A;
    color: #ffffff;
}

.Product-Actions .Btn-Secondary:hover {
    background: #0d4d8b;
    transform: translateY(-3px);
}

.Product-Actions .Btn-WhatsApp {
    background: #25D366;
    color: #ffffff;
}

.Product-Actions .Btn-WhatsApp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/*=====================================================
  PRODUCT TABS
===================================================== */

.Product-Tabs {
    margin: 50px 0 60px;
}

.Product-Tabs-Header {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e8edf2;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.Tab-Btn {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.Tab-Btn:hover {
    color: #0B2B4A;
}

.Tab-Btn.active {
    color: #F28C28;
    border-bottom-color: #F28C28;
}

.Tab-Content {
    display: none;
    padding: 10px 0;
}

.Tab-Content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.Tab-Description {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
}

/*=====================================================
  FEATURES & APPLICATIONS LISTS
===================================================== */

.Features-List,
.Applications-List {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.Features-List li,
.Applications-List li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 15px;
    color: #475569;
}

.Features-List li i,
.Applications-List li i {
    color: #F28C28;
    font-size: 18px;
    flex-shrink: 0;
}

/*=====================================================
  CUSTOMIZATION
===================================================== */

.Customization-Content h3 {
    font-size: 22px;
    color: #0B2B4A;
    margin-bottom: 16px;
}

.Customization-Content h3 i {
    color: #F28C28;
}

.Customization-Content > p {
    color: #475569;
    font-size: 16px;
    margin-bottom: 16px;
}

.Customization-Content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.Customization-Content ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 15px;
}

.Customization-Content ul li i {
    color: #F28C28;
    font-size: 16px;
}

.Customization-CTA {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8edf2;
}

.Customization-CTA p {
    font-size: 18px;
    font-weight: 600;
    color: #0B2B4A;
    margin-bottom: 16px;
}

.Customization-CTA .Btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.Customization-CTA .Btn-Primary {
    background: #F28C28;
    color: #ffffff;
}

.Customization-CTA .Btn-Primary:hover {
    background: #d97706;
    transform: translateY(-3px);
}

/*=====================================================
  RELATED PRODUCTS
===================================================== */

.Related-Products {
    margin: 50px 0 60px;
}

.Related-Title {
    font-size: 28px;
    font-weight: 700;
    color: #0B2B4A;
    margin-bottom: 30px;
}

.Related-Grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.Related-Item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
}

.Related-Item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: #F28C28;
}

.Related-Item a {
    text-decoration: none;
    display: block;
}

.Related-Image {
    height: 150px;
    overflow: hidden;
    background: #f8fafc;
}

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

.Related-Item:hover .Related-Image img {
    transform: scale(1.05);
}

.Related-Name {
    font-size: 15px;
    font-weight: 600;
    color: #0B2B4A;
    padding: 14px 16px 8px;
    margin: 0;
}

.Related-Link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #0d4d8b;
    transition: all 0.3s ease;
}

.Related-Item:hover .Related-Link {
    color: #F28C28;
}

.Related-Link i {
    transition: transform 0.3s ease;
}

.Related-Item:hover .Related-Link i {
    transform: translateX(4px);
}

/*=====================================================
  PRODUCT CTA
===================================================== */

.Product-CTA {
    background: #0B2B4A;
    border-radius: 16px;
    padding: 50px 60px;
    text-align: center;
    margin-top: 20px;
}

.Product-CTA-Content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.Product-CTA-Content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 24px;
}

.Product-CTA-Buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.Product-CTA-Buttons .Btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.Product-CTA-Buttons .Btn-Primary {
    background: #F28C28;
    color: #ffffff;
}

.Product-CTA-Buttons .Btn-Primary:hover {
    background: #d97706;
    transform: translateY(-3px);
}

.Product-CTA-Buttons .Btn-Secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.Product-CTA-Buttons .Btn-Secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/*=====================================================
  RESPONSIVE
===================================================== */

/* Large Tablets */
@media (max-width: 1024px) {
    .Product-Main {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .Product-Main-Image img {
        height: 350px;
    }
    
    .Related-Grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .Product-Detail {
        margin-top: 70px;
        padding: 30px 0 60px;
    }
    
    .Product-Title {
        font-size: 28px;
    }
    
    .Product-Main-Image img {
        height: 280px;
    }
    
    .Product-Actions {
        flex-direction: column;
    }
    
    .Product-Actions .Btn {
        width: 100%;
        justify-content: center;
    }
    
    .Features-List,
    .Applications-List {
        grid-template-columns: 1fr;
    }
    
    .Related-Grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .Product-CTA {
        padding: 35px 25px;
    }
    
    .Product-CTA-Content h3 {
        font-size: 24px;
    }
    
    .Product-CTA-Content p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .Product-Detail {
        padding: 20px 0 50px;
    }
    
    .Product-Title {
        font-size: 24px;
    }
    
    .Product-Main-Image img {
        height: 220px;
    }
    
    .Product-Breadcrumb {
        font-size: 12px;
        gap: 4px;
    }
    
    .Product-Breadcrumb a,
    .Product-Breadcrumb span {
        font-size: 12px;
    }
    
    .Related-Grid {
        grid-template-columns: 1fr;
    }
    
    .Product-CTA-Buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .Product-CTA-Buttons .Btn {
        width: 100%;
        justify-content: center;
    }
    
    .Product-Tabs-Header {
        gap: 2px;
    }
    
    .Tab-Btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .Customization-CTA {
        padding: 20px;
    }
    
    .Customization-CTA .Btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .Product-Title {
        font-size: 20px;
    }
    
    .Tab-Btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/*=====================================================
  RTL SUPPORT
===================================================== */

[dir="rtl"] .Product-Breadcrumb {
    text-align: right;
    flex-direction: row; /* إلغاء row-reverse */
}

[dir="rtl"] .Product-Breadcrumb span {
    margin: 0 4px;
}

[dir="rtl"] .Product-Breadcrumb .current {
    margin-left: 0;
    margin-right: 4px;
}

[dir="rtl"] .Features-List li,
[dir="rtl"] .Applications-List li {
    flex-direction: row-reverse;
}

[dir="rtl"] .Features-List li i,
[dir="rtl"] .Applications-List li i {
    margin-left: 0;
    margin-right: 12px;
}

[dir="rtl"] .Related-Link i {
    transform: scaleX(-1);
}

[dir="rtl"] .Related-Item:hover .Related-Link i {
    transform: scaleX(-1) translateX(4px);
}

[dir="rtl"] .Customization-Content ul li {
    flex-direction: row-reverse;
}

[dir="rtl"] .Product-Quick-Info {
    flex-direction: row-reverse;
}

[dir="rtl"] .Product-Code-Badge {
    left: auto;
    right: 16px;
}

[dir="rtl"] .Product-Category-Link {
    align-self: flex-start;
}

[dir="rtl"] .Product-CTA-Buttons {
    flex-direction: row-reverse;
}

/* RTL - TABS */
[dir="rtl"] .Tab-Btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .Tab-Btn i {
    margin-left: 0;
    margin-right: 6px;
}

[dir="rtl"] .Feature-Detailed-Item,
[dir="rtl"] .Application-Detailed-Item {
    flex-direction: row-reverse;
}

[dir="rtl"] .Customization-Simple {
    flex-direction: row-reverse;
}

/* عكس الأسهم في الأزرار */
[dir="rtl"] .Product-Actions .Btn i,
[dir="rtl"] .Customization-CTA .Btn i,
[dir="rtl"] .Product-CTA-Buttons .Btn i {
    transform: scaleX(-1);
    display: inline-block;
}

@media (max-width: 768px) {
    [dir="rtl"] .Product-CTA-Buttons {
        flex-direction: column-reverse;
    }
    
    [dir="rtl"] .Customization-Simple {
        flex-direction: column;
    }
}

/*=====================================================
  ANIMATIONS
===================================================== */

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

.Product-Main {
    animation: slideUp 0.6s ease forwards;
}

.Product-Tabs {
    animation: slideUp 0.7s ease forwards 0.2s;
    opacity: 0;
}

.Related-Products {
    animation: slideUp 0.7s ease forwards 0.4s;
    opacity: 0;
}

/*=====================================================
  PRINT STYLES
===================================================== */

@media print {
    .Product-Detail {
        margin-top: 0;
        padding: 20px 0;
    }
    
    .Product-Actions,
    .Product-CTA,
    .Product-Tabs-Header {
        display: none;
    }
    
    .Tab-Content {
        display: block !important;
    }
    
    .Tab-Content:not(#tab-description) {
        display: none !important;
    }
    
    .Product-Image-Gallery {
        max-width: 400px;
    }
    
    .Related-Products {
        page-break-before: avoid;
    }
}

/* =====================================================
   PRODUCT DETAIL PAGE - IMPROVED TABS
   File: assets/css/product-detail.css
===================================================== */

/*=====================================================
  PRODUCT TABS - IMPROVED
===================================================== */

.Product-Tabs {
    margin: 50px 0 60px;
}

.Product-Tabs-Header {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #e8edf2;
    margin-bottom: 35px;
    flex-wrap: wrap;
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
    padding: 6px 6px 0 6px;
}

.Tab-Btn {
    padding: 14px 28px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.Tab-Btn i {
    font-size: 16px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.Tab-Btn:hover {
    color: #0B2B4A;
    background: rgba(255, 255, 255, 0.5);
}

.Tab-Btn:hover i {
    color: #F28C28;
}

.Tab-Btn.active {
    color: #F28C28;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.04);
}

.Tab-Btn.active i {
    color: #F28C28;
}

.Tab-Btn .tab-count {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    background: #e8edf2;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.Tab-Btn.active .tab-count {
    background: #F28C28;
    color: #ffffff;
}

.Tab-Content {
    display: none;
    padding: 10px 0;
}

.Tab-Content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

/*=====================================================
  TAB - DESCRIPTION
===================================================== */

.Tab-Description {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
    padding: 10px 0;
}

.Tab-Description p {
    margin-bottom: 16px;
}

.Tab-Description p:last-child {
    margin-bottom: 0;
}

/*=====================================================
  TAB - FEATURES (Detailed)
===================================================== */

.Features-Detailed-Grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.Feature-Detailed-Item {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.Feature-Detailed-Item:hover {
    border-color: #F28C28;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.Feature-Detailed-Icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F28C28;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.Feature-Detailed-Item:hover .Feature-Detailed-Icon {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.30);
}

.Feature-Detailed-Content {
    flex: 1;
}

.Feature-Detailed-Content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B2B4A;
    margin-bottom: 4px;
}

.Feature-Detailed-Content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/*=====================================================
  TAB - APPLICATIONS (Detailed)
===================================================== */

.Applications-Detailed-Grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.Application-Detailed-Item {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.Application-Detailed-Item:hover {
    border-color: #54B448;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.Application-Detailed-Icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #54B448;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.Application-Detailed-Item:hover .Application-Detailed-Icon {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(84, 180, 72, 0.30);
}

.Application-Detailed-Content {
    flex: 1;
}

.Application-Detailed-Content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B2B4A;
    margin-bottom: 4px;
}

.Application-Detailed-Content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/*=====================================================
  TAB - CUSTOMIZATION
===================================================== */

.Customization-Content {
    padding: 10px 0;
}

.Customization-Content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0B2B4A;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.Customization-Content h3 i {
    color: #F28C28;
}

.Customization-Content > p {
    color: #475569;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Customization Simple */
.Customization-Simple {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e8edf2;
    margin: 15px 0 30px;
    transition: all 0.3s ease;
}

.Customization-Simple:hover {
    border-color: #F28C28;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.Customization-Simple-Icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F28C28;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.Customization-Simple:hover .Customization-Simple-Icon {
    transform: rotate(90deg);
}

.Customization-Simple-Text {
    flex: 1;
    padding-top: 4px;
}

.Customization-Simple-Text p {
    font-size: 16px;
    color: #0B2B4A;
    line-height: 1.8;
    margin: 0;
}

/* Customization CTA */
.Customization-CTA {
    background: #f8fafc;
    padding: 30px 35px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8edf2;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.Customization-CTA:hover {
    border-color: #F28C28;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.Customization-CTA p {
    font-size: 18px;
    font-weight: 600;
    color: #0B2B4A;
    margin-bottom: 16px;
}

.Customization-CTA .Btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.Customization-CTA .Btn-Primary {
    background: #F28C28;
    color: #ffffff;
}

.Customization-CTA .Btn-Primary:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.35);
}

/*=====================================================
  RESPONSIVE - TABS
===================================================== */

@media (max-width: 768px) {
    .Product-Tabs-Header {
        gap: 4px;
        padding: 4px 4px 0 4px;
        border-radius: 8px 8px 0 0;
    }
    
    .Tab-Btn {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
        flex: 1;
        justify-content: center;
    }
    
    .Tab-Btn i {
        font-size: 14px;
    }
    
    .Tab-Btn .tab-count {
        font-size: 10px;
        padding: 1px 8px;
    }
    
    .Features-Detailed-Grid,
    .Applications-Detailed-Grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .Feature-Detailed-Item,
    .Application-Detailed-Item {
        padding: 16px 18px;
    }
    
    .Customization-Simple {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .Customization-Simple-Text {
        padding-top: 0;
    }
    
    .Customization-CTA {
        padding: 20px;
    }
    
    .Customization-CTA .Btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .Product-Tabs-Header {
        gap: 2px;
        padding: 2px 2px 0 2px;
    }
    
    .Tab-Btn {
        padding: 8px 10px;
        font-size: 12px;
        gap: 4px;
        border-radius: 4px 4px 0 0;
    }
    
    .Tab-Btn i {
        font-size: 12px;
    }
    
    .Tab-Btn .tab-count {
        font-size: 9px;
        padding: 1px 6px;
    }
}

/*=====================================================
  RTL SUPPORT - TABS
===================================================== */

[dir="rtl"] .Tab-Btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .Tab-Btn i {
    margin-left: 0;
    margin-right: 6px;
}

[dir="rtl"] .Feature-Detailed-Item,
[dir="rtl"] .Application-Detailed-Item {
    flex-direction: row-reverse;
}

[dir="rtl"] .Customization-Simple {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    [dir="rtl"] .Customization-Simple {
        flex-direction: column;
    }
}

/*=====================================================
  ANIMATIONS - TABS
===================================================== */

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

.Feature-Detailed-Item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.Feature-Detailed-Item:nth-child(1) { animation-delay: 0.05s; }
.Feature-Detailed-Item:nth-child(2) { animation-delay: 0.10s; }
.Feature-Detailed-Item:nth-child(3) { animation-delay: 0.15s; }
.Feature-Detailed-Item:nth-child(4) { animation-delay: 0.20s; }
.Feature-Detailed-Item:nth-child(5) { animation-delay: 0.25s; }
.Feature-Detailed-Item:nth-child(6) { animation-delay: 0.30s; }

.Application-Detailed-Item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.Application-Detailed-Item:nth-child(1) { animation-delay: 0.05s; }
.Application-Detailed-Item:nth-child(2) { animation-delay: 0.10s; }
.Application-Detailed-Item:nth-child(3) { animation-delay: 0.15s; }
.Application-Detailed-Item:nth-child(4) { animation-delay: 0.20s; }
.Application-Detailed-Item:nth-child(5) { animation-delay: 0.25s; }
.Application-Detailed-Item:nth-child(6) { animation-delay: 0.30s; }

/* ====== Breadcrumb RTL Fix ====== */
.Product-Detail .Product-Breadcrumb {
    text-align: left;
}

[dir="rtl"] .Product-Detail .Product-Breadcrumb {
    text-align: right;
}