/* JNXPC Limited - Base CSS */
/* ======================== */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap');

:root {
    --accent-color: #a71c1c;
    --accent-color-rgb: 208, 75, 75;
    --section-max-width: 100vw;
    --nord-accent-color: #007aff;
    --nord-accent-color-rgb: 0, 122, 255;
    --grain-accent-color: #5e009c;
    --grain-accent-color-rgb: 94, 0, 156;
    --semester-accent-color: #a0a0a0;
    --semester-accent-color-rgb: 160, 160, 160;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Be Vietnam Pro', sans-serif;
}

header {
    position: relative;
    z-index: 1000;
    text-decoration: none;
    text-decoration: none !important;
}

body {
    background-color: #f8f8f8;
    font-family: 'Be Vietnam Pro', sans-serif;
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

a {
    text-decoration: none !important;
    color: var(--accent-color);
    transition: 0.3s ease;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 100px;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 80px;
    }
}

/* Cursor Glow */
.cursor {
    width: 125px;
    height: 125px;
    background: radial-gradient(circle,
            rgba(185, 0, 0, 0.2) 0%,
            rgba(185, 0, 0, 0.3) 40%,
            rgba(185, 0, 0, 0.1) 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    filter: blur(15px);
    transition: all 0.1s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.grow {
    width: 75px;
    height: 75px;
    background: radial-gradient(circle,
            rgba(185, 0, 0, 0.2) 0%,
            rgba(185, 0, 0, 0.3) 40%,
            rgba(185, 0, 0, 0.1) 70%);
}

/* Section Headers */
.section-header {
    margin-bottom: 12px;
}

.section-header,
.section-header h2::after,
.section-header p {
    text-align: left;
    left: 0;
    transform: translateX(0);
    margin-left: 0;
    width: 100%;
}

.section-label {
    display: inline-block;
    background-color: #333;
    color: white;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    z-index: 10;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 20%;
    height: 8px;
    background: linear-gradient(270deg, #a71c1c, #d64545);
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    border-radius: 3px;
    z-index: -1;
}

.section-header p {
    font-size: 13px;
    color: #666;
}

@media (max-width: 1400px) {
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 24px;
    }

    .section-header h2::after {
        width: 30%;
    }

    .section-header p {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 22px;
        width: 100%;
    }

    .section-header h2::after {
        width: 40%;
        height: 6px;
    }

    .section-header p {
        font-size: 12px;
    }

    .section-label {
        font-size: 7px;
    }
}

/* Animated Arrows */
.floating-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 16px 0 24px;
}

#second.floating-arrows {
    padding: 0 0 30px;
}

.floating-arrows i {
    font-size: 24px;
    color: var(--accent-color);
    animation: float 2s ease-in-out infinite;
}

.floating-arrows i:nth-child(2) {
    animation-delay: 0.2s;
}

.floating-arrows i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

@media screen and (max-width: 480px) {
    .floating-arrows {
        gap: 12px;
        margin-top: -5px;
    }

    .floating-arrows i {
        font-size: 18px;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
            opacity: 0.5;
        }

        50% {
            transform: translateY(6px);
            opacity: 1;
        }
    }

    .floating-arrows[data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .floating-arrows.aos-animate {
        transition: none !important;
    }
}

/* --- Announcement Bar Start --- */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-spacer {
    height: 100px;
}

.announcement-bar {
    background: #ff9494;
    padding: 6px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    overflow: hidden;
}

.announcement-bar p {
    color: #333;
    height: 20px;
    display: flex;
    align-items: center;
    transform: translateY(0);
    opacity: 1;
    will-change: transform, opacity;
    font-size: 12px;
    font-weight: 600;
}

.announcement-bar a {
    color: #333;
    text-decoration: underline !important;
    margin-left: 5px;
    font-weight: 500;
    text-transform: none;
}

.top-right-links a {
    color: #444;
    text-decoration: none;
    margin-left: 15px;
    font-size: 12px;
    font-weight: 600;
}

.top-right-links a:hover {
    text-decoration: underline !important;
}

/* --- Announcement Bar End --- */

/* --- Middle Nav Start --- */
.nav-link-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link-subcontainer {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    color: #222;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(167, 28, 28, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
    background-color: rgba(167, 28, 28, 0.05);
    transform: translateY(-2px);
    text-decoration: none;
}

.nav-link.active {
    background: linear-gradient(135deg, var(--accent-color), #d64545);
    color: white;
    box-shadow: 0 4px 15px rgba(167, 28, 28, 0.3);
}

.nav-link.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 28, 28, 0.4);
}

.nav-link.dropdown-active {
    color: var(--accent-color);
    background-color: rgba(167, 28, 28, 0.05);
    transform: translateY(-2px);
}

.nav-link.dropdown-active::before {
    left: 100%;
}

.nav-link.dropdown-active:hover {
    color: var(--accent-color);
    background-color: rgba(167, 28, 28, 0.05);
    transform: translateY(-2px);
}

.nav-link-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 4px 0;
}

.nav-link-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(270deg, #d64545, #a71c1c, #d64545, #a71c1c);
    background-size: 300% 100%;
    background-position: 0% 0%;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(167, 28, 28, 0.3);
}

.nav-link-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(167, 28, 28, 0.4);
    background-position: 100% 0%;
}

/* --- Middle Nav End --- */

/* --- Navigation Bar Start --- */
.main-nav {
    background-color: white;
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: min(85%, var(--section-max-width));
    width: 100%;
    margin: 0 auto;
}

.nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 20px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
}

.icon-link {
    color: #555;
    font-size: 20px;
    margin-left: 20px;
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
}

/* Full Mobile Nav */
.mobile-categories-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background: white;
    z-index: 999999 !important;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;

}

.mobile-categories-nav.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-categories-container {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f8f8f8;
}

.mobile-menu-header {
    background: var(--accent-color);
    padding: 10px 20px 10px 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-menu-header img {
    height: 30px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-item:last-child {
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    background: rgba(167, 28, 28, 0.05);
    color: var(--accent-color);
    padding-left: 25px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::before {
    width: 4px;
}

.mobile-nav-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
}

.mobile-nav-arrow.rotated {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.mobile-dropdown {
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
}

.mobile-dropdown.open {
    max-height: 400px;
    border-left-color: rgba(167, 28, 28, 0.3);
}

.mobile-dropdown-item {
    padding: 12px 40px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-dropdown-item:hover {
    background: #e9ecef;
    color: var(--accent-color);
    padding-left: 45px;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.notification-center {
    width: 90vw;
    max-width: 350px;
    right: -20px;
    max-height: 400px;
}

/* --- Global Nav Responsiveness Start --- */
@media (max-width: 1400px) {
    .header-spacer {
        height: 95px;
    }

    .nav-container {
        max-width: min(96%, var(--section-max-width));
    }

    .logo-img {
        height: 34px;
    }

    .nav-link-container {
        padding: 0;
    }

    .nav-link-subcontainer {
        gap: 8px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 12px;
    }

    .nav-link-action-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

@media (max-width: 992px) {
    .header-spacer {
        height: 135px;
    }

    .announcement-bar {
        padding: 4px 12px;
    }

    .announcement-bar p {
        font-size: 10px;
    }

    .top-right-links a {
        font-size: 10px;
        margin-left: 6px;
    }

    .logo {
        margin-right: 6px;
    }

    .nav-container {
        flex-direction: column;
        max-width: 100%;
        gap: 10px;
    }

    .nav-link-container {
        max-width: 100%;
    }

    .nav-link {
        padding: 8px;
        font-size: 11.5px;
    }

    .nav-link-subcontainer {
        gap: 6px;
    }
}

@media (max-width: 768px) {
    .fixed-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .header-spacer {
        height: 88px;
    }

    .announcement-bar {
        padding: 3px 15px;
        font-size: 12px;
    }

    .announcement-bar p {
        font-size: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
    }

    .top-right-links {
        display: none;
    }

    .main-nav {
        padding: 0 30px;
    }

    .nav-container {
        flex-direction: row;
        gap: 12px;
        max-width: 100%;
        padding: 0;
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin-right: 0;
    }

    .logo-img {
        height: 40px;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 20px;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10001;
        position: relative;
    }

    .mobile-menu-toggle:hover {
        color: var(--accent-color);
        transform: scale(1.1);
    }

    .nav-right {
        width: 100%;
        justify-content: flex-end;
        gap: 20px;
        padding: 10px 0;
        margin: 0;
    }

    .icon-link {
        font-size: 18px;
        margin-left: 0;
        margin-right: 0;
    }

    .nav-link-container {
        display: none !important;
    }

    .mobile-categories-nav.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .header-spacer {
        height: 75px;
    }   

    .main-nav {
        padding: 0 10px;
    }

    .logo-img {
        height: 25px;
    }

    .nav-link-container {
        flex-direction: row;
        padding: 6px 10px;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .nav-link-container::after {
        content: '';
        position: absolute;
        top: 0;
        right: 140px;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to right, transparent, rgba(248, 249, 250, 0.8));
        pointer-events: none;
        z-index: 1;
    }

    .nav-link-subcontainer {
        flex: 1;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        gap: 8px;
        padding: 8px 0;
        margin-right: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .nav-link-subcontainer::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        flex-shrink: 0;
        white-space: nowrap;
        min-width: fit-content;
        padding: 8px 12px;
        font-size: 11px;
    }

    .nav-link.active {
        box-shadow: 0 0 8px rgba(167, 28, 28, 0.4);
    }

    .nav-link-actions {
        flex-shrink: 0;
        gap: 8px;
        margin: 0;
    }

    .nav-link-action-btn {
        padding: 8px 12px;
        font-size: 10px;
        gap: 8px;
    }

    .nav-right {
        gap: 16px;
    }

    .icon-link {
        font-size: 15px;
    }

    .mobile-menu-toggle {
        font-size: 16px;
    }

    .nav-link-action-btn i {
        font-size: 12px;
    }
}

/* --- Global Nav Responsiveness End --- */

/* Navigation Dropdown Menus */
.category-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: min(70%, var(--section-max-width));
    overflow: hidden;
    display: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.category-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    display: block;
}

.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 0;
}

.dropdown-links {
    padding: 25px 30px;
    border-right: 1px solid #f0f0f0;
}

.dropdown-header-section {
    margin-bottom: 16px;
}

.dropdown-section {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    gap: 8px 24px;
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.dropdown-header {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    padding: 0 0 12px 0;
    border-bottom: 2px solid rgba(167, 28, 28, 0.1);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none !important;
}

.dropdown-header:hover {
    color: #8b1515;
    border-bottom-color: rgba(167, 28, 28, 0.3);
    transform: translateX(4px);
}

.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    padding: 10px 0;
    padding-left: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    text-decoration: none !important;
}

.dropdown-item:hover {
    color: var(--accent-color);
    background: rgba(167, 28, 28, 0.05);
    transform: translateX(8px);
    padding-left: 20px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent-color);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.dropdown-item:hover::before {
    height: 20px;
}

.dropdown-promo {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.dropdown-promo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.promo-title {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.promo-description {
    font-size: 11px;
    color: #666;
    margin: 12px 0 0 0;
    line-height: 1.4;
    text-align: center;
}

.dropdown-promo-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 80%;
}

.dropdown-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.promo-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1400px) {
    .dropdown-menu {
        min-width: min(90%, var(--section-max-width));
    }

    .dropdown-content {
        grid-template-columns: 1fr 550px;
        min-height: 0;
    }

    .dropdown-section {
        gap: 6px 20px;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .dropdown-item {
        font-size: 13px;
    }

    .dropdown-promo {
        padding: 18px;
        gap: 16px;
    }

    .dropdown-promo-card .promo-image {
        height: 130px;
    }

    .dropdown-promo-card .promo-title {
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    .dropdown-content {
        grid-template-columns: 1fr 280px;
    }

    .dropdown-links {
        padding: 20px 25px;
    }

    .dropdown-section {
        gap: 6px 12px;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .dropdown-promo {
        padding: 16px;
    }

    .promo-image {
        height: 80px;
    }

    .promo-title {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .promo-description {
        font-size: 10px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed;
        top: 120px;
        left: 0;
        right: 0;
        min-width: unset;
        width: 100%;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        border-radius: 0;
        transform: translateY(0);
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .dropdown-links {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 20px;
    }

    .dropdown-section {
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
        gap: 4px 12px;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .dropdown-promo {
        background: #f8f9fa;
        padding: 20px;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dropdown-promo-card {
        min-height: auto;
    }

    .promo-image {
        height: 50px;
    }

    .promo-title {
        font-size: 10px;
    }

    .promo-description {
        font-size: 9px;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .dropdown-promo {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .dropdown-links {
        padding: 15px;
    }

    .dropdown-section {
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
        gap: 4px 8px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .dropdown-header {
        font-size: 15px;
        padding: 10px 0;
    }

    .dropdown-item {
        font-size: 13px;
        padding: 8px 0;
    }
}

.category-dropdown:not(.active) .dropdown-menu {
    pointer-events: none;
}

.category-dropdown.active .dropdown-menu {
    pointer-events: all;
}

/* --- Navigation Menu End --- */

/* --- Newsletter Section Start --- */
.newsletter {
    font-family: "Montserrat", sans-serif;
    padding: 20px;
    position: relative;
    z-index: 100;
}

.newsletter::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(var(--accent-color-rgb), 0) 0%,
            rgba(var(--accent-color-rgb), 0.3) 50%,
            rgba(var(--accent-color-rgb), 0) 100%);
    margin-bottom: 48px;
    position: relative;
    z-index: 100;
}

.newsletter-container {
    position: relative;
    z-index: 9999;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.1);
}

.newsletter-text {
    flex: 1;
    text-align: left;
}

.newsletter-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-description {
    color: #999;
    margin: 0;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    height: 45px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0 15px;
    color: white;
    font-size: 14px;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(var(--accent-color-rgb), 0.2);
}

.newsletter-form button {
    padding: 0 25px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background-color: rgba(var(--accent-color-rgb), 0.2);
    border: 1px solid rgba(var(--accent-color-rgb), 0.3);
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
}

.newsletter-privacy a {
    color: white;
    text-decoration: none;
}

.newsletter-privacy a:hover {
    color: var(--accent-color);
}

/* Responsiveness */
@media screen and (max-width: 1440px) {
    .newsletter-container {
        max-width: 90%;
    }
}

@media screen and (max-width: 1280px) {
    .newsletter-container {
        padding: 25px 35px;
    }

    .newsletter-form {
        max-width: 450px;
    }
}

@media screen and (max-width: 992px) {
    .newsletter::before {
        margin-bottom: 40px;
    }

    .newsletter-container {
        padding: 25px 30px;
    }

    .newsletter-title {
        font-size: 22px;
    }

    .newsletter-description {
        font-size: 13px;
    }

    .newsletter-form {
        max-width: 400px;
    }
}

@media screen and (max-width: 786px) {
    .newsletter::before {
        margin-bottom: 32px;
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 20px;
    }

    .newsletter-title {
        margin-top: 0;
    }

    .newsletter-text {
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .newsletter-privacy {
        margin-top: 12px;
    }
}

@media screen and (max-width: 480px) {
    .newsletter {
        padding: 15px;
    }

    .newsletter::before {
        margin-bottom: 24px;
    }

    .newsletter-container {
        padding: 20px;
        max-width: 100%;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-form {
        flex-direction: row;
        gap: 12px;
    }

    .newsletter-form button {
        width: 40%;
        font-size: 13px;
    }

    .newsletter-privacy {
        font-size: 11px;
    }
}

/* --- Newsletter Section End --- */


/* --- Footer Styles Start --- */
.footer {
    color: #222;
    padding: 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
    position: relative;
    z-index: 9999;
    display: flex;
    gap: 60px;
    padding: 40px 0;
    max-width: min(90%, var(--section-max-width));
    margin: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.footer-logo-section {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.company-description {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.contact-section {
    width: 100%;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(270deg, #d64545, #a71c1c, #d64545, #a71c1c);
    background-size: 300% 100%;
    background-position: 0% 0%;
    color: white;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(167, 28, 28, 0.3);
    width: fit-content;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(167, 28, 28, 0.4);
    background-position: 100% 0%;
}

.footer-column-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 0 10px;
    transition: transform 0.3s ease;
}

.column-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
    width: 100%;
    position: relative;
}

.column-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
}

.footer-link {
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding: 2px 0;
}

.footer-link:hover {
    color: var(--accent-color);
    text-decoration: none;
    transform: translateX(5px);
}

.footer-image {
    max-width: 250px;
    height: auto;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 0;
}

.footer-links {
    border-top: 1px solid #dee2e6;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.social-section {
    padding: 20px 0;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 16px;
    padding: 0;
    font-size: 24px;
    justify-content: center;
}

.social-links a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    transform: translateY(-2px);
    color: var(--accent-color);
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.terms-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #dee2e6;
}

.policy-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 16px;
    border-radius: 25px;
}

.policy-link:hover {
    color: var(--accent-color);
    background-color: rgba(167, 28, 28, 0.05);
    transform: translateY(-2px);
    text-decoration: none;
}

.legal-divider {
    color: #dee2e6;
    margin: 0 12px;
    font-weight: 300;
}

.company-details {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #dee2e6;
    padding: 20px;
    text-align: center;
}

.company-info {
    color: #adb5bd;
    font-size: 12px;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #adb5bd;
    padding: 0;
    background: transparent;
    border-top: none;
    margin: 0;
    font-weight: 400;
}

@media screen and (max-width: 1440px) {
    .footer-image {
        max-width: 200px;
    }

    .footer-container {
        gap: 20px;
    }

    .column-title {
        font-size: 14px;
    }

    .column-list {
        gap: 8px;
    }

    .footer-link {
        font-size: 13px;
    }

    .contact-button {
        padding: 12px 16px;
        font-size: 13px;
    }

    .social-section {
        padding: 12px 0;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .policy-link {
        padding: 8px 12px;
        font-size: 12px;
    }

    .terms-links {
        gap: 0;
    }

    .legal-divider {
        font-size: 12px;
    }
}

@media screen and (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0 30px;
    }

    .footer-logo-section {
        flex: none;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .contact-section {
        width: fit-content;
    }

    .footer-column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        width: 100%;
    }

    .footer-column {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .footer-logo-section {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-image {
        max-width: 160px;
    }

    .company-description {
        font-size: 11px;
    }

    .contact-button {
        padding: 8px;
        font-size: 10px;
    }

    .column-title {
        font-size: 12px;
    }

    .column-list {
        gap: 6px;
    }

    .footer-link {
        font-size: 11px;
        font-weight: 500;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .policy-link {
        padding: 6px 10px;
        font-size: 11px;
    }

    .legal-divider {
        font-size: 11px;
    }

    .company-info,
    .copyright {
        font-size: 10px;
    }
}

/* --- Footer Styles End--- */

/* --- Cart Modal Start --- */
.cart-hover-area {
    position: relative;
    display: inline-block;
    padding: 5px;
}

.cart-modal {
    display: block;
    position: absolute;
    right: -10px;
    top: 100%;
    background-color: rgba(24, 25, 28, 0.8);
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    min-width: 320px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-radius: 12px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.cart-hover-area:hover .cart-modal,
.cart-modal:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-modal::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

.cart-hover-area:hover .icons,
.cart-hover-area:focus-within .icons {
    color: var(--accent-color);
}

.cart-modal::before {
    content: '';
    position: absolute;
    top: -9px;
    right: 18px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent rgba(24, 25, 28, 0.8) transparent;
    filter: drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.2));
}

.cart-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-modal-header h3 {
    margin: 0;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.cart-modal-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 0 15px;
}

.cart-modal-item {
    display: flex;
    gap: 10px;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: 0.3s ease;
}

.cart-modal-item:hover .cart-modal-item-title {
    color: var(--accent-color);
}

.cart-modal-item:hover img {
    transform: scale(1.2);
}

.cart-modal-item:last-child {
    border-bottom: none;
}

.cart-modal-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    transition: 0.3s ease;
}

.cart-modal-item-details {
    flex: 1;
}

.cart-modal-item-title {
    color: white;
    font-size: 14px;
    margin: 0 0 5px 0;
    transition: 0.3s ease;
    font-weight: 500;
}

.cart-modal-item-price {
    color: #0d7530;
    font-size: 14px;
    font-weight: 900;
    margin: 0;
}

.cart-modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-modal-footer a {
    flex: 1;
    text-align: center;
    padding: 8px 15px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cart-modal-footer a:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.cart-button {
    background-color: rgba(var(--accent-color-rgb), 0.2);
}

.modal-checkout-button {
    background-color: var(--accent-color) !important;
}

.modal-checkout-button:hover {
    background-color: rgba(var(--accent-color-rgb), 0.8);
}

.empty-cart-message {
    color: #999;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
}

/* --- Cart Modal End --- */


/* --- Help Widget Styles Start --- */
.help-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    font-family: "Montserrat", sans-serif;
}

.help-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 100px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.help-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.help-button ion-icon {
    font-size: 18px;
}

.help-button img {
    width: 55px;
    height: 55px;
}

.help-popup {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 20px;
    background-color: rgba(18, 18, 20, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.help-popup.active {
    display: block;
    animation: slideUp 0.3s ease-out;
}

.help-popup-content {
    padding: 12px;
}

.help-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.help-popup-header h2 {
    color: white;
    margin: 0;
    font-size: 18px;
}

.close-help {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.close-help:hover {
    color: var(--accent-color);
}

/* Form Styles */
.help-popup .form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
    max-width: 100%;
}

.help-popup .form-group {
    width: 100%;
    margin-bottom: 8px;
}

.help-popup .form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 12px;
    transition: all 0.3s ease;
}

.help-popup .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.help-popup .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.help-popup .ticket-type-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin: 8px 0;
    width: 100%;
    box-sizing: border-box;
}

.help-popup .ticket-type-input {
    display: none;
}

.help-popup .ticket-type-label {
    display: block;
    padding: 6px 4px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.help-popup .ticket-type-input:checked+.ticket-type-label {
    background-color: rgba(var(--accent-color-rgb), 0.2);
    border-color: var(--accent-color);
}

.help-popup textarea.form-control {
    min-height: 60px;
    max-height: 100px;
    resize: vertical;
}

.help-popup .form-submit {
    margin-top: 8px;
}

.help-popup .form-submit-button {
    width: 100%;
    box-sizing: border-box;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-popup .form-submit-button:hover {
    opacity: 0.9;
}

.help-popup .sent-message {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 6px;
    background: rgba(52, 211, 153, 0.1);
    color: #34D399;
    border: 1px solid rgba(52, 211, 153, 0.2);
    font-size: 12px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media screen and (max-width: 480px) {
    .help-popup {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 80px;
    }

    .help-button {
        padding: 8px 14px;
        font-size: 13px;
    }

    .help-button ion-icon {
        font-size: 16px;
    }
}

.help-tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 8px;
}

.help-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.help-button:hover .help-tooltip {
    visibility: visible;
}

/* --- Help Widget Styles End --- */