/* ==========================================================================
   NPOZ OFFICIAL WEBSITE (www.npoz.co.kr) EXACT AESTHETIC & DESIGN REPRODUCTION
   Integrated with (주)풍한인더스트리 (punghancorp.com)
   ========================================================================== */

:root {
    --primary-color: #111111;
    --text-dark: #222222;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #F8F8F6;
    --accent-tan: #8D7A66; /* 건자재 톤다운된 프리미엄 베이지 */
    --accent-mint: #00C897;
    --font-main: 'Pretendard', 'Noto Sans KR', sans-serif;
    --font-serif: 'Nanum Myeongjo', serif;
    --font-en: 'Montserrat', 'Roboto', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--primary-color);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.npoz-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.npoz-header.scrolled {
    background: rgba(17, 17, 17, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
}

.logo-corp {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo-divider {
    color: var(--accent-tan);
    font-weight: 300;
}

.logo-brand {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--accent-mint);
}

.gnb-menu ul {
    display: flex;
    align-items: center;
    gap: 36px;
}

.gnb-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

.gnb-menu a:hover, .gnb-menu a.gnb-highlight {
    color: #FFFFFF;
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-sample-request {
    background: #FFFFFF;
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-sample-request:hover {
    background: var(--accent-mint);
    color: #FFFFFF;
}

.burger-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
    display: block;
}

/* Side Drawer */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.drawer-overlay.active { opacity: 1; visibility: visible; }

.side-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #111111;
    color: #FFFFFF;
    z-index: 2000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.side-drawer.active { right: 0; }

.drawer-top { display: flex; justify-content: space-between; align-items: center; }
.drawer-logo { font-size: 1.3rem; font-weight: 700; color: var(--accent-mint); }
.drawer-close-btn { background: none; border: none; color: #FFF; font-size: 1.5rem; cursor: pointer; }
.drawer-links { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.drawer-links a { font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.btn-drawer-cta { width: 100%; padding: 14px; background: var(--accent-mint); color: #111; font-weight: 700; border-radius: 8px; border: none; cursor: pointer; }

/* ==========================================================================
   Hero Banner Section (npoz.co.kr exact replica)
   ========================================================================== */
#hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000000;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.hero-content .sub-txt {
    display: block;
    font-family: var(--font-en);
    font-size: 16px;
    letter-spacing: 0.4em;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-content .main-txt {
    font-size: clamp(36px, 5.5vw, 76px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
}

.hero-content .main-txt .point {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-mint);
}

.hero-content .desc-txt {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-hero-sample {
    background: var(--accent-mint);
    color: #111111;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-sample:hover {
    background: #00E6AD;
    transform: translateY(-2px);
}

.btn-hero-catalog {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 30px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-catalog:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    opacity: 0.6;
}

.scroll-indicator .mouse {
    width: 20px;
    height: 35px;
    border: 2px solid #FFFFFF;
    border-radius: 15px;
    position: relative;
    margin-bottom: 10px;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    width: 4px; height: 4px;
    background: #FFFFFF;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollMove 2s infinite;
}

.scroll-indicator span {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.2em;
}

@keyframes scrollMove {
    0% { opacity: 1; top: 5px; }
    100% { opacity: 0; top: 20px; }
}

/* ==========================================================================
   Quick Menu Section (6-Column Grid Reproduction)
   ========================================================================== */
#quick-menu {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

#quick-menu .quick-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

#quick-menu .quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-align: center;
}

#quick-menu .icon-box {
    width: 100px;
    height: 100px;
    background-color: #FCFCFC;
    border: 1px solid #F0F0F0;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #333333;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#quick-menu .q-icon {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
}

#quick-menu .txt {
    font-size: 16px;
    font-weight: 600;
    color: #444444;
    letter-spacing: -0.03em;
    margin: 0;
    transition: 0.3s;
}

@media (min-width: 1025px) {
    #quick-menu .quick-item:hover .icon-box {
        background-color: #111111;
        border-color: #111111;
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        color: #FFFFFF;
    }
    #quick-menu .quick-item:hover .txt {
        color: #111111;
        font-weight: 700;
    }
    #quick-menu .quick-item:hover .q-icon {
        transform: scale(1.1);
    }
}

/* ==========================================================================
   Space Archive / Construction Cases Section
   ========================================================================== */
.home-cases-premium {
    padding: 120px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.home-cases-premium .case-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.home-cases-premium .cases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.home-cases-premium .eyebrow {
    display: block;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-light);
    margin-bottom: 12px;
}

.home-cases-premium .main-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.home-cases-premium .controls-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.home-cases-premium .btn-view-all {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 5px;
    transition: 0.3s;
}

.home-cases-premium .swiper-nav {
    display: flex;
    gap: 8px;
}

.home-cases-premium .nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #EEEEEE;
    background: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.home-cases-premium .nav-btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    border-top: 2px solid #111111;
    border-right: 2px solid #111111;
}

.home-cases-premium .nav-btn.prev::after { transform: translate(-30%, -50%) rotate(-135deg); }
.home-cases-premium .nav-btn.next::after { transform: translate(-70%, -50%) rotate(45deg); }
.home-cases-premium .nav-btn:hover { background: #111111; border-color: #111111; }
.home-cases-premium .nav-btn:hover::after { border-color: #FFFFFF; }

.home-cases-premium .swiper-slide {
    width: 400px;
    height: auto;
}

.home-cases-premium .case-card {
    cursor: pointer;
    display: block;
}

.home-cases-premium .img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.25;
    border-radius: 4px;
    overflow: hidden;
    background: #F5F5F5;
    margin-bottom: 25px;
}

.home-cases-premium .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.home-cases-premium .case-card:hover .img-wrap img {
    transform: scale(1.08);
}

.home-cases-premium .info-wrap .index {
    font-size: 11px;
    font-weight: 800;
    color: #DDDDDD;
    margin-bottom: 8px;
    display: block;
    transition: 0.3s;
}

.home-cases-premium .info-wrap .subject {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.home-cases-premium .case-card:hover .info-wrap .index {
    color: var(--primary-color);
}

.home-cases-premium .pagination-wrapper {
    margin-top: 60px;
    position: relative;
    height: 2px;
    background: #EEEEEE;
}

.home-cases-premium .swiper-pagination-progressbar-fill {
    background: #111111 !important;
}

/* ==========================================================================
   Eco-Innovation Bento Grid Section
   ========================================================================== */
.npoz-modern-features {
    padding: 140px 0;
    background: #FFFFFF;
}

.npoz-modern-features .header-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
    gap: 30px;
}

.npoz-modern-features .sub-title {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--accent-tan);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.npoz-modern-features .main-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 300;
}

.npoz-modern-features .main-title b {
    font-weight: 700;
}

.npoz-modern-features .header-desc {
    font-size: 17px;
    color: var(--text-gray);
    max-width: 400px;
    line-height: 1.6;
    border-left: 1px solid #DDDDDD;
    padding-left: 25px;
    margin-bottom: 8px;
}

.bento-grid-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

.bento-item.featured { grid-row: span 2; }

.bento-item .card-inner {
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.bento-item .img-box {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #EEEEEE;
}

.bento-item.featured .img-box { flex-grow: 1; min-height: 380px; }
.bento-item:not(.featured) .img-box { height: 240px; }

.bento-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-item .overlay-tag {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.bento-item .content-box { padding: 40px; }
.bento-item.featured .content-box { padding: 50px; }

.bento-item .no {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-tan);
    margin-bottom: 20px;
    display: block;
}

.bento-item .title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.4;
}
.bento-item .title b { font-weight: 700; }

.bento-item .desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    opacity: 0.85;
}

.bento-item .link-arrow {
    margin-top: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.bento-item .link-arrow svg { fill: var(--primary-color); transition: 0.3s; }
.bento-item:hover .card-inner { background: #F0F0ED; transform: translateY(-5px); }
.bento-item:hover .img-box img { transform: scale(1.05); }
.bento-item:hover .link-arrow { color: var(--accent-tan); }
.bento-item:hover .link-arrow svg { transform: translateX(10px); fill: var(--accent-tan); }

/* ==========================================================================
   Product Catalog Section
   ========================================================================== */
.product-catalog-section {
    padding: 100px 0;
    background: #F9F9F8;
}

.section-head-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.sub-tag {
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-tan);
}

.sec-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 8px;
    color: var(--primary-color);
}

.sec-desc {
    color: var(--text-gray);
    margin-top: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.p-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.p-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }

.p-thumb {
    position: relative;
    height: 240px;
}
.p-thumb img { width: 100%; height: 100%; object-fit: cover; }
.p-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--primary-color);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}
.p-tag.bg-amber { background: #D97706; }

.p-body { padding: 24px; }
.p-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.p-sub { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 16px; }
.p-meta { font-size: 0.82rem; color: #777; background: #F8F8F8; padding: 10px; border-radius: 4px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 4px; }

.btn-card-quote {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn-card-quote:hover { background: var(--accent-mint); color: #111111; }

/* ==========================================================================
   Footer Section (npoz.co.kr exact match)
   ========================================================================== */
#new-footer {
    background: #FFFFFF;
    border-top: 1px solid #EEEEEE;
    padding: 80px 0 40px;
    color: #555555;
}

#new-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 40px;
}

.f-npoz {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 10px;
}

.f-sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
}

#new-footer .f-sns { display: flex; gap: 12px; }
#new-footer .sns-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #F5F5F5;
    display: flex; align-items: center; justify-content: center;
    color: #555;
    transition: 0.3s;
}
#new-footer .sns-icon:hover { background: var(--primary-color); color: #FFF; }

#new-footer .nav-list { display: flex; gap: 30px; }
#new-footer .nav-list a { font-size: 15px; color: #666; font-weight: 500; }
#new-footer .nav-list a.bold { color: #111; font-weight: 700; }

#new-footer .footer-middle {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

#new-footer .f-title {
    font-size: 13px; font-weight: 700; color: #111; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 25px;
}

#new-footer .f-info-list { list-style: none; padding: 0; }
#new-footer .f-info-list li { font-size: 13px; line-height: 1.8; color: #888; margin-bottom: 4px; }
#new-footer .f-info-list li span { color: #444; margin-right: 10px; display: inline-block; min-width: 70px; font-weight: 600; }

#new-footer .cs-number { font-size: 32px; font-weight: 800; color: #111; margin-bottom: 10px; }
#new-footer .cs-time { font-size: 14px; color: #666; }
#new-footer .cs-notice { font-size: 13px; color: #AAA; margin-top: 15px; }

#new-footer .quick-links { list-style: none; padding: 0; }
#new-footer .quick-links li { margin-bottom: 12px; }
#new-footer .quick-links a { font-size: 14px; color: #666; display: block; padding: 10px 15px; background: #F8F8F8; border-radius: 8px; transition: 0.3s; }
#new-footer .quick-links a:hover { background: #111; color: #FFF; }

#new-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #F0F0F0;
    font-size: 13px;
    color: #999;
}

.back-top {
    cursor: pointer;
    font-weight: 700;
    color: #111;
}

/* Modal Popup */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.modal-backdrop.active { opacity: 1; visibility: visible; }

.modal-window {
    background: #FFFFFF;
    border-radius: 12px;
    width: 90%;
    max-width: 520px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-head h3 { font-size: 1.2rem; color: var(--primary-color); display: flex; align-items: center; gap: 8px; }
.modal-x { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: #888; }
.f-row { margin-bottom: 16px; }
.f-row label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.f-row input, .f-row select, .f-row textarea { width: 100%; padding: 12px; border-radius: 6px; border: 1px solid #DDD; outline: none; }
.modal-foot { display: flex; justify-content: flex-end; gap: 12px; margin-top: 24px; }
.btn-m-close { padding: 10px 20px; background: #EEE; border-radius: 6px; border: none; cursor: pointer; font-weight: 600; }
.btn-m-submit { padding: 10px 24px; background: var(--primary-color); color: #FFF; border-radius: 6px; border: none; cursor: pointer; font-weight: 700; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .gnb-menu { display: none; }
    .burger-menu-btn { display: flex; }
    #quick-menu .quick-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 10px; }
    .bento-grid-wrapper { grid-template-columns: 1fr; }
    .bento-item.featured { grid-row: auto; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    #new-footer .footer-middle { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; }
    #new-footer .footer-middle { grid-template-columns: 1fr; }
    #quick-menu .quick-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 5px; }
    #quick-menu .icon-box { width: 75px; height: 75px; border-radius: 24px; }
    #quick-menu .q-icon { width: 28px; height: 28px; }
    #quick-menu .txt { font-size: 13px; }
}
