@font-face {
    font-family: 'TitleFont';
    src: url('../fonts/title font.ttf') format('truetype');
}

@font-face {
    font-family: 'TextFont';
    src: url('../fonts/texte font.otf') format('opentype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100vh;
}

body {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f6eee2, #0c6e3d);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg.png') repeat;
    pointer-events: none;
    z-index: -2;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    /* Reverted to fixed */
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    background: linear-gradient(to bottom, #e8e0d4, #d4cdc2);
    z-index: 1000;
    direction: rtl;
    transition: transform 0.3s ease;
}

/* Sub Navigation Bar */
.sub-nav {
    width: 100%;
    margin-top: -5px;
    position: sticky;
    /* Changed to sticky */
    top: 130px;
    /* Stick below the main navbar */
    z-index: 999;
}

.navbar-hidden {
    transform: translateY(-100%);
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    direction: rtl;
}

/* Navigation Menu - Connected Bar Style */
.main-menu,
.alt-menu {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 5px;
    gap: 0;
    /* Connect them visually by removing gap */
}

/* Alternate menu visibility logic */
.alt-menu {
    display: none;
}

.navbar.menu-switched .main-menu {
    display: none;
}

.navbar.menu-switched .alt-menu {
    display: flex;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    /* shape for the inner items */
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    white-space: nowrap;
    position: relative;
    font-weight: 500;
}

.nav-link:hover {
    color: #000;
}

.nav-link.active {
    background: #fff;
    /* White pill for active item */
    color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

/* Ensure no pseudo-element underline interferes */
.nav-link.active::after {
    display: none;
}

.nav-left .nav-link {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

.nav-left .nav-link:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #333;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.icon-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Content Styles */
.content {
    padding-top: 130px;
}

.sub-nav-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: transparent;
    direction: rtl;
}

.sub-nav-item {
    font-family: 'TitleFont', serif;
    font-size: 2.5rem;
    color: #000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.sub-nav-item:hover {
    transform: scale(1.1);
}

.separator-line {
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.5;
    /* Keeping some opacity for specific style, or remove if solid white is preferred. User said 'low opacity' before. */
    margin: 0 0 3rem 0;
}

/* Products Section */
.products-section {
    padding: 2rem 4rem;
    direction: rtl;
    text-align: center;
    scroll-margin-top: 250px;
    /* Offset for fixed headers */
}

.products-title {
    font-family: 'TitleFont', serif;
    font-size: 5rem;
    color: #000;
    margin-bottom: 2rem;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 2rem;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    font-family: 'TitleFont', serif;
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0 2rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
    /* Added for badge positioning */
    overflow: hidden;
    /* Clip the ribbon */
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: -30px;
    background: #ff0000;
    color: #fff;
    padding: 5px 40px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    transform: rotate(-45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Customer Service Section */
.customer-service-section {
    padding: 2rem 4rem;
    direction: rtl;
    text-align: right;
    scroll-margin-top: 250px;
    /* Offset for fixed headers */
    /* Changed to match image layout (right aligned titles) */
}

.customer-service-section .products-title {
    text-align: center;
}

.cs-intro {
    font-family: 'TextFont', serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 3rem;
    text-align: center;
}

.cs-item {
    margin-bottom: 2.5rem;
    padding-right: 2rem;
    /* Indentation */
}

.cs-item h3 {
    font-family: 'TitleFont', serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.cs-item p {
    font-family: 'TextFont', serif;
    font-size: 1.5rem;
    color: #333;
    line-height: 1.6;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-info {
    text-align: center;
}

.product-title {
    font-family: 'TitleFont', serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 0.2rem;
}

.product-price {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.5rem;
    color: #000;
}

/* Hero Video */
/* Hero Video */
/* Hero Video */
.video-container {
    width: 100%;
    margin-top: 130px;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Sub Navigation Bar */
.sub-nav {
    width: 100%;
    margin-top: -5px;
    position: sticky;
    top: 130px;
    /* Adjust based on navbar height */
    z-index: 999;
}

.sub-nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.sub-nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    /* Reduced gap slightly to accommodate icons */
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 80px;
    /* Big pill shape */
    direction: rtl;
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
    /* Center the bar */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sub-nav-icon {
    height: 60px;
    /* Bigger icon as it is now a standalone element */
    width: auto;
    object-fit: contain;
    position: absolute;
    right: 2%;
    /* Far right of the screen */
    top: 60%;
    transform: translateY(-50%);
    z-index: 1000;
}

.sub-nav-link {
    color: #000;
    /* Darker black for better visibility */
    text-decoration: none;
    font-size: 2.5rem;
    /* Much bigger font size */
    padding: 0.5rem 1rem;
    border-radius: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    font-family: 'TextFont', serif;
    font-weight: 600;
}

.sub-nav-link:hover {
    background: transparent;
    color: #333;
    transform: scale(1.1);
}

/* Title Section */
.title-section {
    text-align: center;
    padding: 3rem 2rem;
    direction: rtl;
}

.main-title {
    font-family: 'TitleFont', serif;
    font-size: 5rem;
    color: #000;
    margin-bottom: 1rem;
}

.sub-title {
    font-family: 'TitleFont', serif;
    font-size: 4rem;
    color: #000;
}

/* Image Section */
.image-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    gap: 3rem;
}

.section-text {
    flex: 1;
    font-family: 'TextFont', serif;
    font-size: 2rem;
    color: #000;
    line-height: 2;
    text-align: justify;
    direction: rtl;
}

.section-text p {
    margin-bottom: 1.5rem;
}

.featured-image {
    width: 400px;
    flex-shrink: 0;
}

.featured-image img {
    width: 100%;
    height: auto;
}

.image-section-reverse {
    flex-direction: row-reverse;
}

/* Centered Image Section */
.centered-image-section {
    display: flex;
    justify-content: center;
    padding: 3rem 2rem;
}

.large-image {
    max-width: 100%;
    height: auto;
}

/* Centered Text Section */
.centered-text-section {
    text-align: right;
    padding: 2rem 4rem;
    direction: rtl;
}

.centered-text-section p {
    font-family: 'TextFont', serif;
    font-size: 2rem;
    color: #000;
    line-height: 2;
    text-align: right;
}

.read-more-btn {
    display: inline-block;
    margin-top: 1.5rem;
    margin-right: 20rem;
    padding: 1rem 2.5rem;
    background: #5a1b32;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #7a2b42;
    transform: scale(1.05);
}



/* Types Section */
.types-section {
    text-align: center;
    padding: 3rem 2rem;
    direction: rtl;
}

.types-title {
    font-family: 'TitleFont', serif;
    font-size: 4rem;
    color: #000;
    margin-bottom: 3rem;
}

.types-grid {
    display: flex;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: default;
}

.type-item img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.type-item:hover img {
    transform: scale(1.1);
}

.type-item h3 {
    font-family: 'TextFont', serif;
    font-size: 1.5rem;
    color: #000;
    text-align: center;
    line-height: 1.2;
}

/* Announcements Section */
.announcements-section {
    text-align: center;
    padding: 3rem 4rem;
    direction: rtl;
}

.news-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    background: transparent;
    padding: 2rem;
    border-radius: 30px;
    border: 3px solid #5a1b32;
    box-shadow: none;
}

.news-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    height: 500px;
    /* Taller height for vertical images */
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover will fill the vertical space */
}

/* Footer */
.footer {
    background: transparent;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    padding: 3rem 4rem;
    direction: rtl;
    position: relative;
    z-index: 10;
    border-top: 1px solid #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 220px;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-links {
    text-align: right;
}

.footer-links h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    gap: 1rem;
}

.link-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(-5px);
}

.footer-contact {
    text-align: right;
}

.footer-contact h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Aligns to right in RTL */
    gap: 0.8rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .main-title {
        font-size: 3rem;
    }

    .sub-title {
        font-size: 2.5rem;
    }

    .section-text,
    .centered-text-section p {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 0.8rem 1rem;
    }

    .logo img {
        height: 70px;
    }

    /* Video Container */
    .video-container {
        margin-top: 0;
        padding-top: 0;
    }

    .video-container video {
        margin-top: 0;
        display: block;
    }

    /* Sub Navigation */
    .sub-nav {
        position: sticky;
        top: 90px;
        margin-top: 0;
        z-index: 999;
    }

    .sub-nav-bar {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
        border-radius: 30px;
        width: 95%;
        justify-content: space-around;
    }

    .sub-nav-link {
        font-size: 1.3rem !important;
        padding: 0.3rem 0.5rem;
        white-space: nowrap;
    }

    .sub-nav-icon {
        display: none;
    }

    /* Products Section */
    .products-section {
        padding: 1.5rem 1rem;
        scroll-margin-top: 180px;
    }

    .section-divider {
        margin: 1rem 0;
    }

    .products-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    /* Filter Buttons */
    .product-filters {
        gap: 0.8rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1.2rem;
        font-size: 1.1rem;
        border-radius: 20px;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .product-card {
        gap: 0.8rem;
    }

    .product-image-container {
        padding: 1.5rem;
        border-radius: 25px;
        margin-bottom: 0.5rem;
    }

    .product-title {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .discount-badge {
        font-size: 1rem;
        padding: 4px 35px;
        top: 15px;
        left: -25px;
    }

    /* Customer Service Section */
    .customer-service-section {
        padding: 1.5rem 1rem;
        scroll-margin-top: 180px;
    }

    .cs-intro {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .cs-item {
        margin-bottom: 2rem;
        padding-right: 1rem;
    }

    .cs-item h3 {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .cs-item p {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    /* Image Sections */
    .image-section {
        flex-direction: column;
        padding: 2rem 1rem;
        text-align: center;
    }

    .image-section-reverse {
        flex-direction: column;
    }

    .featured-image {
        width: 100%;
        max-width: 400px;
    }

    .read-more-btn {
        margin-right: 0;
        margin-top: 2rem;
    }

    .centered-text-section {
        padding: 2rem 1rem;
        text-align: center;
    }

    .centered-text-section p {
        text-align: center;
        font-size: 1.4rem;
    }

    /* Types Section */
    .types-section {
        padding: 2rem 1rem;
    }

    .types-title {
        font-size: 2.5rem;
    }

    .types-grid {
        gap: 2rem;
    }

    .type-item img {
        height: 100px;
    }

    .type-item h3 {
        font-size: 1.2rem;
    }

    /* News/Announcements */
    .news-grid {
        gap: 1.5rem;
        padding: 1rem;
        border-radius: 20px;
    }

    .news-item {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        height: 400px;
    }

    .news-item img {
        height: 100%;
        object-fit: cover;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo img {
        height: 150px;
    }

    .social-icon img {
        width: 40px;
        height: 40px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.5rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .link-icon,
    .contact-icon {
        width: 40px;
        height: 40px;
    }
}



/* Product Details Page Styles */
.product-details-page {
    /* Ensure minimum height accounts for navbar (approx 130px) */
    min-height: calc(100vh - 130px);
    display: flex;
    justify-content: center;
    /* Align to top but use margin: auto to center vertically safely */
    align-items: flex-start;
    padding: 150px 4rem 2rem 4rem;
    /* Restored top padding to clear fixed navbar */
}

.product-details-container {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 3rem;
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    direction: rtl;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Safe vertical centering: pushes to center if space allows, but won't clip top if overflow */
    margin: auto 0;
}

.product-image-section {
    flex: 1;
}

.det-image-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.det-image-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.product-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.detail-title {
    font-family: 'TitleFont', serif;
    font-size: 3.5rem;
    color: #000;
    line-height: 1.2;
}

.detail-price {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 2.5rem;
    color: #5a1b32;
    font-weight: bold;
}

.detail-description h3 {
    font-family: 'TitleFont', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.detail-description p {
    font-family: 'TextFont', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.whatsapp-btn img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 900px) {
    .product-details-container {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .detail-title {
        font-size: 2.5rem;
    }

    .whatsapp-btn {
        width: 100%;
    }
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {

    /* Further optimize for very small screens */
    .logo img {
        height: 60px;
    }

    .video-container {
        margin-top: 0;
        padding-top: 0;
    }

    .video-container video {
        margin-top: 0;
    }

    .sub-nav {
        position: sticky;
        top: 80px;
        z-index: 999;
    }

    .sub-nav-bar {
        width: 98%;
        padding: 0.6rem 0.5rem;
        gap: 0.3rem;
        flex-direction: row;
        justify-content: space-around;
    }

    .sub-nav-link {
        font-size: 1.1rem !important;
        padding: 0.2rem 0.3rem;
        white-space: nowrap;
    }

    .products-title {
        font-size: 2.5rem;
    }

    .filter-btn {
        font-size: 1rem;
        padding: 0.3rem 1rem;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .cs-intro {
        font-size: 1.1rem;
    }

    .cs-item h3 {
        font-size: 1.5rem;
    }

    .cs-item p {
        font-size: 1.1rem;
    }

    .footer-logo img {
        height: 120px;
    }

    .product-details-page {
        padding: 120px 1rem 2rem 1rem;
    }

    .product-details-container {
        padding: 1.5rem;
    }

    .detail-title {
        font-size: 2rem;
    }

    .detail-price {
        font-size: 2rem;
    }
}

/* Shrinking Sub Nav Styles */
.sub-nav-bar {
    transition: all 0.3s ease;
}

.sub-nav-bar.scrolled {
    padding: 0.5rem 2rem;
    max-width: 800px;
}

.sub-nav-link {
    transition: all 0.3s ease;
}

.sub-nav-bar.scrolled .sub-nav-link {
    font-size: 1.5rem;
}

.sub-nav-icon {
    transition: all 0.3s ease;
}

.sub-nav.scrolled .sub-nav-icon {
    height: 40px;
    top: 50%;
    /* Re-center vertically if needed */
}

/* Hamburger Menu */