/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    background: #e0dfd9;
    color: #2c2c2a;
    min-height: 100vh;
}

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

/* ===== HEADER ===== */
.site-header {
    background: #ffffff;
}

.header-logo {
    display: flex;
    justify-content: center;
    padding: 4px 24px;
    background: #f1efe8;
}

.logo-img {
    height: 320px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

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

.collection-stats {
    font-size: 14px;
    color: #4a5c2a;
}

.collection-stats strong {
    color: #2c2c2a;
    font-weight: 500;
}

.header-stats-bar {
    padding: 6px 24px;
    border-bottom: 0.5px solid #e8e6e0;
    background: #f1efe8;
    text-align: center;
}

.lang-switcher {
    display: flex;
    gap: 2px;
}

.lang-btn {
    font-size: 16px;
    font-weight: 500;
    padding: 5px 12px;
    border: 1px solid #e8e6e0;
    background: transparent;
    color: #888780;
    cursor: pointer;
    border-radius: 4px;
    font-family: inherit;
}

.lang-btn.active {
    background: #4a5c2a;
    color: #e0ecca;
    border-color: #4a5c2a;
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    align-items: stretch;
    padding: 0 24px;
    overflow-x: auto;
    overflow-y: clip;
    scrollbar-width: none;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-top: 0.5px solid #e8e6e0;
    border-bottom: 3px solid #4a5c2a;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.main-nav .lang-switcher {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 8px 0;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #888780;
    padding: 12px 16px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: inherit;
}

.nav-link:hover {
    color: #2c2c2a;
}

.nav-link.active {
    color: #4a5c2a;
    border-bottom-color: #4a5c2a;
    font-weight: 500;
}

.nav-link.primary {
    color: #2c2c2a;
    font-weight: 500;
}

.nav-sep {
    width: 1px;
    background: #e8e6e0;
    margin: 8px 4px;
    flex-shrink: 0;
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
    display: flex;
    align-items: stretch;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    background: #ffffff;
    border: 1px solid #e8e6e0;
    border-radius: 8px;
    min-width: 180px;
    z-index: 200;
    padding: 4px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    font-size: 13px;
    color: #888780;
    padding: 8px 16px;
}

.dropdown-menu a:hover {
    background: #f5f5f3;
    color: #2c2c2a;
}

@media (hover: hover) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown:hover .dropdown-menu {
        top: auto;
        left: auto;
    }
}

/* ===== TOOLBAR ===== */
.toolbar {
    background: #ffffff;
    border-bottom: 1px solid #e8e6e0;
    padding: 16px 24px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 43px;
    z-index: 99;
}

.search-wrap {
    position: relative;
}

.search-wrap svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888780;
}

.search-input {
    width: 100%;
    padding: 8px 12px 8px 34px;
    border: 1px solid #e8e6e0;
    border-radius: 8px;
    font-size: 13px;
    background: #f5f5f3;
    color: #2c2c2a;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: #3B6D11;
}

.filters-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== PILL FILTERS ===== */
.pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    border: 1px solid #d3d1c7;
    border-radius: 40px;
    background: #ffffff;
    font-size: 12px;
    color: #2c2c2a;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}

.pill svg {
    width: 12px;
    height: 12px;
    color: #888780;
}

.pill.active {
    border-color: #854F0B;
    background: #FAEEDA;
    color: #633806;
}

.pill.active svg {
    color: #854F0B;
}

.pill-sort {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    border: 1px solid #d3d1c7;
    border-radius: 40px;
    background: #f5f5f3;
    font-size: 12px;
    color: #2c2c2a;
    cursor: pointer;
    white-space: nowrap;
    margin-left: auto;
    font-family: inherit;
}

.pill-sort svg {
    width: 12px;
    height: 12px;
    color: #888780;
}

.pill-dropdown {
    position: relative;
    display: inline-block;
}

.pill-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #ffffff;
    border: 1px solid #e8e6e0;
    border-radius: 8px;
    min-width: 160px;
    z-index: 200;
    padding: 4px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pill-dropdown.open .pill-dropdown-menu {
    display: block;
}

.pill-dropdown-menu a {
    display: block;
    font-size: 12px;
    color: #888780;
    padding: 7px 14px;
    cursor: pointer;
}

.pill-dropdown-menu a:hover {
    background: #f5f5f3;
    color: #2c2c2a;
}

.pill-dropdown-menu a.chosen {
    color: #3B6D11;
    font-weight: 500;
}

.sort-dropdown {
    position: relative;
    display: inline-block;
    margin-left: auto;
}

.sort-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e8e6e0;
    border-radius: 8px;
    min-width: 180px;
    z-index: 200;
    padding: 4px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sort-dropdown.open .sort-dropdown-menu {
    display: block;
}

.sort-dropdown-menu a {
    display: block;
    font-size: 12px;
    color: #888780;
    padding: 7px 14px;
    cursor: pointer;
}

.sort-dropdown-menu a:hover {
    background: #f5f5f3;
    color: #2c2c2a;
}

.sort-dropdown-menu a.chosen {
    color: #3B6D11;
    font-weight: 500;
}

.results-count {
    font-size: 14px;
    color: #888780;
}

.results-count strong {
    color: #2c2c2a;
    font-weight: 500;
}

/* ===== COASTER GRID ===== */
.grid-wrap {
    padding: 20px 24px;
}

.coaster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.coaster-card {
    background: #ffffff;
    border: 1px solid #e8e6e0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 255px;
}

.coaster-card:hover {
    border-color: #b4b2a9;
    transform: translateY(-2px);
}

.card-img-wrap {
    width: 75%;
    height: 100%;
    flex-shrink: 0;
    background: #f1efe8;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #f1efe8;
    display: block;
}

.card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b4b2a9;
}

.card-side-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(44,44,42,0.72);
    color: #f1efe8;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 20px;
}

.card-special-note-text {
    font-size: 14px;
    color: #888780;
    font-style: italic;
    margin-top: 2px;
}

.card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    align-self: stretch;
    gap: 6px;
    position: relative;
}

.card-name {
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2a;
    margin-bottom: 2px;
    line-height: 1.3;
    word-break: break-word;
}

.card-brewery {
    font-size: 13px;
    color: #888780;
    margin-bottom: 6px;
}

.card-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.tag {
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 20px;
    border: 1px solid #e8e6e0;
    background: #f5f5f3;
    color: #888780;
}

.tag-sided {
    background: #f1efe8;
    color: #5f5e5a;
    border-color: #d3d1c7;
}

.tag-country {
    background: #dde8cc;
    color: #4a5c2a;
    border-color: #b8cfa0;
}

.tag-year {
    background: #f1efe8;
    color: #5f5e5a;
    border-color: #d3d1c7;
}

/* ===== LOADING & EMPTY STATES ===== */
.state-loading,
.state-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888780;
    font-size: 14px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 24px 32px;
}

.page-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e8e6e0;
    border-radius: 8px;
    background: #ffffff;
    font-size: 12px;
    color: #2c2c2a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.page-btn:hover {
    border-color: #b4b2a9;
}

.page-btn.active {
    background: #4a5c2a;
    color: #e0ecca;
    border-color: #4a5c2a;
}

.page-btn.nav {
    color: #888780;
}

.page-dots {
    font-size: 12px;
    color: #888780;
}

/* ===== DETAIL MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 300;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #ffffff;
    border-radius: 12px;
    width: 90vw;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-img {
    width: 100%;
    max-height: 65vh;
    background: #f1efe8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-img img {
    max-width: 100%;
    max-height: 65vh;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #f1efe8;
    display: block;
}

.modal-body {
    padding: 20px;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4px;
}

.modal-name {
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2a;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #888780;
    font-size: 20px;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.modal-brewery {
    font-size: 13px;
    color: #888780;
    margin-bottom: 16px;
}

.modal-special {
    background: #dde8cc;
    border: 1px solid #b8cfa0;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #4a5c2a;
    display: flex;
    gap: 8px;
    align-items: center;
}

.modal-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.modal-field label {
    font-size: 10px;
    color: #b4b2a9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 2px;
}

.modal-field span {
    font-size: 13px;
    color: #2c2c2a;
}

.modal-notes {
    font-size: 13px;
    color: #888780;
    border-top: 1px solid #e8e6e0;
    padding-top: 12px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #4a5c2a;
    color: #c0dd97;
    font-size: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer a {
    color: #c0dd97;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-barley {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 20px;
}

.barley-svg {
    width: 100%;
    max-width: 300px;
    height: 60px;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 500;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
}

.modal-img {
    cursor: default;
}

/* ===== FEATURED BREWERIES BAR ===== */
.featured-section {
    background: #ffffff;
    border-bottom: 1px solid #e8e6e0;
    padding: 14px 24px 4px;
}

.featured-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888780;
    margin-bottom: 8px;
    padding-left: 2px;
}

.featured-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.featured-bar::-webkit-scrollbar {
    display: none;
}

.featured-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1.5px solid #e8e6e0;
    border-left: 3px solid #e8e6e0;
    background: #f1efe8;
    color: #2c2c2a;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
    text-align: left;
    min-width: 120px;
}

.featured-pill:hover {
    border-color: #4a5c2a;
    border-left-color: #4a5c2a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.featured-pill.active {
    border-color: #4a5c2a;
    border-left-color: #4a5c2a;
    background: #eef3e6;
}

.featured-pill-name {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #5f5e5a;
}

.featured-pill-star {
    color: #c9a84c;
    font-size: 0.85rem;
}

.featured-pill-count {
    font-size: 0.78rem;
    font-weight: 400;
    color: #888780;
}

.featured-pill.active .featured-pill-name {
    color: #4a5c2a;
}

/* ===== EXCHANGE INDICATOR ===== */
.exchange-indicator {
    position: absolute;
    top: 16px;
    left: 18px;
}

.exchange-bar {
    height: 3px;
    background: #c9a84c;
    width: 100%;
    margin-bottom: 4px;
    border-radius: 0;
}

.exchange-label {
    font-size: 12px;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ===== BREWERY FILTER ===== */
.pill-dropdown-menu--brewery {
    width: 260px;
    max-height: 320px;
    display: none;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.pill-dropdown.open .pill-dropdown-menu--brewery {
    display: flex;
}

.brewery-search-wrap {
    padding: 8px;
    border-bottom: 1px solid #e8e6e0;
    flex-shrink: 0;
}

.brewery-search-input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #e8e6e0;
    border-radius: 6px;
    font-size: 12px;
    background: #f5f5f3;
    color: #2c2c2a;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}

.brewery-search-input:focus {
    border-color: #3B6D11;
}

.brewery-list {
    overflow-y: auto;
    flex: 1;
    padding: 4px 0;
}

.brewery-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 14px;
    font-size: 12px;
    color: #888780;
    cursor: pointer;
}

.brewery-list a:hover {
    background: #f5f5f3;
    color: #2c2c2a;
}

.brewery-list a.chosen {
    color: #3B6D11;
    font-weight: 500;
}

.brewery-list-name {
    flex: 1;
}

.brewery-list-count {
    font-size: 11px;
    color: #b4b2a9;
    margin-left: 8px;
    flex-shrink: 0;
}

.brewery-list-empty {
    padding: 12px 14px;
    font-size: 12px;
    color: #b4b2a9;
}

/* ===== COUNTRIES PAGE ===== */
.countries-wrap {
    padding: 32px 24px;
}

.countries-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.countries-title {
    font-size: 22px;
    font-weight: 500;
    color: #2c2c2a;
    margin: 0;
}

.countries-subtitle {
    font-size: 14px;
    color: #5f5e5a;
    margin-top: 4px;
    margin-bottom: 24px;
}

.sort-btns {
    display: flex;
    border: 1px solid #d3d1c7;
    border-radius: 8px;
    overflow: hidden;
}

.sort-btn {
    padding: 7px 16px;
    font-size: 13px;
    border: none;
    border-right: 1px solid #d3d1c7;
    background: #ffffff;
    color: #888780;
    cursor: pointer;
    font-family: inherit;
}

.sort-btn:last-child {
    border-right: none;
}

.sort-btn.active {
    background: #4a5c2a;
    color: #ffffff;
    font-weight: 500;
}

.sort-btn:hover:not(.active) {
    background: #f5f5f3;
    color: #2c2c2a;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.country-card {
    background: #ffffff;
    border: 1px solid #e8e6e0;
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
    text-decoration: none;
}

.country-card:hover {
    border-color: #4a5c2a;
    transform: translateY(-2px);
}

.country-flag {
    font-size: 40px;
    line-height: 1;
}

.country-name {
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2a;
    text-align: center;
}

.country-count {
    font-size: 12px;
    color: #888780;
}

.country-bar {
    height: 3px;
    background: #e8e6e0;
    border-radius: 2px;
    width: 100%;
    overflow: hidden;
}

.country-bar-fill {
    height: 100%;
    background: #4a5c2a;
    border-radius: 2px;
}

.countries-wrap {
    padding: 32px 24px;
    min-height: calc(100vh - 400px);
}

@media (max-width: 600px) {
    .countries-wrap {
        padding: 20px 16px;
    }

    .countries-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ===== SPECIAL COLLECTIONS CARDS ===== */
.collection-card {
    background: #ffffff;
    border: 1px solid #e8e6e0;
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
    text-decoration: none;
    min-height: 120px;
}

.collection-card:hover {
    border-color: #4a5c2a;
    transform: translateY(-2px);
}

.collection-card-header {
    padding-bottom: 10px;
    border-bottom: 2px solid #4a5c2a;
}

.collection-card-name {
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2a;
}

.collection-card-desc {
    font-size: 14px;
    color: #5f5e5a;
    line-height: 1.5;
}

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

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .coaster-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-img {
        height: auto;
        width: 100%;
    }

    .card-img-wrap {
        width: 55%;
    }

    .card-body {
        padding: 14px 16px;
    }

    .card-name {
        font-size: 14px;
    }

    .card-brewery {
        font-size: 12px;
    }

    .toolbar {
        top: 50px;
    }
}

/* Phone */
@media (max-width: 600px) {
    .logo-img {
        width: 100%;
        height: auto;
    }

    .header-logo {
        padding: 4px 8px;
    }

    .header-stats-bar {
        font-size: 10px;
        padding: 4px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-nav {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }

    .nav-link {
        font-size: 15px;
        font-weight: 500;
        padding: 14px 10px;
    }

    .lang-btn {
    font-size: 15px;
    padding: 6px 12px;
    }

    .toolbar {
        padding: 10px 16px;
        top: 38px;
        position: static;
    }

    .grid-wrap {
        padding: 12px 16px;
    }

    .coaster-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .coaster-card {
        height: auto;
        flex-direction: column;
    }

    .card-img-wrap {
        width: 100%;
        height: 200px;
    }

    .card-img-wrap img {
        max-height: 200px;
    }

    .card-body {
        padding: 12px 14px;
        width: 100%;
    }

    .modal-fields {
        grid-template-columns: 1fr;
    }

    .modal-img {
        max-height: 40vh;
    }

    .modal-img img {
        max-height: 40vh;
    }

    .modal {
        width: 100vw;
        max-width: 100vw;
        max-height: 95vh;
        border-radius: 0;
    }

    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .collection-stats {
        font-size: 13px;
    }

    .sort-dropdown {
        margin-left: 0;
    }

    .toolbar {
        padding: 10px 16px;
        top: 48px;
    }

    .exchange-indicator {
        position: static;
        margin-bottom: 4px;
    }

    .site-footer {
        flex-direction: column-reverse;
        align-items: center;
        gap: 8px;
        padding: 16px;
        text-align: center;
    }

    .footer-barley {
        padding: 0;
    }

    .barley-svg {
        max-width: 180px;
        height: 40px;
    }

}

#pdMaterial,
#pdDecade {
    display: none;
}