/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #fffdf5;
    color: #2b2b2b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.home-header {
    background: linear-gradient(120deg, #fff7d6, #ffe082);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(247, 181, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 100;
}

.home-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    height: auto;
    width: 110px;
    flex-shrink: 0;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3d2b00;
    background: linear-gradient(90deg, #ffd54f, #ffca28);
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #f5b301;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(197,144,0,0.2);
}

.login-btn:hover {
    background: linear-gradient(90deg, #ffc107, #ffb300);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(197,144,0,0.3);
}

/* ===== HERO ===== */
.hero {
    margin-top: 24px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff2c6 60%, #ffe57a 100%);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #f8de82;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(197,144,0,0.1);
}

.hero-content { flex: 1; }

.hero-kicker {
    margin: 0 0 10px;
    color: #a17300;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero h1 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.25;
    color: #2b1d00;
}

.hero > .hero-content > p {
    margin: 0;
    color: #6f5a16;
    font-size: 15px;
    line-height: 1.6;
}

.hero-contact {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #fff;
    color: #6b4e00;
    border: 1.5px solid #f2cb4d;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(197,144,0,0.1);
}

.hero-contact a:hover {
    background: linear-gradient(90deg, #ffd54f, #ffc107);
    border-color: #efb100;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197,144,0,0.2);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.7);
    border: 1px solid #f4e7bc;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #5a3e00;
    min-width: 180px;
}

.hero-stat i {
    color: #c47a00;
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.hero-stat a {
    color: #5a3e00;
    text-decoration: none;
    font-weight: 600;
}

.hero-stat a:hover {
    color: #a17300;
    text-decoration: underline;
}

/* ===== BRAND SLIDER ===== */
.brand-slider-section {
    margin-top: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f4e7bc;
    box-shadow: 0 4px 16px rgba(197,144,0,0.08);
    padding: 18px 0;
    overflow: hidden;
}

.brand-slider-track-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.brand-slider-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: brandScroll 35s linear infinite;
}

.brand-slider-track:hover {
    animation-play-state: paused;
}

.brand-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 60px;
    padding: 8px 16px;
    filter: grayscale(50%);
    opacity: 0.7;
    transition: filter 0.25s, opacity 0.25s;
}

.brand-slide:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes brandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SEARCH PANEL ===== */
.search-panel {
    background: #fff;
    margin-top: 20px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(197,144,0,0.1);
    border: 1px solid #f8e4a2;
}

.search-panel-title {
    font-size: 14px;
    font-weight: 700;
    color: #a17300;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

#home-search-form {
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 10px;
}

#home-search-form input,
#home-search-form select,
#home-search-form button {
    height: 44px;
    border-radius: 10px;
    border: 1.5px solid #e8d9a0;
    padding: 0 12px;
    font-size: 14px;
    background: #fffefb;
    color: #2b2b2b;
    transition: border-color 0.2s;
    outline: none;
}

#home-search-form input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 3px rgba(255,193,7,0.15);
}

#home-search-form button {
    background: linear-gradient(90deg, #ffd54f, #ffc107);
    color: #3d2b00;
    cursor: pointer;
    border: 1.5px solid #efb100;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

#home-search-form button:hover {
    background: linear-gradient(90deg, #ffc107, #ffb300);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197,144,0,0.25);
}

/* ===== CATALOG HEADER ===== */
.catalog-header {
    margin-top: 28px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.catalog-title {
    font-size: 20px;
    font-weight: 700;
    color: #3d2b00;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-title i { color: #c47a00; }

/* ===== GRID ===== */
.grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* ===== CARD ===== */
.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(214,153,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f4e7bc;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(201,144,0,0.18);
}

.card-img-wrap {
    overflow: hidden;
    background: #fffbf0;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-wrap img {
    transform: scale(1.04);
}

.card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.4;
}

.product-name-link {
    color: #2b2b2b;
    text-decoration: none;
    font-weight: 600;
}

.product-name-link:hover {
    color: #a17300;
}

.meta {
    margin: 0 0 5px;
    font-size: 12px;
    color: #7a6540;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta i {
    color: #c8a84b;
    width: 14px;
    text-align: center;
}

.card-footer {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f4e7bc;
}

.price {
    color: #c47a00;
    font-weight: 700;
    font-size: 16px;
}

.detail-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #ffd54f, #ffc107);
    border: 1px solid #efb100;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #3d2b00;
    transition: all 0.2s ease;
}

.detail-link:hover {
    background: linear-gradient(90deg, #ffc107, #ffb300);
    transform: translateX(2px);
}

/* ===== LOADING ===== */
.loading {
    text-align: center;
    padding: 24px;
    color: #a17300;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.loading-spinner-inner {
    width: 20px;
    height: 20px;
    border: 3px solid #f4e7bc;
    border-top-color: #ffc107;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== LOAD MORE ===== */
.load-more-wrap {
    margin: 20px 0 36px;
    text-align: center;
}

.load-more-btn {
    height: 46px;
    padding: 0 28px;
    border-radius: 12px;
    border: 1.5px solid #efb100;
    background: linear-gradient(90deg, #ffd54f, #ffc107);
    color: #3b2a00;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(197,144,0,0.2);
}

.load-more-btn:hover {
    background: linear-gradient(90deg, #ffc107, #ffb300);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197,144,0,0.3);
}

.load-more-btn:disabled {
    background: #f4e7bc;
    border-color: #e8d9a0;
    color: #a17300;
    cursor: default;
    transform: none;
    box-shadow: none;
}

/* ===== FOOTER ===== */
.home-footer {
    background: linear-gradient(120deg, #fff7d6, #ffe082);
    border-top: 1px solid #f4e7bc;
    padding: 18px 0;
    text-align: center;
    color: #7a6540;
    font-size: 13px;
}

/* ===== PRODUCT DETAIL ===== */
.detail-wrap {
    margin-top: 28px;
    margin-bottom: 40px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #ffd54f, #ffc107);
    color: #3d2b00;
    border: 1.5px solid #efb100;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 24px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(197,144,0,0.2);
}

.back-btn:hover {
    background: linear-gradient(90deg, #ffc107, #ffb300);
    transform: translateX(-3px);
    box-shadow: 0 6px 18px rgba(197,144,0,0.3);
}

.detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    box-shadow: 0 8px 32px rgba(214,153,0,0.12);
    border: 1px solid #f4e1a4;
}

.detail-image-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #fffbf0;
    border: 1px solid #f4e7bc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.detail-image-wrap img {
    width: 100%;
    object-fit: contain;
    max-height: 400px;
}

.detail-info-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-info h1 {
    margin: 0;
    font-size: 26px;
    color: #2b1d00;
    line-height: 1.3;
}

.detail-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(90deg, #ffd54f, #ffc107);
    color: #3d2b00;
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid #efb100;
}

.detail-price-box {
    background: linear-gradient(135deg, #fff9e6, #fff2c6);
    border: 1.5px solid #f2cb4d;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-price-label {
    font-size: 13px;
    color: #a17300;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.detail-price-value {
    font-size: 28px;
    font-weight: 800;
    color: #c47a00;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-row {
    background: #fffbf0;
    border: 1px solid #f3dfa5;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-row span {
    color: #a17300;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-row strong {
    font-size: 14px;
    color: #2b1d00;
}

.stok-var { color: #2e7d32; }
.stok-yox { color: #c62828; }

.alt-codes {
    background: #fffbec;
    border: 1px solid #f3dfa5;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}

.alt-codes h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #a17300;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.alt-codes p {
    margin: 0;
    font-size: 14px;
    color: #5a3e00;
    line-height: 1.6;
}

.detail-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #25d366, #1ebe5d);
    color: #fff;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(37,211,102,0.3);
    width: 100%;
    justify-content: center;
}

.detail-contact-btn:hover {
    background: linear-gradient(90deg, #1ebe5d, #17a84f);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.detail-contact-btn i { font-size: 20px; }

/* ===== LOGIN/REGISTER BACK LINK ===== */
.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #a17300;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.back-to-home:hover { color: #3d2b00; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 24px 20px;
    }

    .hero h1 { font-size: 24px; }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    .hero-stat { min-width: unset; flex: 1; }

    #home-search-form { grid-template-columns: 1fr 1fr; }

    .grid { grid-template-columns: repeat(3, 1fr); }

    .detail-card { grid-template-columns: 1fr; }

    .detail-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    #home-search-form { grid-template-columns: 1fr; }

    .grid { grid-template-columns: repeat(2, 1fr); }

    .detail-grid { grid-template-columns: 1fr; }

    .detail-price-value { font-size: 22px; }
}

/* ===== STOCK NOTICE BANNER ===== */
.stock-notice {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border-left: 5px solid #f0a500;
    border-radius: 10px;
    padding: 16px 22px;
    margin: 14px 0 20px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #7a4f00;
    box-shadow: 0 2px 10px rgba(240,165,0,0.15);
}
.stock-notice i.fas {
    font-size: 1.2rem;
    color: #f0a500;
}
.stock-notice a {
    color: #fff;
    background: #25d366;
    border-radius: 6px;
    padding: 5px 12px;
    text-decoration: none;
    font-size: 0.97rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
}
.stock-notice a:hover {
    background: #1ebe5d;
}
.stock-notice a:last-child {
    background: #0078d4;
}
.stock-notice a:last-child:hover {
    background: #005fa3;
}

/* ── Home header layout ── */
.home-header .container,
.home-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.home-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ── Header message slider ── */
.header-msg-slider {
    flex: 1;
    min-width: 0;
    margin: 0 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(242,203,77,.7);
    border-radius: 10px;
    padding: 0 14px 0 10px;
    height: 38px;
    box-shadow: 0 1px 6px rgba(197,144,0,.1);
    overflow: hidden;
}

/* Bullhorn icon badge */
.hms-icon {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 7px;
    background: linear-gradient(135deg, #ffd54f, #ffc107);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 4px rgba(197,144,0,.3);
}
.hms-icon i { color: #3d2b00; font-size: 11px; }

/* Scrolling track */
.hms-track {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.header-msg-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #5a3e00;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .45s ease, transform .45s ease;
    pointer-events: none;
}
.header-msg-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.header-msg-item.exit {
    opacity: 0;
    transform: translateY(-10px);
}

/* Dot indicators */
.hms-dots {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.hms-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #e8d9a0;
    transition: background .3s, transform .3s;
}
.hms-dot.active {
    background: #c47a00;
    transform: scale(1.3);
}

/* Progress bar at bottom of slider */
.hms-progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(197,144,0,.12);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.hms-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffd54f, #c47a00);
    border-radius: 2px;
    transition: width linear;
}

/* ── Home header nav ── */
.home-header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ── Hero redesign ── */
.hero-sub {
    margin: 0;
    color: #6f5a16;
    font-size: 15px;
    line-height: 1.6;
}
.hero-aside { display: flex; flex-direction: column; gap: 0; }
.hero-badge-list { display: flex; flex-direction: column; gap: 10px; }
.hero-badge {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.75);
    border: 1px solid #f4e7bc;
    border-radius: 14px;
    padding: 12px 16px;
    min-width: 220px;
    transition: box-shadow .2s;
}
.hero-badge:hover { box-shadow: 0 4px 16px rgba(197,144,0,.15); }
.hero-badge-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, #ffd54f, #ffc107);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(197,144,0,.25);
}
.hero-badge-icon i { color: #3d2b00; font-size: 16px; }
.hero-badge-text { display: flex; flex-direction: column; gap: 2px; }
.hero-badge-label { font-size: 10px; color: #a17300; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.hero-badge-text a, .hero-badge-text span { font-size: 13px; font-weight: 700; color: #3d2b00; text-decoration: none; }
.hero-badge-text a:hover { color: #a17300; text-decoration: underline; }

/* ── Card out-of-stock badge ── */
.card-img-wrap { position: relative; }
.card-out-badge {
    position: absolute; top: 8px; right: 8px;
    background: rgba(198,40,40,.88);
    color: #fff; font-size: 10px; font-weight: 700;
    padding: 3px 8px; border-radius: 6px;
    pointer-events: none;
}

/* ── Footer ── */
.home-footer {
    background: linear-gradient(120deg, #fff7d6, #ffe082);
    border-top: 1px solid #f4e7bc;
    padding: 16px 0;
    text-align: center;
}
.home-footer-copy { margin: 0; font-size: 13px; color: #7a6540; }

@media (max-width: 600px) {
    .hero-badge-list { flex-direction: row; flex-wrap: wrap; }
    .hero-badge { min-width: calc(50% - 5px); flex: 1; }
}


/* ===== Product Public Detail — matches home.css golden theme ===== */

.pd-body {
    background: #fffdf5;
    font-family: Inter, Arial, sans-serif;
    color: #2b2b2b;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* ── Header (mirrors .home-header) ── */
.pd-header {
    background: linear-gradient(120deg, #fff7d6, #ffe082);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(247,181,0,.25);
    position: sticky;
    top: 0;
    z-index: 100;
}
.pd-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.pd-brand img { height: auto; width: 110px; object-fit: contain; flex-shrink: 0; }
.pd-header-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.pd-header-phone {
    display: inline-flex; align-items: center; gap: 7px;
    color: #5a3e00; font-size: 13px; font-weight: 600;
    text-decoration: none;
    padding: 8px 14px; border-radius: 10px;
    background: rgba(255,255,255,.55);
    border: 1px solid #f2cb4d;
    transition: all .2s;
}
.pd-header-phone:hover { background: #fff; color: #3d2b00; }
@media (max-width: 700px) { .pd-header-phone { display: none; } }

.pd-wa-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25d366; color: #fff;
    padding: 9px 16px; border-radius: 10px;
    text-decoration: none; font-size: 13px; font-weight: 700;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(37,211,102,.25);
}
.pd-wa-btn:hover { background: #1ebe5d; transform: translateY(-1px); }

.pd-login-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: #3d2b00;
    background: linear-gradient(90deg, #ffd54f, #ffca28);
    padding: 9px 16px; border-radius: 10px;
    text-decoration: none; font-size: 13px; font-weight: 700;
    border: 1px solid #f5b301;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(197,144,0,.2);
}
.pd-login-btn:hover {
    background: linear-gradient(90deg, #ffc107, #ffb300);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(197,144,0,.3);
}

/* ── Main layout ── */
.pd-main { flex: 1; padding: 28px 0 52px; }
.pd-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Breadcrumb ── */
.pd-breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: #a17300;
    margin-bottom: 18px; flex-wrap: wrap;
}
.pd-breadcrumb a { color: #a17300; text-decoration: none; font-weight: 600; }
.pd-breadcrumb a:hover { color: #3d2b00; text-decoration: underline; }
.pd-bc-sep { color: #d4b96a; }
.pd-bc-current { color: #5a3e00; font-weight: 600; }

/* ── Notice banner (mirrors .stock-notice) ── */
.pd-notice {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border-left: 5px solid #f0a500;
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 14px; font-weight: 600; color: #7a4f00;
    box-shadow: 0 2px 10px rgba(240,165,0,.15);
}
.pd-notice i { color: #f0a500; font-size: 16px; }
.pd-notice a {
    color: #fff; background: #25d366;
    border-radius: 6px; padding: 5px 12px;
    text-decoration: none; font-size: 13px;
    display: inline-flex; align-items: center; gap: 5px;
    transition: background .2s;
}
.pd-notice a:hover { background: #1ebe5d; }
.pd-notice a:last-child { background: #0078d4; }
.pd-notice a:last-child:hover { background: #005fa3; }

/* ── Product card ── */
.pd-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(214,153,0,.12);
    border: 1px solid #f4e1a4;
    display: grid;
    grid-template-columns: 400px 1fr;
    overflow: hidden;
    margin-bottom: 32px;
}

/* Image column */
.pd-image-col {
    background: #fffbf0;
    padding: 32px;
    display: flex; flex-direction: column; align-items: center;
    border-right: 1px solid #f4e7bc;
}
.pd-image-wrap { position: relative; width: 100%; max-width: 320px; }
.pd-main-img {
    width: 100%; aspect-ratio: 1; object-fit: contain;
    border-radius: 14px; cursor: zoom-in;
    border: 1px solid #f4e7bc;
    transition: transform .3s;
    background: #fff;
}
.pd-main-img:hover { transform: scale(1.04); }
.pd-new-ribbon {
    position: absolute; top: 12px; left: 12px;
    background: linear-gradient(90deg, #ffd54f, #ffc107);
    color: #3d2b00; font-size: 11px; font-weight: 700;
    padding: 4px 12px; border-radius: 20px;
    display: flex; align-items: center; gap: 4px;
    border: 1px solid #efb100;
    box-shadow: 0 2px 8px rgba(197,144,0,.3);
}
.pd-image-zoom-hint {
    font-size: 11px; color: #c8a84b;
    margin-top: 12px;
    display: flex; align-items: center; gap: 5px;
}

/* Info column */
.pd-info-col {
    padding: 32px 36px;
    display: flex; flex-direction: column; gap: 18px;
}
.pd-info-top { display: flex; flex-direction: column; gap: 8px; }
.pd-title { font-size: 24px; font-weight: 800; color: #2b1d00; line-height: 1.3; margin: 0; }

/* Rating summary */
.pd-rating-summary { display: flex; align-items: center; gap: 8px; }
.pd-stars { color: #f59e0b; font-size: 15px; display: flex; gap: 2px; }
.pd-rating-val { font-size: 15px; font-weight: 700; color: #5a3e00; }
.pd-rating-count { font-size: 13px; color: #a17300; }

/* Price box */
.pd-price-box {
    background: linear-gradient(135deg, #fff9e6, #fff2c6);
    border: 1.5px solid #f2cb4d;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.pd-price-label { font-size: 12px; color: #a17300; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.pd-price-val { font-size: 30px; font-weight: 800; color: #c47a00; }

/* Specs table */
.pd-specs {
    border: 1px solid #f3dfa5;
    border-radius: 14px;
    overflow: hidden;
}
.pd-spec-row {
    display: flex; align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid #f3dfa5;
    gap: 12px;
}
.pd-spec-row:last-child { border-bottom: none; }
.pd-spec-row:nth-child(even) { background: #fffbf0; }
.pd-spec-label {
    font-size: 12px; color: #a17300; font-weight: 600;
    min-width: 130px; text-transform: uppercase; letter-spacing: .3px;
    display: flex; align-items: center; gap: 7px;
}
.pd-spec-label i { color: #c47a00; width: 14px; text-align: center; }
.pd-spec-val { font-size: 14px; font-weight: 600; color: #2b1d00; }
.pd-code {
    font-family: monospace; font-size: 14px;
    background: #fff9e6; padding: 2px 8px;
    border-radius: 6px; color: #c47a00;
    border: 1px solid #f2cb4d;
}
.pd-stock-in { color: #2e7d32; }
.pd-stock-out { color: #c62828; }

/* Alt codes */
.pd-alt-codes {
    background: #fffbec; border-radius: 12px;
    padding: 14px 16px; border: 1px solid #f3dfa5;
}
.pd-alt-codes-title {
    font-size: 11px; font-weight: 700; color: #a17300;
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 6px;
}
.pd-alt-codes-val { font-size: 13px; color: #5a3e00; font-family: monospace; line-height: 1.7; }

/* Description */
.pd-desc {
    background: #fffbec; border-radius: 12px;
    padding: 14px 16px; border: 1px solid #f3dfa5;
}
.pd-desc-title {
    font-size: 11px; font-weight: 700; color: #a17300;
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 6px;
}
.pd-desc p { font-size: 13px; color: #5a3e00; line-height: 1.7; margin: 0; }

/* CTA buttons */
.pd-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.pd-cta-wa {
    background: linear-gradient(90deg, #25d366, #1ebe5d);
    color: #fff; padding: 13px 24px; border-radius: 12px;
    text-decoration: none; font-size: 14px; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    transition: all .2s; flex: 1; justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.pd-cta-wa:hover { background: linear-gradient(90deg, #1ebe5d, #17a84f); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.4); }
.pd-cta-call {
    background: linear-gradient(90deg, #ffd54f, #ffc107);
    color: #3d2b00; padding: 13px 24px; border-radius: 12px;
    text-decoration: none; font-size: 14px; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    transition: all .2s; flex: 1; justify-content: center;
    border: 1.5px solid #efb100;
    box-shadow: 0 4px 14px rgba(197,144,0,.25);
}
.pd-cta-call:hover { background: linear-gradient(90deg, #ffc107, #ffb300); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(197,144,0,.35); }

/* ── Reviews section ── */
.pd-reviews-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(214,153,0,.1);
    border: 1px solid #f4e1a4;
    padding: 32px;
    margin-bottom: 32px;
}
.pd-reviews-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; flex-wrap: wrap; gap: 16px;
    border-bottom: 2px solid #f4e7bc; padding-bottom: 20px;
}
.pd-reviews-title {
    font-size: 18px; font-weight: 800; color: #2b1d00;
    display: flex; align-items: center; gap: 10px; margin: 0;
}
.pd-reviews-title i { color: #c47a00; }

.pd-reviews-overall {
    display: flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, #fff9e6, #fff2c6);
    padding: 12px 20px; border-radius: 12px;
    border: 1px solid #f2cb4d;
}
.pd-overall-score { font-size: 36px; font-weight: 800; color: #c47a00; line-height: 1; }
.pd-overall-stars { color: #f59e0b; font-size: 18px; display: flex; gap: 3px; }
.pd-overall-count { font-size: 13px; color: #a17300; font-weight: 600; }

.pd-reviews-list { display: flex; flex-direction: column; gap: 14px; }
.pd-reviews-loading { text-align: center; padding: 32px; color: #a17300; font-size: 14px; }

.pd-review-card {
    background: #fffbf0;
    border-radius: 14px; padding: 18px 20px;
    border: 1px solid #f3dfa5;
    transition: box-shadow .2s, transform .2s;
}
.pd-review-card:hover { box-shadow: 0 6px 20px rgba(214,153,0,.15); transform: translateY(-2px); }
.pd-review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.pd-review-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, #ffd54f, #ffc107);
    color: #3d2b00; font-size: 16px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; border: 2px solid #efb100;
}
.pd-review-meta { flex: 1; }
.pd-review-user { font-size: 14px; font-weight: 700; color: #2b1d00; }
.pd-review-date { font-size: 12px; color: #a17300; margin-top: 2px; }
.pd-review-stars { color: #f59e0b; font-size: 14px; display: flex; gap: 2px; margin-left: auto; }
.pd-review-text {
    font-size: 14px; color: #5a3e00; line-height: 1.7;
    padding-top: 10px; border-top: 1px solid #f3dfa5; margin-top: 4px;
}

.pd-reviews-empty {
    display: none; flex-direction: column; align-items: center;
    padding: 48px; color: #c8a84b; gap: 12px;
}
.pd-reviews-empty i { font-size: 40px; }
.pd-reviews-empty p { font-size: 14px; color: #a17300; font-weight: 600; }

/* ── Image zoom overlay (FLIP animation) ── */
.pd-zoom-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}
.pd-zoom-overlay.pd-zoom-visible {
    display: block;
    pointer-events: auto;
}

/* Dark backdrop */
.pd-zoom-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 18, 0, 0.92);
    opacity: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Toolbar — top bar */
.pd-zoom-toolbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(30,18,0,.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}
.pd-zoom-overlay.pd-zoom-visible .pd-zoom-toolbar { opacity: 1; }

.pd-zoom-label {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 600;
    max-width: calc(100% - 60px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pd-zoom-close {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.pd-zoom-close:hover {
    background: rgba(255,255,255,.25);
    transform: rotate(90deg);
}

/* Stage — click-to-close area */
.pd-zoom-stage {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* The animated image — positioned absolutely, moves via JS */
.pd-zoom-img {
    position: fixed;
    object-fit: contain;
    cursor: zoom-out;
    will-change: width, height, left, top, border-radius;
    user-select: none;
    -webkit-user-drag: none;
}

/* Bottom hint bar */
.pd-zoom-hint-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(to top, rgba(30,18,0,.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease 0.25s;
}
.pd-zoom-overlay.pd-zoom-visible .pd-zoom-hint-bar { opacity: 1; }
.pd-zoom-hint-bar span {
    color: rgba(255,255,255,.55);
    font-size: 12px;
    display: flex; align-items: center; gap: 6px;
}

/* Zoom icon overlay on thumbnail */
.pd-zoom-icon {
    position: absolute;
    bottom: 10px; right: 10px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    color: #c47a00;
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.pd-image-wrap:hover .pd-zoom-icon { opacity: 1; }

/* ── Footer ── */
.pd-footer {
    background: linear-gradient(120deg, #fff7d6, #ffe082);
    border-top: 1px solid #f4e7bc;
    padding: 16px 0;
    text-align: center;
}
.pd-footer .pd-container { padding: 0 20px; }
.pd-footer-copy { margin: 0; font-size: 13px; color: #7a6540; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .pd-card { grid-template-columns: 1fr; }
    .pd-image-col { border-right: none; border-bottom: 1px solid #f4e7bc; padding: 24px; }
    .pd-info-col { padding: 24px; }
}
@media (max-width: 600px) {
    .pd-header-inner { padding: 10px 16px; }
    .pd-brand img { width: 90px; }
    .pd-title { font-size: 20px; }
    .pd-price-val { font-size: 24px; }
    .pd-reviews-section { padding: 20px 16px; }
    .pd-reviews-overall { flex-wrap: wrap; }
    .pd-cta-row { flex-direction: column; }
}

@media (max-width: 560px) {
    .header-msg-slider { display: none; }
}

/* ===== Related Products Slider (product detail page) ===== */
.pd-related-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(214,153,0,.1);
    border: 1px solid #f4e1a4;
    padding: 24px 28px;
    margin-bottom: 28px;
}

.pd-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f4e7bc;
}

.pd-related-title {
    font-size: 17px;
    font-weight: 800;
    color: #2b1d00;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pd-related-title i { color: #c47a00; }

.pd-related-nav {
    display: flex;
    gap: 8px;
}
.pd-related-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1.5px solid #f2cb4d;
    background: linear-gradient(135deg, #fff9e6, #fff2c6);
    color: #c47a00;
    font-size: 13px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
    box-shadow: 0 1px 4px rgba(197,144,0,.15);
}
.pd-related-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ffd54f, #ffc107);
    transform: scale(1.08);
    box-shadow: 0 3px 10px rgba(197,144,0,.3);
}
.pd-related-btn:disabled {
    opacity: .35;
    cursor: default;
    transform: none;
}

/* Scrollable track */
.pd-related-track-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.pd-related-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    padding: 4px 2px 8px;
}
.pd-related-track::-webkit-scrollbar { display: none; }
.pd-related-track:active { cursor: grabbing; }

/* Individual card — same proportions as .card */
.pd-related-card {
    flex-shrink: 0;
    width: 200px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f4e7bc;
    box-shadow: 0 3px 12px rgba(214,153,0,.09);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform .2s, box-shadow .2s;
}
.pd-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(201,144,0,.18);
}

.pd-related-img-wrap {
    position: relative;
    height: 160px;
    background: #fffbf0;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.pd-related-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.pd-related-card:hover .pd-related-img-wrap img { transform: scale(1.05); }

.pd-related-body {
    padding: 10px 12px;
    display: flex; flex-direction: column; flex: 1;
}
.pd-related-name {
    font-size: 13px; font-weight: 700;
    color: #2b1d00; line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pd-related-meta {
    font-size: 11px; color: #7a6540;
    display: flex; align-items: center; gap: 5px;
    margin-bottom: 3px;
}
.pd-related-meta i { color: #c8a84b; width: 12px; text-align: center; }

.pd-related-footer {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #f4e7bc;
    display: flex; align-items: center; justify-content: space-between;
}

@media (max-width: 600px) {
    .pd-related-section { padding: 18px 16px; }
    .pd-related-card { width: 170px; }
    .pd-related-img-wrap { height: 130px; }
}


/* ===== BRANCHES SECTION ===== */
.branches-section {
    margin: 40px 0 32px;
}

.branches-header {
    text-align: center;
    margin-bottom: 28px;
}

.branches-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #3d2b00;
    margin: 0 0 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.branches-title-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ffd54f, #ffc107);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3d2b00;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(197,144,0,0.25);
}

.branches-subtitle {
    font-size: 14px;
    color: #a17300;
    margin: 4px 0 0;
    font-weight: 500;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.branch-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(214,153,0,0.1);
    display: flex;
    flex-direction: column;
    border: 1px solid #f4e7bc;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}

.branch-card:hover {
    box-shadow: 0 8px 28px rgba(197,144,0,0.2);
    transform: translateY(-3px);
}

.branch-card-top {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe082 100%);
    padding: 18px 20px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f4e7bc;
}

.branch-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ffd54f, #ffc107);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #3d2b00;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(197,144,0,0.3);
}

.branch-name {
    font-size: 15px;
    font-weight: 700;
    color: #3d2b00;
    margin: 0;
    line-height: 1.3;
}

.branch-body {
    padding: 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fffdf5;
}

.branch-info-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #5a3e00;
    line-height: 1.45;
}

.branch-info-icon {
    color: #c47a00;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.branch-address-link {
    color: #a17300;
    text-decoration: none;
    font-weight: 500;
}
.branch-address-link:hover {
    color: #3d2b00;
    text-decoration: underline;
}

.branch-phones {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.branch-phone {
    font-size: 13px;
    color: #3d2b00;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    transition: color .15s;
}

.branch-phone i {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #ffd54f, #ffc107);
    color: #3d2b00;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(197,144,0,0.25);
}

.branch-phone:hover { color: #a17300; }

.branch-map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #3d2b00;
    background: linear-gradient(90deg, #ffd54f, #ffc107);
    padding: 11px 16px;
    text-decoration: none;
    transition: opacity .15s, box-shadow .15s;
    border-top: 1px solid #f4e7bc;
}

.branch-map-btn:hover {
    opacity: .9;
    box-shadow: 0 -2px 8px rgba(197,144,0,0.2) inset;
}

@media (max-width: 600px) {
    .branches-grid { grid-template-columns: 1fr; }
    .branches-title { font-size: 1.25rem; }
}
