@font-face {
    font-family: 'Wotfard';
    src: url('../fonts/wotfard-light-webfont.e517b9272c21.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wotfard';
    src: url('../fonts/wotfard-regular-webfont.ef53e0549149.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wotfard';
    src: url('../fonts/wotfard-semibold-webfont.2139309bf201.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wotfard';
    src: url('../fonts/wotfard-bold-webfont.359652eb8a00.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'vinyl-icons';
    src: url('../fonts/icon.3f84e0c96a34.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

:root {
    --color-dark-bg: #2a2a2a;
    --color-light-bg: #fcfcf7;
    --color-text-dark: #cfcfcb;
    --color-text-muted: #6a6a64;
    --color-grey-bg: #e6e6e6;
    --color-gold: #eace85;
    --color-text-body: #333333;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-border: #d4d4d4;
    --font-primary: 'Wotfard', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --nav-height: 44px;
    --logo-height: 50px;
    --player-height: 80px;
    --sidebar-width: 14rem;
    --z-sidebar: 1000;
    --z-overlay: 999;
    --z-player: 998;
    --z-nav: 997;
    --transition-speed: 0.3s;
}

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

html {
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-body);
    background-color: var(--color-light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.player-active {
    padding-bottom: var(--player-height);
}

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

a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

#logo-bar {
    background-color: var(--color-dark-bg);
    height: var(--logo-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: var(--z-nav);
}

#logo-bar .logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

#logo-bar .site-title {
    color: var(--color-text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

#logo-bar .custom-logo {
    max-height: 36px;
    width: auto;
}

#main-nav {
    background-color: var(--color-dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    height: var(--nav-height);
    position: sticky;
    top: var(--logo-height);
    z-index: var(--z-nav);
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    padding: 0.5rem 0.75rem;
    transition: color var(--transition-speed);
    position: relative;
}

.nav-btn:hover {
    color: var(--color-gold);
}

.nav-search {
    flex: 1;
    max-width: 300px;
    margin: 0 0.5rem;
}

.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    width: 100%;
}

.search-input {
    background: transparent;
    border: none;
    color: var(--color-text-dark);
    padding: 0.4rem 0.6rem;
    width: 100%;
    outline: none;
    font-size: 0.85rem;
}

.search-input::placeholder {
    color: var(--color-text-muted);
}

.search-btn {
    padding: 0.4rem 0.5rem;
}

.cart-link {
    position: relative;
}

#cart-count {
    font-size: 0.7rem;
    background: var(--color-gold);
    color: var(--color-dark-bg);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 2px;
    right: 2px;
    font-weight: 700;
}

#cart-count:empty {
    display: none;
}

#content-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1rem;
    min-height: 60vh;
    background-color: var(--color-light-bg);
}

.woocommerce-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.woocommerce-products-header__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
}

.product-card:first-child {
    padding-top: 0;
}

.product-card-images {
    flex-shrink: 0;
    display: flex;
    gap: 0.5rem;
}

.product-card-image-link {
    display: block;
    width: 130px;
    height: 130px;
    overflow: hidden;
}

.product-card-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
}

.product-card-placeholder {
    width: 130px;
    height: 130px;
    background: var(--color-grey-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-info {
    flex: 1;
    min-width: 0;
}

.product-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.product-card-label {
    font-weight: 400;
}

.product-card-catalog {
    margin-left: 0.25rem;
}

.product-card-meta > span + span::before {
    content: '|';
    margin-right: 0.5rem;
    color: var(--color-border);
}

.product-card-format {
    background: var(--color-grey-bg);
    padding: 0.1rem 0.5rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-card-format::before {
    content: none;
}

.product-card-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.product-card-title a {
    color: var(--color-text-body);
}

.product-card-title a:hover {
    color: var(--color-gold);
}

.product-card-tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
    font-style: italic;
}

.product-card-description {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card-description p {
    margin: 0;
}

.product-card-tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem 1rem;
    margin-bottom: 0.75rem;
}

.track-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--color-text-body);
    padding: 0.15rem 0;
}

.track-item.playing {
    color: var(--color-gold);
}

.track-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    transition: color var(--transition-speed);
}

.track-play-btn:hover {
    color: var(--color-gold);
}

.track-item.playing .track-play-btn {
    color: var(--color-gold);
}

.track-number {
    color: var(--color-text-muted);
    margin-right: 0.15rem;
}

.track-name {
    white-space: nowrap;
}

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-dark-bg);
    color: var(--color-text-dark);
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background var(--transition-speed), color var(--transition-speed);
    border: none;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.add-to-cart-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.add-to-cart-btn.added {
    background: #3a5a3a;
}

.btn-format {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-price {
    color: var(--color-gold);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
}

.sidebar-open .sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100%;
    background-color: var(--color-dark-bg);
    z-index: var(--z-sidebar);
    transform: translateX(-100%);
    transition: transform var(--transition-speed) ease;
    overflow-y: auto;
    padding: 1.5rem 0;
}

.sidebar-open .sidebar {
    transform: translateX(0);
}

.sidebar-inner {
    padding: 0 1rem;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-heading {
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: default;
}

.sidebar-toggle {
    cursor: pointer;
    position: relative;
    padding-right: 1.5rem;
}

.sidebar-toggle::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-top-color: var(--color-text-dark);
    transition: transform var(--transition-speed);
}

.sidebar-toggle.collapsed::after {
    transform: translateY(-50%) rotate(-90deg);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.sidebar-collapsible {
    overflow: hidden;
    max-height: 1000px;
    transition: max-height var(--transition-speed) ease;
}

.sidebar-collapsible.collapsed {
    max-height: 0;
}

.sidebar-list a {
    display: block;
    color: var(--color-text-dark);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: color var(--transition-speed);
}

.sidebar-list a:hover {
    color: var(--color-gold);
}

.sidebar-list .count {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.sidebar-sublist {
    padding-left: 1rem;
}

.sidebar-sublist a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.single-product-content {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.single-product-gallery {
    flex-shrink: 0;
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.single-product-image {
    width: 100%;
}

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

.single-product-placeholder {
    width: 400px;
    height: 400px;
    background: var(--color-grey-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product-details {
    flex: 1;
    min-width: 0;
}

.single-product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.single-product-meta > span + span::before {
    content: '|';
    margin-right: 0.5rem;
    color: var(--color-border);
}

.product-format-badge {
    background: var(--color-grey-bg);
    padding: 0.15rem 0.6rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-format-badge::before {
    content: none;
}

.single-product-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.single-product-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.single-product-price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-body);
}

.single-add-to-cart {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.single-add-to-cart .quantity {
    width: 60px;
}

.single-add-to-cart .quantity input {
    width: 100%;
    padding: 0.45rem 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    text-align: center;
    font-size: 0.9rem;
}

.add-to-cart-btn-single {
    font-size: 0.9rem;
    padding: 0.55rem 1.5rem;
}

.out-of-stock {
    color: #c33;
    font-weight: 600;
    margin-bottom: 1rem;
}

.single-product-tracks {
    margin-bottom: 1.5rem;
}

.single-product-tracks h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.single-product-description {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-body);
}

.single-product-description p {
    margin-bottom: 0.75rem;
}

.single-product-tags {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.single-product-tags a {
    display: inline-block;
    background: var(--color-grey-bg);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    margin: 0.15rem 0.15rem 0.15rem 0;
    font-size: 0.75rem;
    transition: background var(--transition-speed);
}

.single-product-tags a:hover {
    background: var(--color-gold);
    color: var(--color-dark-bg);
}

.woocommerce-pagination {
    padding: 2rem 0;
    text-align: center;
}

.woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    font-size: 0.85rem;
    color: var(--color-text-body);
    transition: background var(--transition-speed);
}

.woocommerce-pagination a:hover {
    background: var(--color-grey-bg);
    color: var(--color-text-body);
}

.woocommerce-pagination .current {
    background: var(--color-dark-bg);
    color: var(--color-white);
}

.page-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.entry-content {
    font-size: 0.95rem;
    line-height: 1.7;
}

.entry-content p {
    margin-bottom: 1rem;
}

.error-404 {
    text-align: center;
    padding: 4rem 1rem;
}

.error-404 h1 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-grey-bg);
    margin-bottom: 0.5rem;
}

.error-404 p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.btn-back {
    display: inline-block;
    background: var(--color-dark-bg);
    color: var(--color-text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition-speed);
}

.btn-back:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.no-products {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.woocommerce-cart .woocommerce-main,
.woocommerce-checkout .woocommerce-main {
    max-width: 900px;
}

.woocommerce table.shop_table {
    border: 1px solid var(--color-border);
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1.5rem;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    font-size: 0.9rem;
}

.woocommerce table.shop_table th {
    background: var(--color-grey-bg);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.woocommerce table.shop_table img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.woocommerce .button,
.woocommerce button.button {
    display: inline-block;
    background: var(--color-dark-bg);
    color: var(--color-text-dark);
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed);
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.woocommerce .button.alt,
.woocommerce button.button.alt {
    background: var(--color-gold);
    color: var(--color-dark-bg);
}

.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover {
    background: #d4b86a;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 3px;
    font-size: 0.9rem;
}

.woocommerce-info {
    background: #f0f0ea;
    border-left: 3px solid var(--color-text-muted);
}

.woocommerce-message {
    background: #eaf5ea;
    border-left: 3px solid #4a8;
}

.woocommerce-error {
    background: #fceaea;
    border-left: 3px solid #c44;
}

.woocommerce-error li {
    list-style: none;
}

.woocommerce form .form-row {
    margin-bottom: 1rem;
}

.woocommerce form .form-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--color-text-body);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
    font-size: 0.9rem;
    background: var(--color-white);
    transition: border-color var(--transition-speed);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.woocommerce .col2-set {
    display: flex;
    gap: 2rem;
}

.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
    flex: 1;
}

.woocommerce #payment {
    background: #f8f8f4;
    border-radius: 3px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.woocommerce #payment .payment_methods {
    margin-bottom: 1rem;
}

.woocommerce #payment .payment_methods li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.woocommerce #payment .payment_methods li label {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-bottom: 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    border-radius: 3px;
    transition: background var(--transition-speed);
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    background: var(--color-grey-bg);
}

.select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 3px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    padding-left: 0.75rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-card-images {
        width: 100%;
    }

    .product-card-image-link {
        width: 100%;
        height: auto;
        max-width: 200px;
    }

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

    .single-product-content {
        flex-direction: column;
    }

    .single-product-gallery {
        width: 100%;
    }

    .single-product-placeholder {
        width: 100%;
        height: 300px;
    }

    .nav-search {
        max-width: 180px;
    }

    .woocommerce .col2-set {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .nav-list {
        padding: 0 0.5rem;
    }

    .nav-btn {
        padding: 0.5rem;
    }

    .nav-search {
        max-width: 140px;
    }

    #content-wrapper,
    .woocommerce-main {
        padding: 1rem 0.75rem;
    }

    .product-card-tracks {
        flex-direction: column;
        gap: 0.1rem;
    }
}

.product-card-artist {
    color: var(--color-text-body);
    font-weight: 600;
}

.product-card-artist:hover {
    color: var(--color-gold);
}

.product-card-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.4rem;
}

.product-card-genre {
    display: inline-block;
    background: var(--color-grey-bg);
    padding: 0.1rem 0.5rem;
    border-radius: 2px;
    font-size: 0.75rem;
    transition: background var(--transition-speed);
}

.product-card-genre:hover {
    background: var(--color-gold);
    color: var(--color-dark-bg);
}

.product-card-status {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.status-separator {
    margin: 0 0.4rem;
    color: var(--color-border);
}

.product-card-label {
    font-weight: 400;
    transition: color var(--transition-speed);
}

.product-card-label:hover {
    color: var(--color-gold);
}

.single-product-artist {
    font-weight: 400;
    transition: color var(--transition-speed);
}

.single-product-artist:hover {
    color: var(--color-gold);
}

.single-product-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.genre-tag {
    display: inline-block;
    background: var(--color-grey-bg);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    font-size: 0.8rem;
    transition: background var(--transition-speed);
}

.genre-tag:hover {
    background: var(--color-gold);
    color: var(--color-dark-bg);
}

.single-product-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.single-product-info-table th {
    text-align: left;
    font-weight: 600;
    padding: 0.4rem 1rem 0.4rem 0;
    color: var(--color-text-muted);
    white-space: nowrap;
    width: 140px;
    border-bottom: 1px solid var(--color-border);
}

.single-product-info-table td {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.single-product-info-table a {
    transition: color var(--transition-speed);
}

.single-product-info-table a:hover {
    color: var(--color-gold);
}

.product-label-info {
    transition: color var(--transition-speed);
}

.product-label-info:hover {
    color: var(--color-gold);
}
