﻿/* =============================================================
   CASAGLOW — Premium Navigation Bar v2.0
   Shopify-style sticky header with two rows
   ============================================================= */

/* ── Skip Link ──────────────────────────────────────────────── */
.cg-skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #2E7D32;
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 9999;
    transition: top 150ms ease;
    text-decoration: none;
}
.cg-skip-link:focus { top: 0; }

/* ── Container ──────────────────────────────────────────────── */
.cg-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================================
   TOP BAR
   ============================================================= */
.cg-topbar {
    background: #1B5E20;
    color: rgba(255,255,255,0.80);
    font-size: 0.75rem;
    padding: 7px 0;
    line-height: 1;
}
.cg-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cg-topbar__left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.cg-topbar__announcement {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: rgba(255,255,255,0.90);
}
.cg-topbar__sep { color: rgba(255,255,255,0.30); }
.cg-topbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cg-topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: color 150ms ease;
    font-size: 0.75rem;
}
.cg-topbar__link:hover { color: #fff; }
.cg-topbar__divider { color: rgba(255,255,255,0.25); font-size: 10px; }

/* =============================================================
   MAIN HEADER WRAPPER
   ============================================================= */
.cg-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #ffffff;
    box-shadow: 0 1px 0 #E5E7EB;
    transition: box-shadow 250ms ease;
}
.cg-header.is-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* =============================================================
   ROW 1 — Logo + Search + Actions
   ============================================================= */
.cg-header__row1 {
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
}
.cg-header__row1-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ── Logo ───────────────────────────────────────────────────── */
.cg-header__logo {
    flex-shrink: 0;
}
.cg-header__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.cg-header__logo img { height: 46px; width: auto; }
.cg-header__logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: #2E7D32;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

/* ── Large Search Bar ───────────────────────────────────────── */
.cg-search-wrap {
    flex: 1;
    position: relative;
    max-width: 640px;
}
.cg-search-form { width: 100%; }
.cg-search-form__inner {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    padding: 0 6px 0 16px;
    height: 48px;
    gap: 8px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}
.cg-search-form__inner:focus-within {
    border-color: #2E7D32;
    box-shadow: 0 0 0 4px rgba(46,125,50,0.10);
}
.cg-search-form__icon {
    color: #9CA3AF;
    flex-shrink: 0;
    pointer-events: none;
    transition: color 200ms ease;
}
.cg-search-form__inner:focus-within .cg-search-form__icon { color: #2E7D32; }
.cg-search-form__input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1E1E1E;
    padding: 0 !important;
    height: 100%;
    min-width: 0;
    box-shadow: none !important;
}
.cg-search-form__input::placeholder { color: #9CA3AF; }
.cg-search-form__clear {
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    flex-shrink: 0;
    transition: background 150ms ease, color 150ms ease;
}
.cg-search-form__clear:hover { background: #F3F4F6; color: #374151; }
.cg-search-form__submit {
    height: 36px;
    padding: 0 20px;
    background: #2E7D32;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 150ms ease, transform 150ms ease;
}
.cg-search-form__submit:hover { background: #1B5E20; transform: scale(1.02); }

/* Live search results */
.cg-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 300;
    max-height: 480px;
    overflow-y: auto;
}
.cg-search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #1E1E1E;
    transition: background 150ms ease;
    border-bottom: 1px solid #F9FAFB;
}
.cg-search-result-item:last-child { border-bottom: none; }
.cg-search-result-item:hover { background: #F8FAF8; }
.cg-search-result-item__img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #F3F4F6;
    background: #F9FAFB;
}
.cg-search-result-item__body { flex: 1; min-width: 0; }
.cg-search-result-item__title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1E1E1E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.cg-search-result-item__cat {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 2px;
    display: block;
}
.cg-search-result-item__price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #2E7D32;
    flex-shrink: 0;
}
.cg-search-results__no-result,
.cg-search-results__loading {
    padding: 20px 16px;
    font-size: 0.875rem;
    color: #9CA3AF;
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.cg-search-results__view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    background: #F8FAF8;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2E7D32;
    text-decoration: none;
    transition: background 150ms ease;
    border-top: 1px solid #E5E7EB;
}
.cg-search-results__view-all:hover { background: #EAF7EA; }

/* ── Action Buttons (Wishlist / Account / Cart) ─────────────── */
.cg-header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-left: auto;
}
.cg-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 56px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #374151;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 150ms ease;
    position: relative;
}
.cg-action-btn:hover {
    color: #2E7D32;
    background: rgba(46,125,50,0.07);
}
.cg-action-btn__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: inherit;
    white-space: nowrap;
    line-height: 1;
}
/* Cart button — green CTA pill */
.cg-action-btn--cart {
    background: #2E7D32;
    color: #fff;
    border-radius: 50px;
    padding: 8px 18px;
    flex-direction: row;
    gap: 8px;
    min-width: auto;
}
.cg-action-btn--cart:hover {
    background: #1B5E20;
    color: #fff;
}
.cg-action-btn--cart .cg-action-btn__label {
    color: #fff;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.cg-action-btn__cart-wrap { position: relative; display: flex; align-items: center; }
.cg-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: #fff;
    color: #2E7D32;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #2E7D32;
}
.cg-action-btn--cart .cg-cart-count {
    background: #fff;
    color: #2E7D32;
    border-color: #2E7D32;
}
.cg-cart-count--empty { display: none; }

/* Hamburger — hidden on desktop */
.cg-hamburger-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    color: #374151;
    transition: all 150ms ease;
}
.cg-hamburger-btn:hover { border-color: #2E7D32; color: #2E7D32; background: rgba(46,125,50,0.05); }

/* =============================================================
   ROW 2 — Categories Dropdown + Nav Links
   ============================================================= */
.cg-header__row2 {
    padding: 0;
    background: #fff;
}
.cg-header__row2-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
}

/* ── Categories Dropdown Button ─────────────────────────────── */
.cg-categories-dropdown {
    position: relative;
    flex-shrink: 0;
}
.cg-categories-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    height: 46px;
    background: #2E7D32;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 150ms ease;
    border-radius: 0;
}
.cg-categories-btn:hover { background: #1B5E20; }
.cg-categories-btn__chevron {
    transition: transform 250ms ease;
    flex-shrink: 0;
}
.cg-categories-btn[aria-expanded="true"] .cg-categories-btn__chevron {
    transform: rotate(180deg);
}

/* Categories panel */
.cg-categories-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-top: 2px solid #2E7D32;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    z-index: 250;
    padding: 8px 0;
    animation: cgDropIn 200ms ease forwards;
}
@keyframes cgDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cg-categories-panel__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cg-categories-panel__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    text-decoration: none;
    color: #374151;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    transition: all 150ms ease;
}
.cg-categories-panel__link:hover {
    background: #F8FAF8;
    color: #2E7D32;
    padding-left: 22px;
}
.cg-categories-panel__img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #F3F4F6;
}
.cg-categories-panel__icon {
    width: 32px;
    height: 32px;
    background: #EAF7EA;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2E7D32;
    flex-shrink: 0;
}
.cg-categories-panel__name { flex: 1; font-weight: 500; }
.cg-categories-panel__count {
    font-size: 0.6875rem;
    color: #9CA3AF;
    background: #F3F4F6;
    padding: 2px 7px;
    border-radius: 9999px;
    flex-shrink: 0;
}
.cg-categories-panel__item--all {
    border-top: 1px solid #F3F4F6;
    margin-top: 6px;
    padding-top: 6px;
}
.cg-categories-panel__link--all {
    justify-content: space-between;
    color: #2E7D32;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
}
.cg-categories-panel__link--all:hover { background: #EAF7EA; padding-left: 18px; }

/* ── Primary Navigation ─────────────────────────────────────── */
.cg-primary-nav { flex: 1; }
.cg-nav__list {
    display: flex;
    align-items: stretch;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0 8px;
    height: 46px;
}
.cg-nav__list li { position: relative; display: flex; align-items: stretch; }
.cg-nav__list > li > a {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 150ms ease, border-color 150ms ease;
    gap: 5px;
}
.cg-nav__list > li > a:hover,
.cg-nav__list > li.current-menu-item > a,
.cg-nav__list > li.current-menu-parent > a,
.cg-nav__list > li.current-menu-ancestor > a {
    color: #2E7D32;
    border-bottom-color: #2E7D32;
}

/* Dropdown */
.cg-nav__list ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border: 1px solid #E5E7EB;
    border-top: 2px solid #2E7D32;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 200ms ease;
    z-index: 240;
}
.cg-nav__list li:hover > ul,
.cg-nav__list li:focus-within > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.cg-nav__list ul li a {
    display: flex;
    padding: 9px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: all 150ms ease;
    border-bottom: none;
}
.cg-nav__list ul li a:hover { background: #F8FAF8; color: #2E7D32; padding-left: 22px; }

/* =============================================================
   MOBILE DRAWER MENU
   ============================================================= */
.cg-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    z-index: 399;
    opacity: 0;
    visibility: hidden;
    transition: all 250ms ease;
}
.cg-mobile-overlay.is-active { opacity: 1; visibility: visible; }

.cg-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: min(340px, 88vw);
    height: 100dvh;
    background: #fff;
    z-index: 400;
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 40px rgba(0,0,0,0.12);
    transform: translateX(-100%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.cg-mobile-menu:not([hidden]) { transform: translateX(0); }

.cg-mobile-menu__hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #F3F4F6;
    flex-shrink: 0;
}
.cg-mobile-menu__hd-logo img { height: 38px; width: auto; }
.cg-mobile-menu__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #374151;
    transition: all 150ms ease;
}
.cg-mobile-menu__close:hover { background: #E5E7EB; color: #1E1E1E; }

/* Mobile search */
.cg-mobile-menu__search {
    padding: 14px 16px;
    border-bottom: 1px solid #F3F4F6;
    flex-shrink: 0;
}
.cg-mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F8FAF8;
    border: 1.5px solid #E5E7EB;
    border-radius: 50px;
    padding: 0 16px;
    height: 42px;
    transition: border-color 150ms ease;
}
.cg-mobile-search:focus-within { border-color: #2E7D32; }
.cg-mobile-search svg { color: #9CA3AF; flex-shrink: 0; }
.cg-mobile-search input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #1E1E1E;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Menu body */
.cg-mobile-menu__body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
}

/* Categories accordion */
.cg-mobile-section {}
.cg-mobile-section__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1E1E1E;
    text-align: left;
    transition: background 150ms ease;
}
.cg-mobile-section__toggle > span { display: flex; align-items: center; gap: 10px; }
.cg-mobile-section__toggle:hover { background: #F8FAF8; }
.cg-mobile-section__chevron { flex-shrink: 0; transition: transform 250ms ease; color: #9CA3AF; }
.cg-mobile-section__toggle[aria-expanded="true"] .cg-mobile-section__chevron { transform: rotate(180deg); color: #2E7D32; }
.cg-mobile-section__toggle[aria-expanded="true"] { color: #2E7D32; }

.cg-mobile-cats {
    list-style: none;
    margin: 0;
    padding: 0 0 8px;
    background: #FAFAFA;
    border-bottom: 1px solid #F3F4F6;
}
.cg-mobile-cats li a {
    display: block;
    padding: 10px 20px 10px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: all 150ms ease;
}
.cg-mobile-cats li a:hover { color: #2E7D32; background: #F0FDF4; }
.cg-mobile-cats__all a {
    color: #2E7D32 !important;
    font-weight: 600;
}

/* Mobile nav links generated by wp_nav_menu */
.cg-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}
.cg-mobile-nav li a {
    display: block;
    padding: 13px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1E1E1E;
    text-decoration: none;
    transition: all 150ms ease;
    border-left: 3px solid transparent;
}
.cg-mobile-nav li a:hover,
.cg-mobile-nav li.current-menu-item > a {
    color: #2E7D32;
    background: #F0FDF4;
    border-left-color: #2E7D32;
}
.cg-mobile-nav .sub-menu { padding-left: 16px; display: none; }
.cg-mobile-nav .menu-item-has-children.is-open > .sub-menu { display: block; }
.cg-mobile-nav .sub-menu li a { font-size: 0.875rem; padding: 10px 20px; }

/* Drawer footer */
.cg-mobile-menu__ft {
    padding: 16px 20px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    background: #FAFAFA;
}
.cg-mobile-menu__login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #2E7D32;
    color: #fff;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 150ms ease;
}
.cg-mobile-menu__login-btn:hover { background: #1B5E20; color: #fff; }
.cg-mobile-menu__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #5F6368;
    text-decoration: none;
    padding: 8px;
    transition: color 150ms ease;
}
.cg-mobile-menu__contact:hover { color: #2E7D32; }

/* =============================================================
   HEADER SPACER
   ============================================================= */
#cg-header-spacer { display: block; }

/* =============================================================
   FOOTER (unchanged styles preserved via design-system.css)
   ============================================================= */

/* =============================================================
   RESPONSIVE — Tablet ≤ 1024px
   ============================================================= */
@media (max-width: 1024px) {
    .cg-primary-nav { display: none; }
    .cg-categories-dropdown { display: none; }
    .cg-hamburger-btn { display: flex; }
    .cg-header__row2 { display: none; }
    .cg-action-btn__label { display: none; }
    .cg-action-btn--cart .cg-action-btn__label { display: block; }
    .cg-search-wrap { max-width: none; }
}

/* =============================================================
   RESPONSIVE — Mobile ≤ 768px
   ============================================================= */
@media (max-width: 768px) {
    .cg-topbar__left { display: none; }
    .cg-header__row1 { padding: 10px 0; }
    .cg-header__logo img { height: 38px; }
    .cg-container { padding: 0 16px; }
    .cg-action-btn--cart .cg-action-btn__label { display: none; }
    .cg-action-btn--cart { padding: 8px 12px; border-radius: 10px; flex-direction: column; }
    .cg-header__actions { gap: 2px; }
}

/* =============================================================
   RESPONSIVE — Small Mobile ≤ 480px
   ============================================================= */
@media (max-width: 480px) {
    .cg-topbar { display: none; }
    .cg-search-form__submit { padding: 0 12px; font-size: 0.8125rem; }
    .cg-header__row1-inner { gap: 10px; }
}

/* =============================================================
   ACCESSIBILITY
   ============================================================= */
.cg-header :focus-visible,
.cg-mobile-menu :focus-visible {
    outline: 3px solid #2E7D32;
    outline-offset: 2px;
    border-radius: 4px;
}

/* =============================================================
   ANNOUNCEMENT BAR v3
   ============================================================= */
.cg-announce-bar {
    background: #1B5E20;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}
.cg-announce-bar .cg-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cg-announce-bar__list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0; padding: 0;
    flex-wrap: wrap;
}
.cg-announce-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
}
.cg-announce-bar__item svg { flex-shrink: 0; opacity: 0.85; }
.cg-announce-bar__right { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; }
.cg-announce-bar__link { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 150ms; }
.cg-announce-bar__link:hover { color: #fff; }

@media (max-width: 768px) {
    .cg-announce-bar__list { gap: 12px; }
    .cg-announce-bar__list li:nth-child(n+3) { display: none; }
}
@media (max-width: 480px) {
    .cg-announce-bar__right { display: none; }
    .cg-announce-bar__list li:nth-child(n+2) { display: none; }
}
