/* --- GLOBAL STYLES --- */
* {
    margin: 0; padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body { background: #ffffff; color: #000; overflow-x: hidden; }

/* --- SUB-HEADER --- */
#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;
}
.container { padding: 10px 10%; position: relative; z-index: 2; }

/* --- NAVIGATION --- */
nav { display: flex; align-items: center; justify-content: space-between; }
.logo { width: 140px; }
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; }
nav ul li a.active::after {
    content: ''; width: 100%; height: 3px; background: #ff004f;
    position: absolute; left: 0; bottom: -6px;
}
nav .fa-bars, nav .fa-square-xmark { display: none; }

/* FIX: Responsive Font Scaling */
.sub-header-text { text-align: center; margin-top: 8vh; padding: 0 5%; }
.sub-header-text h1 { 
    font-size: clamp(28px, 8vw, 55px); 
    text-transform: uppercase; 
    letter-spacing: 2px;
}
.sub-header-text p { font-size: clamp(14px, 4vw, 18px); margin-top: 10px; opacity: 0.9; }

/* --- PRODUCT CATEGORY GRID --- */
#product-page-list { padding: 80px 0; background: #fdfdfd; position: relative; z-index: 1; }
.product-grid-main { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

/* Card as a whole Link */
.product-card {
    display: flex; align-items: center; background: #fff; padding: 35px;
    border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease; border: 1px solid #eee;
    text-decoration: none; color: inherit; cursor: pointer;
}

.product-card:hover { transform: translateY(-10px); border-color: #ff004f; box-shadow: 0 15px 40px rgba(255, 0, 79, 0.12); }

.product-img-box {
    flex: 0 0 130px; height: 130px; background: #f8f8f8;
    border-radius: 15px; display: flex; align-items: center;
    justify-content: center; margin-right: 30px;
}
.product-img-box img { width: 75px; transition: 0.3s; }
.product-card:hover .product-img-box img { transform: scale(1.1); }

.product-info h2 { font-size: 26px; margin-bottom: 12px; color: #222; }
.product-info p { font-size: 15px; color: #666; margin-bottom: 20px; line-height: 1.6; }

.btn-secondary {
    display: inline-block; color: #ff004f; font-weight: bold;
    font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
    border-bottom: 2px solid #ff004f; transition: 0.3s;
}
.product-card:hover .btn-secondary { color: #222; border-bottom-color: #222; }

/* --- FOOTER --- */
.footer { background: #1a1a1a; color: #efefef; padding: 80px 10% 40px; position: relative; z-index: 1; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-section { flex: 1; min-width: 250px; }
.footer-section h3 { margin-bottom: 25px; color: #ff004f; border-bottom: 2px solid #ff004f; display: inline-block; padding-bottom: 5px; }
.footer-section p { margin-bottom: 15px; font-size: 14px; color: #bbb; }

.download-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;
}
.download-btn:hover { background: transparent; color: #ff004f; }

#contact-form input, #contact-form textarea {
    width: 100%; padding: 12px; margin-bottom: 10px; border: none;
    background: #333; color: #fff; border-radius: 5px;
}
.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;
}
    
.send-btn:hover { 
    background: transparent;
    color: #ff004f;
    transform: translateY(-3px);
}
/* --- RESPONSIVE & MOBILE MENU FIX --- */
@media (max-width: 900px) {
    nav .fa-bars { display: block; color: #fff; cursor: pointer; }
    
    /* FIX: High Z-Index for Menu Overlay */
    nav ul {
        position: fixed; top: 0; right: -200px; width: 200px; height: 100vh;
        background: #ff004f; flex-direction: column; padding: 50px 20px; 
        transition: 0.5s; z-index: 1000 !important;
    }
    nav ul .fa-square-xmark { display: block; position: absolute; top: 20px; right: 20px; font-size: 25px; }

    .product-grid-main { grid-template-columns: 1fr; }
    .product-card { flex-direction: column; text-align: center; padding: 25px; }
    .product-img-box { margin-right: 0; margin-bottom: 20px; }
}

@media (max-width: 600px) {
    #sub-header { height: 40vh; }
}