/* ===================================
   PRIME HUB PARTS - PRODUCTS PAGE CSS
   Big Hero Header Design
   =================================== */

/* ========== VARIABLES ========== */
:root {
    --primary-red: #E31E24;
    --red-dark: #B01519;
    --red-hover: #C11519;
    --dark-bg: #0a0a0a;
    --grey-dark: #1a1a1a;
    --grey-mid: #2d3e50;
    --grey-light: #f5f5f5;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--grey-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--grey-mid);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar a:hover {
    color: var(--white);
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    /* PREMIUM GLASS EFFECT */
    background: rgba(15, 15, 15, 0.20);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.30);
    backdrop-filter: blur(28px) saturate(220%);
    -webkit-backdrop-filter: blur(28px) saturate(220%);
    box-shadow: 0 4px 25px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========== LOGO ========== */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
}

/* ========== NAVIGATION MENU ========== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

/* ========== DROPDOWN (WHITE BUTTONS) ========== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff; /* WHITE BACKGROUND */
    min-width: 260px;
    padding: 0.8rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    color: #000; /* BLACK TEXT */
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-red);
    padding-left: 2rem;
}

/* ========== ENQUIRY BUTTON ========== */
.enquiry-btn {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.enquiry-btn:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
}

/* ======================
   REMAINING YOUR FULL CSS
   (NOT EDITED AT ALL)
====================== */

/* ========== HAMBURGER MENU ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== BIG HERO HEADER ========== */
.page-header {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/product-hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

/* (THE REST OF YOUR CSS IS UNCHANGED) */



/* ========== BREADCRUMB ========== */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--white);
    font-weight: 600;
}

/* ========== PAGE TITLE ========== */
.page-title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-title span {
    color: var(--primary-red);
}

.page-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ========== PRODUCTS SECTION ========== */
.products-main-section {
    padding: 6rem 0;
    background: var(--grey-dark);
}

/* ========== PRODUCT CATEGORY CARD ========== */
.product-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-category:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(227, 30, 36, 0.3);
    transform: translateY(-2px);
}

/* ========== CATEGORY HEADER ========== */
.category-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.category-header:hover {
    background: rgba(227, 30, 36, 0.05);
}

/* ========== CATEGORY ICON ========== */
.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--red-hover) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.category-header:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* ========== CATEGORY INFO ========== */
.category-info {
    min-width: 0;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.category-brief {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ========== SEE MORE BUTTON ========== */
.see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    white-space: nowrap;
}

.see-more-btn:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
}

.see-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.see-more-btn.active i {
    transform: rotate(45deg);
}

/* ========== CATEGORY DETAILS (EXPANDED) ========== */
.category-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.category-details.active {
    max-height: 3000px;
    padding: 3rem;
}

/* ========== DETAILS CONTENT ========== */
.details-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.details-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.details-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

/* ========== FEATURE LIST ========== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
    transition: var(--transition);
}

.feature-list li:hover {
    background: rgba(227, 30, 36, 0.1);
    transform: translateX(5px);
}

.feature-list i {
    color: var(--primary-red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ========== PRODUCT IMAGE GRID ========== */
.details-images {
    width: 100%;
}

.product-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-image-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.product-image-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-red);
}

/* ========== ENQUIRY LINK BUTTON ========== */
.enquiry-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    width: fit-content;
}

.enquiry-link-btn:hover {
    background: var(--red-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.5);
}

.enquiry-link-btn i {
    transition: transform 0.3s ease;
}

.enquiry-link-btn:hover i {
    transform: translateX(5px);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--grey-mid) 0%, var(--dark-bg) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.btn-primary.large {
    padding: 1.3rem 3.5rem;
    font-size: 1.05rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-bg);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    margin-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--primary-red);
    width: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--red-hover);
    transform: translateY(-5px);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-details.active .details-content {
    animation: slideDown 0.5s ease forwards;
}

/* ========== RESPONSIVE: LARGE DESKTOP ========== */
@media (max-width: 1400px) {
    .page-title {
        font-size: 4.5rem;
    }
}

/* ========== RESPONSIVE: DESKTOP ========== */
@media (max-width: 1200px) {
    .page-title {
        font-size: 4rem;
    }

    .category-header {
        padding: 2rem;
    }

    .category-details.active {
        padding: 2rem;
    }
}

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 1024px) {
    .page-header {
        height: 70vh;
        min-height: 500px;
    }

    .page-title {
        font-size: 3.5rem;
    }

    .page-subtitle {
        font-size: 1.3rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .product-image-grid {
        gap: 1.2rem;
    }

    .product-image-grid img {
        height: 250px;
    }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--grey-mid);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: var(--transition);
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 1rem 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown:hover .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .enquiry-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .page-header {
        height: 60vh;
        min-height: 450px;
    }

    .page-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .products-main-section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .category-header {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem 1.5rem;
        gap: 1.2rem;
        justify-items: center;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 1.8rem;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .category-brief {
        font-size: 0.9rem;
    }

    .see-more-btn {
        width: calc(100% - 3rem);
        margin: 0 1.5rem 1.5rem;
        padding: 1rem 1.5rem;
    }

    .category-details.active {
        padding: 1.5rem;
    }

    .details-text h3 {
        font-size: 1.4rem;
    }

    .details-text p {
        font-size: 0.95rem;
    }

    .product-image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-image-grid img {
        height: 240px;
    }

    .enquiry-link-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== RESPONSIVE: SMALL MOBILE ========== */
@media (max-width: 480px) {
    .page-header {
        height: 55vh;
        min-height: 400px;
    }

    .page-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .category-header {
        padding: 1.5rem 1rem 1rem;
    }

    .category-icon {
        width: 55px;
        height: 55px;
    }

    .category-icon i {
        font-size: 1.6rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .category-brief {
        font-size: 0.88rem;
    }

    .see-more-btn {
        width: calc(100% - 2rem);
        margin: 0 1rem 1rem;
        padding: 0.9rem 1.3rem;
        font-size: 0.88rem;
    }

    .category-details.active {
        padding: 1.2rem;
    }

    .details-text h3 {
        font-size: 1.2rem;
    }

    .details-text p {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .feature-list li {
        font-size: 0.85rem;
        padding: 0.7rem;
    }

    .product-image-grid img {
        height: 200px;
    }

    .enquiry-link-btn {
        padding: 1rem 1.8rem;
        font-size: 0.88rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        right: 20px;
        font-size: 1rem;
    }
}

/* ========== EXTRA SMALL DEVICES ========== */
@media (max-width: 360px) {
    .page-title {
        font-size: 1.7rem;
    }

    .page-subtitle {
        font-size: 0.85rem;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .category-brief {
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .top-bar-left,
    .top-bar-right {
        font-size: 0.75rem;
        gap: 0.8rem;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .header,
    .whatsapp-float,
    .scroll-top,
    .see-more-btn {
        display: none;
    }

    .category-details {
        max-height: none !important;
        padding: 1rem !important;
    }

    .product-category {
        page-break-inside: avoid;
    }
}