/* ----- Reset & Base ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    color: #1A1A1A;
    font-family: 'Google Sans', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 62px; /* Add padding to prevent content from hiding behind fixed header */
}

/* ----- Header Placeholder - FIXED AT TOP ----- */
#header-placeholder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    display: block;
    min-height: 0;
    background: linear-gradient(135deg, #1e2434 0%, #262626 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid rgba(255, 153, 0, 0.2);
}

/* SITE HEADER */
.site-header {
    background: transparent;
    padding: 6px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
    font-family: 'Google Sans', sans-serif;
    width: 100%;
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 4%;
        min-height: 35px;
    }
    body {
        padding-top: 85px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 6px 3%;
        min-height: 35px;
    }
    body {
        padding-top: 76px;
    }
}

/* LOGO AREA */
.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo-img {
        height: 38px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 32px;
    }
}

/* NAVIGATION */
.navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-list a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF9900, #e68a00);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-list a:hover {
    color: #FF9900;
    background: rgba(255, 153, 0, 0.06);
}

.nav-list a:hover::after {
    width: 50%;
}

.nav-list a:active {
    transform: scale(0.95);
}

/* ----- MOBILE: Menu Slides FROM LEFT at 50% WIDTH with BIGGER FONTS ----- */
@media (max-width: 768px) {
    .navigation {
        position: fixed;
        top: 0;
        left: -50%;
        width: 50%;
        height: 100vh;
        background: linear-gradient(145deg, #1c1e2e 0%, #282828 100%);
        padding: 90px 30px 30px;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 5px 0 40px rgba(0, 0, 0, 0.6);
        overflow-y: auto;
        border-right: 2px solid rgba(255, 153, 0, 0.15);
        z-index: 999;
    }

    .navigation.active {
        left: 0;
    }

    /* Overlay - stays BEHIND the toggle button */
    .navigation.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }

    .nav-list {
        flex-direction: column;
        gap: 58px;
        width: 100%;
        margin-top: -250px;
    }

    .nav-list a {
        font-size: 20px;
        font-weight: 600;
        padding: 16px 20px;
        width: 100%;
        border-radius: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        letter-spacing: 0.5px;
    }

    .nav-list a::after {
        display: none;
    }

    .nav-list a:hover {
        background: rgba(255, 153, 0, 0.1);
        padding-left: 28px;
        color: #FF9900;
    }

    .navigation::-webkit-scrollbar {
        width: 4px;
    }

    .navigation::-webkit-scrollbar-track {
        background: transparent;
    }

    .navigation::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #FF9900, #e68a00);
        border-radius: 4px;
    }

    .navigation {
        scrollbar-width: thin;
        scrollbar-color: #FF9900 transparent;
    }
}

@media (max-width: 480px) {
    .navigation {
        width: 50%;
        left: -50%;
        padding: 80px 20px 20px;
    }

    .nav-list a {
        font-size: 16px;
        padding: 14px 16px;
        font-weight: 600;
    }

    .nav-list {
        gap: 36px;
        margin-top: -290px;
    }
}

/* ----- MAKE SURE TOGGLE BUTTON STAYS ON TOP AND CLICKABLE ----- */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex !important;
        padding: 6px;
        position: relative;
        z-index: 1001;
        cursor: pointer;
    }

    .mobile-toggle span {
        width: 34px;
        height: 4px;
    }
}

/* HEADER ACTIONS - ensure toggle is clickable */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}

/* Cart Icon */
.cart-icon-header {
    position: relative;
    color: #FFFFFF;
    font-size: 29px;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-header:hover {
    color: #FF9900;
    background: rgba(255, 153, 0, 0.08);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, #FF9900, #e68a00);
    color: #1A1A1A;
    font-size: 12px;
    font-weight: 700;
    min-width: 22px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1A1A1A;
    padding: 0 4px;
    transition: all 0.3s ease;
}

.cart-count:hover {
    transform: scale(1.1);
}

/* Account Button with Icon */
.account-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.account-btn i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.account-btn:hover {
    color: #FF9900;
    background: rgba(255, 153, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.2);
    transform: translateY(-1px);
}

.account-btn:hover i {
    color: #FF9900;
}

.account-btn:active {
    transform: scale(0.95);
}

.account-label {
    font-size: 14px;
    font-family: 'Google Sans', sans-serif;
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-actions {
        gap: 4px;
    }

    .cart-icon-header {
        font-size: 27px;
        padding: 6px 8px;
    }

    .cart-count {
        min-width: 26px;
        height: 26px;
        font-size: 12px;
        top: -1px;
        right: -1px;
        margin-top: -8px;
    }

    .account-btn .account-label {
        display: none;
    }

    .account-btn {
        padding: 6px 10px;
        border-radius: 50%;
        background: none;
        border: none;
    }

    .account-btn i {
        font-size: 22px;
    }

    .account-btn:hover {
        background: rgba(255, 153, 0, 0.08);
        border: none;
    }
}

@media (max-width: 480px) {
    .cart-icon-header {
        font-size: 23px;
        padding: 4px 6px;
    }

    .account-btn i {
        font-size: 20px;
    }

    .cart-count {
        min-width: 18px;
        height: 19px;
        font-size: 12px;
        margin-top: -8px;
    }
}

/* MOBILE TOGGLE - Base styles */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: all 0.3s ease;
}

.mobile-toggle span {
    width: 30px;
    height: 3.5px;
    background-color: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle:hover span {
    background-color: #FF9900;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: #FF9900;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: #FF9900;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* UTILITY CLASSES */
.text-orange {
    color: #FF9900;
}

.bg-orange {
    background: linear-gradient(135deg, #FF9900, #e68a00);
}

.border-orange {
    border-color: #FF9900;
}

.bg-dark {
    background: linear-gradient(135deg, #1A1A1A, #262626);
}

.text-dark {
    color: #1A1A1A;
}



/* ============FOOTER STYLES ============ */

.site-footer {
    background: linear-gradient(135deg, #1e222e 0%, #2c2f3a 100%);
    color: #FFFFFF;
    padding: 50px 5% 0;
    margin-top: 50px;
    position: relative;
    border-top: 3px solid rgba(255, 153, 0, 0.15);
    font-family: 'Google Sans', sans-serif;
    flex-shrink: 0;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF9900, #e68a00);
    color: #1A1A1A;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.back-to-top:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 153, 0, 0.4);
    background: linear-gradient(135deg, #e68a00, #cc7a00);
    color: #FFFFFF;
}

.back-to-top:active {
    transform: translateX(-50%) scale(0.9);
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand Column */
.brand-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    height: 45px;
    width: auto;
    border-radius: 6px;
    max-width: 160px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.6;
    max-width: 300px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-social a:hover {
    background: rgba(255, 153, 0, 0.12);
    color: #FF9900;
    transform: translateY(-2px);
    border-color: rgba(255, 153, 0, 0.15);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ebedf1;
    padding-bottom: 6px;
    position: relative;
    letter-spacing: 0.3px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, #FF9900, #e68a00);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.703);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-links a:hover {
    color: #FF9900;
    padding-left: 6px;
}

/* Contact List */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact li i {
    color: #FF9900;
    font-size: 13px;
    width: 18px;
    text-align: center;
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-contact li span {
    color: rgba(255, 255, 255, 0.65);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p span {
    color: #FF9900;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
}

.footer-bottom-links a:hover {
    color: #FF9900;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .brand-column {
        grid-column: 1 / -1;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 4% 0;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding-bottom: 25px;
    }

    .brand-column {
        grid-column: 1 / -1;
    }

    .footer-logo {
        height: 38px;
    }

    .footer-heading {
        font-size: 16Spx;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 12px 0;
        gap: 6px;
    }

    .footer-bottom-links {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 35px 3% 0;
        margin-top: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 20px;
    }

    .footer-logo {
        height: 34px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-social a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .footer-heading {
        font-size: 16px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }

    .footer-contact li i {
        font-size: 13px;
        width: 16px;
    }

    .back-to-top {
        width: 34px;
        height: 34px;
        font-size: 14px;
        top: -17px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .footer-bottom-links a {
        font-size: 11px;
    }
}

html {
    scroll-behavior: smooth;
}



/* SCROLL BAR */

/* Custom Scrollbar with Arrows - Stationery Hub Bookshop */

/* For Webkit browsers (Chrome, Safari, Edge, Opera) */
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #1A1A1A;
    border-radius: 8px;
    border: 1px solid rgba(255, 153, 0, 0.1);
}

/* Track pieces (top and bottom areas) */
::-webkit-scrollbar-track-piece {
    background: #1A1A1A;
}

/* Thumb */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF9900, #e68a00, #cc7a00);
    border-radius: 8px;
    border: 2px solid #1A1A1A;
    min-height: 40px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e68a00, #cc7a00, #b36b00);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #cc7a00, #b36b00, #995c00);
}

/*  SCROLLBAR BUTTONS */

/* Up button (top arrow) */
::-webkit-scrollbar-button:single-button:vertical:decrement {
    height: 18px;
    width: 14px;
    background: linear-gradient(180deg, #FF9900, #e68a00);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Up arrow icon */
::-webkit-scrollbar-button:single-button:vertical:decrement::before {
    content: '▲';
    color: #1A1A1A;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    background: linear-gradient(180deg, #e68a00, #cc7a00);
    border-color: rgba(255, 153, 0, 0.5);
}

::-webkit-scrollbar-button:single-button:vertical:decrement:active {
    background: linear-gradient(180deg, #cc7a00, #b36b00);
}

/* Down button (bottom arrow) */
::-webkit-scrollbar-button:single-button:vertical:increment {
    height: 18px;
    width: 14px;
    background: linear-gradient(180deg, #e68a00, #FF9900);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 0 0 6px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Down arrow icon */
::-webkit-scrollbar-button:single-button:vertical:increment::before {
    content: '▼';
    color: #1A1A1A;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

::-webkit-scrollbar-button:single-button:vertical:increment:hover {
    background: linear-gradient(180deg, #cc7a00, #e68a00);
    border-color: rgba(255, 153, 0, 0.5);
}

::-webkit-scrollbar-button:single-button:vertical:increment:active {
    background: linear-gradient(180deg, #b36b00, #cc7a00);
}

/* Disabled state (when at top/bottom) */
::-webkit-scrollbar-button:single-button:vertical:decrement:disabled,
::-webkit-scrollbar-button:single-button:vertical:increment:disabled {
    opacity: 0.3;
    background: #333;
    cursor: not-allowed;
}

/* Scrollbar corner */
::-webkit-scrollbar-corner {
    background: #1A1A1A;
}

/* Horizontal scrollbar arrows (left and right) */
::-webkit-scrollbar-button:single-button:horizontal:decrement {
    width: 18px;
    height: 14px;
    background: linear-gradient(90deg, #FF9900, #e68a00);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 6px 0 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-button:single-button:horizontal:decrement::before {
    content: '◀';
    color: #1A1A1A;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

::-webkit-scrollbar-button:single-button:horizontal:decrement:hover {
    background: linear-gradient(90deg, #e68a00, #cc7a00);
}

::-webkit-scrollbar-button:single-button:horizontal:increment {
    width: 18px;
    height: 14px;
    background: linear-gradient(90deg, #e68a00, #FF9900);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 0 6px 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-button:single-button:horizontal:increment::before {
    content: '▶';
    color: #1A1A1A;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

::-webkit-scrollbar-button:single-button:horizontal:increment:hover {
    background: linear-gradient(90deg, #cc7a00, #e68a00);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #FF9900 #1A1A1A;
}

/* Smooth scroll for entire page */
html {
    scroll-behavior: smooth;
}



/* ==========PAGE HEADERS======= */

/* Page Header - Redesigned */

.page-header {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 5% 50px;
    background: url('/images/shop3.jpg') center center / cover no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 153, 0, 0.06), transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(26, 26, 26, 0.92) 0%,
        rgba(26, 26, 26, 0.75) 40%,
        rgba(26, 26, 26, 0.55) 70%,
        rgba(26, 26, 26, 0.35) 100%
    );
    z-index: 1;
}

.page-header-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, #FFFFFF, transparent);
    z-index: 1;
}

/* Decorative line top */
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF9900, #e68a00, #FF9900, transparent);
    z-index: 2;
    animation: lineExpand 1.2s ease forwards;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80%;
        opacity: 1;
    }
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    animation: contentFadeUp 1s ease forwards;
}

@keyframes contentFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header-content .page-badge {
    display: inline-block;
    font-family: 'Google Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #FF9900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    padding: 6px 18px;
    border: 1px solid rgba(255, 153, 0, 0.2);
    border-radius: 50px;
    background: rgba(255, 153, 0, 0.275);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(255, 153, 0, 0.05);
    }
}

.page-header-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-header-content h1 .highlight {
    color: #FF9900;
    position: relative;
}

.page-header-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 10px;
    border-radius: 50%;
    border-bottom: 4px solid #FF9900;
    opacity: 0.3;
}

.page-header-content .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

.page-header-content .breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.page-header-content .breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF9900;
    transition: width 0.3s ease;
}

.page-header-content .breadcrumb a:hover {
    color: #FF9900;
}

.page-header-content .breadcrumb a:hover::after {
    width: 100%;
}

.page-header-content .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.2);
}

.page-header-content .breadcrumb .current {
    color: rgba(255, 255, 255, 0.7);
}

/* Floating decorative dots */
.page-header .dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 153, 0, 0.06);
    z-index: 1;
    pointer-events: none;
    animation: floatDot 10s ease-in-out infinite;
}

.page-header .dot-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.page-header .dot-2 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 5%;
    animation-delay: 3s;
}

.page-header .dot-3 {
    width: 50px;
    height: 50px;
    top: 40%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes floatDot {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

/* Mobile: Page Header */
@media (max-width: 768px) {
    .page-header {
        min-height: 28vh;
        padding: 55px 5% 35px;
        margin-top: -28px;
    }

    .page-header::after {
        width: 60%;
    }

    @keyframes lineExpand {
        0% {
            width: 0;
            opacity: 0;
        }
        100% {
            width: 60%;
            opacity: 1;
        }
    }

    .page-header-content h1 {
        font-size: 28px;
    }

    .page-header-content .page-badge {
        font-size: 10px;
        letter-spacing: 3px;
        padding: 4px 14px;
    }

    .page-header-content .breadcrumb {
        font-size: 13px;
    }

    .page-header .dot-1,
    .page-header .dot-2,
    .page-header .dot-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 22vh;
        padding: 45px 4% 25px;
    }

    .page-header::after {
        width: 50%;
    }

    @keyframes lineExpand {
        0% {
            width: 0;
            opacity: 0;
        }
        100% {
            width: 50%;
            opacity: 1;
        }
    }

    .page-header-content h1 {
        font-size: 22px;
    }

    .page-header-content .page-badge {
        font-size: 9px;
        letter-spacing: 2px;
        padding: 3px 12px;
        margin-bottom: 8px;
    }

    .page-header-content .breadcrumb {
        font-size: 12px;
        gap: 6px;
    }

    .page-header-content .breadcrumb .separator {
        margin: 0 2px;
    }
}