/* =====================
   Root Variables
===================== */
:root {
    --baby-blue: #dff2ff;
    --cherry-blossom: #ffb7c5;
    --deep-blue: #2c6fa3;
    --dark: #333;
    --white: #ffffff;
}

/* =====================
   Reset & Base
===================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--baby-blue);
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =====================
   Header
===================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    height: 42px;
}

.brand h1 {
    font-size: 1.5rem;
    color: var(--deep-blue);
    font-weight: 600;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

nav ul li {
    position: relative;
    font-weight: 500;
}

nav ul li:hover {
    color: var(--deep-blue);
}

.login-icon {
    font-size: 1.3rem;
    color: var(--deep-blue);
}

/* =====================
   Hero Section
===================== */
.hero {
    background: linear-gradient(135deg, var(--baby-blue), var(--cherry-blossom));
    padding: 80px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--deep-blue);
    animation: slideUp 0.9s ease forwards;
}

.hero p {
    margin: 20px 0 30px;
    font-size: 1.1rem;
    max-width: 520px;
    animation: fadeIn 1.2s ease forwards;
}

.hero .cta {
    display: inline-block;
    background: var(--deep-blue);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero .cta:hover {
    background: #1f5b8a;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
}

/* ================================
   Lanyard Cards    
======================================== */
.top-lanyards{
padding:60px 20px;
background:#f7f7f7;
}

.section-title{
text-align:center;
margin-bottom:30px;
font-size:28px;
}

.lanyard-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.lanyard-card{
background:#fff;
border-radius:10px;
padding:15px;
text-align:center;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:0.25s;
}

.lanyard-card:hover{
transform:translateY(-5px);
}

.lanyard-card img{
width:100%;
height:320px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
}

.material{
font-size:13px;
color:#777;
}

.price{
font-size:18px;
font-weight:bold;
margin:8px 0;
}

.card-btn{
display:inline-block;
padding:8px 14px;
background:#007bff;
color:white;
text-decoration:none;
border-radius:6px;
font-size:14px;
}

.order-btn {
    display: block;
    margin: 10px auto 0;
    text-align: center;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}



.view-more-wrapper{
text-align:center;
margin-top:30px;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;           /* Padding for the button's size */
    font-size: 16px;              /* Text size */
    color: #ffffff;              /* Text color */
    background-color: #007BFF;   /* Button background color */
    text-decoration: none;       /* Remove underline */
    border-radius: 50px;         /* Make the button pill-shaped */
    border: none;                /* Remove border */
    text-align: center;          /* Center text */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.view-more-btn:hover {
    background-color: #C2185B;  /* Darker background color on hover */
}




/* =====================
   Features Section
===================== */
.features {
    padding: 80px 20px;
    background: var(--white);
}

.features h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--deep-blue);
}

.feature-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--baby-blue);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 20px;
}

.feature-card h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

 /* Hover effects */
        .feature-card:hover {
            transform: translateY(-10px);  /* Lift the card up */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  /* Stronger shadow for depth */
            background: #f0f8ff;  /* Change background color */
        }

        .feature-card:hover i {
            color: #00b4d8;  /* Change icon color on hover */
        }

        .feature-card:hover h3 {
            color: #007bff;  /* Change heading color on hover */
        }

        /* Optional: active state for a click effect */
        .feature-card:active {
            transform: translateY(-2px);
        }
		
		
/* =====================
   Footer
===================== */
footer {
    background: #1f5b8a;
    color: var(--white);
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

footer h5 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

.social a {
    margin-right: 12px;
    font-size: 1.3rem;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* =====================
   Animations
===================== */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =====================
   Responsive
===================== */
@media(max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 20px auto 30px;
    }
}

/* Multi-level Dropdown */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    position: relative;
}

nav li {
    position: relative;
}

nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    min-width: 200px;
    flex-direction: column;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
}

nav li:hover > ul {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}


nav li ul li a {
    padding: 12px 24px;
    display: block;
    color: var(--deep-blue);
    font-weight: 500;
    transition: all 0.2s ease;
}

nav li ul li a:hover {
    background: linear-gradient(90deg, var(--baby-blue), var(--cherry-blossom));
    color: var(--white);
    border-radius: 8px;
}

nav a.has-sub::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Nested submenus */
nav li ul li ul {
    top: 0;
    left: 100%;
    margin-left: 8px;
}
/* Icon spacing */
nav li a i {
    margin-right: 8px;
    color: var(--deep-blue);
}

/* Adjust submenu hover gradient to also affect icon */
nav li ul li a:hover i {
    color: var(--white);
}


/* ===================== Mobile ===================== */
.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--deep-blue);
}

@media(max-width: 900px) {
    nav ul {
        display: none;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
        border-top: 1px solid var(--baby-blue);
    }

    nav li ul {
        position: static;
        box-shadow: none;
        border-radius: 0;
    }

    nav li:hover > ul {
        display: none;
    }

    nav li a.has-sub::after {
        content: ' ▶';
        float: right;
    }

    .mobile-toggle {
        display: block;
    }
	nav li a i {
        margin-right: 8px;
    }
}

/* Toggle menu with JS */
nav.active ul {
    display: flex !important;
}

nav li ul.open {
    display: flex !important;
    flex-direction: column;
}

/* ===================== Lanyard Hero Carousel ===================== */
.lanyard-hero-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 60px 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-overlay {
    position: absolute;
    bottom: 60px;
    left: 50px;
    color: var(--white);
    text-align: left;
    max-width: 500px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.carousel-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.carousel-overlay p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.carousel-overlay .cta {
    background: var(--deep-blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
}

.carousel-overlay .cta:hover {
    background: #1f5b8a;
}

/* Navigation buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44,111,163,0.7);
    color: var(--white);
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(44,111,163,0.9);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Responsive */
@media(max-width: 900px) {
    .lanyard-hero-carousel {
        height: 350px;
    }
    .carousel-overlay {
        left: 20px;
        bottom: 40px;
        max-width: 300px;
    }
    .carousel-overlay h3 {
        font-size: 1.8rem;
    }
    .carousel-overlay p {
        font-size: 1rem;
    }
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--cherry-blossom);
}

/* Responsive smaller dots */
@media(max-width: 900px) {
    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* Overlay animation */
.carousel-overlay {
    position: absolute;
    bottom: 60px;
    left: 50px;
    color: var(--white);
    text-align: left;
    max-width: 500px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.carousel-slide.active .carousel-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Slight stagger for child elements */
.carousel-slide.active .carousel-overlay h3,
.carousel-slide.active .carousel-overlay p,
.carousel-slide.active .carousel-overlay .cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.carousel-slide.active .carousel-overlay h3 {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.carousel-slide.active .carousel-overlay p {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.carousel-slide.active .carousel-overlay .cta {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}
/* Parallax effect for carousel images */
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease; /* smooth parallax transition */
}

/* Slight zoom on active slide */
.carousel-slide.active img {
    transform: scale(1.05); /* subtle zoom effect */
}
/* ================= PRODUCT GALLERY ================= */
.product-gallery {
    background: #ffffff;
    padding: 90px 20px;
}

.gallery-container {
    max-width: 1200px;
    margin: auto;
}

.gallery-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.gallery-header h3 {
    font-size: 2.2rem;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.gallery-header p {
    font-size: 1.05rem;
    opacity: 0.85;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.gallery-item {
    background: var(--baby-blue);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: 18px 20px;
}

.gallery-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--deep-blue);
}

.gallery-item p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== SCROLL TO TOP BUTTON ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

#scrollTopBtn.show {
    display: block;
}
#scrollTopBtn {
    opacity: 0;
    transform: scale(0.85);
}

#scrollTopBtn.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

/* Mobile positioning tweak */
@media (max-width: 768px) {
    #scrollTopBtn {
        bottom: 18px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
/* ===== FLOATING CHAT BUTTON ===== */
.floating-chat {
    position: fixed;
    bottom: 90px; /* sits above scroll-to-top */
    right: 22px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0084ff, #00b4ff);
    color: white;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-chat:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

/* Tooltip */
.floating-chat::after {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-chat:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-chat {
        width: 52px;
        height: 52px;
        font-size: 24px;
        bottom: 80px;
        right: 16px;
    }

    .floating-chat::after {
        display: none;
    }
}
@keyframes chatPulse {
    0% { box-shadow: 0 0 0 0 rgba(0,132,255,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(0,132,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,132,255,0); }
}

.floating-chat {
    animation: chatPulse 2.2s infinite;
}

/* ===== CHAT FAB CONTAINER ===== */
.chat-fab {
    position: fixed;
    bottom: 90px;
    right: 22px;
    z-index: 999;
}

/* MAIN BUTTON */
.chat-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #0077ff, #00b4ff);
    color: white;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

.chat-main:hover {
    transform: scale(1.08);
}

/* MENU */
.chat-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* OPEN STATE */
.chat-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* CHAT ITEMS */
.chat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    padding: 10px 14px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: transform 0.25s ease;
}

.chat-item:hover {
    transform: translateX(-6px);
}

/* PLATFORM COLORS */
.chat-item.messenger { background: #0084ff; }
.chat-item.viber     { background: #7360f2; }
.chat-item.whatsapp  { background: #25d366; }

/* MOBILE */
@media (max-width: 768px) {
    .chat-main {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .chat-item {
        width: 140px;
        font-size: 13px;
    }
}

/* ===== ONLINE INDICATOR ===== */
.online-indicator {
    position: absolute;
    bottom: 64px;
    right: 0;
    background: white;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* ONLINE */
.online-indicator.online {
    background: white;
    color: #2e7d32;
}
/* PULSE DOT */
.pulse {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.6);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* OFFLINE */
.online-indicator.offline {
    background: #fff3cd;
    color: #856404;
}




/* TELEGRAM */
.chat-item.telegram {
    background: #229ED9;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {
    .online-indicator {
        font-size: 11px;
        bottom: 60px;
    }
}
/* ===== INNER FOOTER ===== */
.inner-footer {
    margin-top: 50px;
    background: linear-gradient(135deg, #e3f5ff, #cfefff);
    padding: 25px 15px;
    text-align: center;
    border-top: 1px solid rgba(0,119,182,0.15);
}

.footer-content {
    max-width: 1100px;
    margin: auto;
}

.footer-home {
    display: inline-block;
    margin-bottom: 12px;
    padding: 10px 22px;
    background: white;
    color: #0077b6;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.footer-home:hover {
    background: #0077b6;
    color: white;
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 0.8rem;
    color: #555;
}

/* ================================
   COMPACT HEADER (DESKTOP)
================================ */
@media (min-width: 1024px) {

    .top-bar {
        padding: 8px 20px;      /* reduced from 15px */
    }

    .top-bar h1 {
        font-size: 1.6rem;      /* smaller title */
        margin: 0 0 6px;        /* remove big gap */
    }

    .sort-group {
        margin-top: 4px;
        margin-bottom: 6px;
        gap: 8px;
    }

    .filter-bar {
        margin: 6px auto;
        gap: 8px;
    }

    /* Buttons tighter */
    .sort-menu a,
    .filter-btn {
        padding: 4px 10px;
        font-size: 13px;
        border-radius: 16px;
    }
}

/* ================================
   ONE-LINE SORT + FILTER (DESKTOP)
================================ */
@media (min-width: 1024px) {

    .controls-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 28px;
        flex-wrap: nowrap;
        margin-top: 6px;
    }

    .sort-group,
    .filter-group {
        display: flex;
        align-items: center;
        gap: 10px;
        white-space: nowrap;
    }

    .sort-menu,
    .filter-buttons {
        display: flex;
        gap: 8px;
        flex-wrap: nowrap;
    }

    /* Compact buttons */
    .sort-menu a,
    .filter-btn {
        padding: 4px 10px;
        font-size: 13px;
        border-radius: 16px;
    }
}
@media (max-width: 1023px) {
    .controls-bar {
        flex-direction: column;
        gap: 10px;
    }
}
/* FILTER dropdown */
.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

#filterSelect {
    padding: 5px 12px;
    border-radius: 18px;
    border: 1px solid #ff8c00;
    background: white;
    color: #333;
    font-size: 13px;
    cursor: pointer;
}

/* Clear pill */
.clear-pill {
    padding: 5px 12px;
    border-radius: 18px;
    background: #ffe6cc;
    color: #ff8c00;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.clear-pill:hover {
    background: #ff8c00;
    color: white;
}
.results-count {
    text-align: center;
    margin: 8px 0 18px;
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
#sortSelect {
    padding: 5px 12px;
    border-radius: 18px;
    border: 1px solid #0077b6;
    background: white;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
    width: auto;

}
.sort-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    white-space: nowrap;
}

.sort-label {
    display: inline-block;
    margin: 0;
}
/* 1/2-inch cards (shades of blue) */
.lanyard-card.size-half {
    background: #e6f2ff; /* light blue */
}
.lanyard-card.size-half:hover {
    background: #cce0ff; /* darker blue on hover */
}

/* 3/4-inch cards (shades of pink) */
.lanyard-card.size-three-quarters {
    background: #ffe6f0; /* light pink */
}
.lanyard-card.size-three-quarters:hover {
    background: #ffcce0; /* darker pink on hover */
}

/* 1-inch cards (shades of green) */
.lanyard-card.size-one {
    background: #e6ffe6; /* light green */
}
.lanyard-card.size-one:hover {
    background: #ccffcc; /* darker green on hover */
}



