/* --- GLOBAL STYLES --- */
* { 
    margin: 0; 
    padding: 0; 
    font-family: 'Poppins', sans-serif; 
    box-sizing: border-box; 
}

body { 
    background: #fff; 
    color: #333; 
    overflow-x: hidden; 
}

/* --- HEADER & NAVIGATION --- */
#sub-header {
    width: 100%; 
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/slide1.jpg');
    background-size: cover; 
    background-position: center; 
    color: #fff;
    position: relative;
    z-index: 10;
}

.container { 
    padding: 10px 10%; 
    position: relative; 
}

nav { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}

.logo { 
    width: 140px; 
    cursor: pointer;
    transition: 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

/* Desktop Navigation Links */
nav ul { 
    display: flex; 
}

nav ul li { 
    list-style: none; 
    margin: 10px 20px; 
}

nav ul li a { 
    color: #fff; 
    text-decoration: none; 
    font-size: 18px; 
    position: relative;
    transition: 0.3s;
}

/* Hover Underline Effect */
nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover {
    color: #ff004f;
}

nav ul li a:hover::after {
    width: 100%;
}

/* --- MENU BUTTON FIX --- */
/* Strictly hide mobile icons on Desktop View */
nav .fa-bars, 
nav .fa-square-xmark { 
    display: none; 
}

.sub-header-text { 
    text-align: center; 
    margin-top: 8vh; 
}

.sub-header-text h1 { 
    font-size: clamp(28px, 8vw, 55px); 
    text-transform: uppercase; 
}

/* --- INTERACTIVE DROPDOWNS --- */
.interactive-list { 
    padding: 60px 0; 
    background: #fff; 
}

.accordion-item { 
    margin-bottom: 15px; 
}

.accordion-header {
    width: 100%; 
    padding: 20px; 
    background: #f8f8f8; 
    border: none;
    border-left: 6px solid #ff004f; 
    text-align: left; 
    font-size: 22px;
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.accordion-content { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.5s ease-in-out; 
    background: #fff;
}

/* SUB-LINK STYLING (For the redirect pages) */
.sub-link-container { 
    padding: 10px 20px 20px 20px; 
}

.sub-link-item {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 18px 25px; 
    margin-top: 10px; 
    background: #ffffff;
    border: 1px solid #eee; 
    color: #444; 
    text-decoration: none;
    font-size: 17px; 
    font-weight: 500; 
    transition: all 0.3s ease; 
    border-radius: 5px;
}

.sub-link-item i { 
    font-size: 14px; 
    transition: 0.3s; 
    color: #ff004f; 
}

.sub-link-item:hover {
    background: #fdfdfd; 
    color: #ff004f; 
    border-color: #ff004f;
    padding-left: 35px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sub-link-item:hover i { 
    transform: translateX(5px); 
}

/* --- FOOTER SECTION --- */
.footer { 
    background: #1a1a1a; 
    color: #efefef; 
    padding: 80px 10% 40px; 
}

.footer-container { 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 40px; 
}

.footer-section { 
    flex: 1; 
    min-width: 250px; 
}

.footer-section h3 { 
    color: #ff004f; 
    margin-bottom: 20px; 
    border-bottom: 2px solid #ff004f; 
    display: inline-block; 
    padding-bottom: 5px;
}

#contact-form input, #contact-form textarea { 
    width: 100%; 
    padding: 12px; 
    margin-bottom: 10px; 
    background: #333; 
    color: #fff; 
    border: none; 
    border-radius: 5px; 
    outline: none;
}

/* BUTTON HOVERS */
.download-btn, .send-btn {
    display: inline-block;
    background: #ff004f;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border: 2px solid #ff004f;
    cursor: pointer;
}

.download-btn:hover, .send-btn:hover {
    background: transparent;
    color: #ff004f;
    transform: translateY(-3px);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    /* Show menu icons on mobile only */
    nav .fa-bars { 
        display: block; 
        color: #fff; 
        font-size: 24px;
        cursor: pointer;
    }

    nav ul { 
        position: fixed; 
        top: 0; 
        right: -200px; 
        width: 200px; 
        height: 100vh; 
        background: #ff004f; 
        z-index: 1000; 
        flex-direction: column; 
        padding: 50px 20px; 
        transition: 0.5s; 
    }

    nav ul li {
        margin: 15px 0;
    }

    /* Show close button inside mobile menu */
    nav ul .fa-square-xmark { 
        display: block; 
        position: absolute; 
        top: 20px; 
        right: 20px; 
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    /* Disable underline hover effect on mobile menu for better UX */
    nav ul li a::after {
        display: none;
    }
}






/* --- PRODUCT DETAIL PAGE STYLES --- */
.product-detail {
    padding: 80px 0;
}

.back-link {
    display: inline-block;
    text-decoration: none;
    color: #ff004f;
    font-weight: 600;
    margin-bottom: 30px;
    transition: 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
}

.detail-flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.detail-img {
    flex: 1;
    min-width: 300px;
}

.detail-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.detail-text {
    flex: 1.2;
    min-width: 300px;
}

.detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.detail-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Specific Table Styling */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.spec-table th, .spec-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.spec-table th {
    background: #fdfdfd;
    color: #ff004f;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tags span {
    background: #fff0f3;
    color: #ff004f;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #ff004f;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .detail-flex {
        flex-direction: column;
    }
}





