:root {
    color-scheme: dark;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    --bg: #0a0218;
    --panel: #100d1f;
    --panel-soft: #1b1230;
    --panel-strong: #2a1654;
    --panel-muted: #282828;
    --surface-card:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 18%),
        linear-gradient(180deg, #24262d 0%, #1d2026 100%);
    --surface-card-hover:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 18%),
        linear-gradient(180deg, #2a2d35 0%, #23262d 100%);
    --accent: #ffc010;
    --accent-hover: #e5b010;
    --accent-secondary: #9b51e0;
    --accent-secondary-hover: #803ab9;
    --brand-gold: #e5b941;
    --nav-hover: #4b2c82;
    --text: #ffffff;
    --text-muted: #b8b3c7;
    --border: rgba(255, 255, 255, 0.12);
    --max-width: 1000px;
    --page-content-offset: 220px;
    --sidebar-width: 100%;
    --sidebar-bg: #2A1654;
    --sidebar-easing: cubic-bezier(0.16, 1, 0.3, 1);
    --sidebar-transition-duration: 0.6s;
}

* {
    box-sizing: border-box;
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
}

html {
    background: var(--bg);
}

html:has(body.cart-open) {
    background: var(--panel-strong);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at top center, rgba(55, 88, 160, 0.18), transparent 34%),
        linear-gradient(180deg, #0d031d 0%, var(--bg) 28%, #070112 100%);
}

body.products-loading footer {
    visibility: hidden;
}

main {
    width: 100%;
    padding-top: var(--page-content-offset);
}

main:has(> .products):not(:has(h1)) {
    padding-top: 110px;
}

.main-tight {
    padding-top: 135px;
}

header {
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 80px;
    background: var(--panel-strong);
    border-bottom: 1px solid var(--border);
}

nav,
h1,
section {
    width: var(--max-width);
    margin: 0 auto;
}

nav {
    height: 80px;
    display: flex;
    align-items: center;
}

nav a {
    display: flex;
    align-items: center;
    margin: 5px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

nav a:hover,
nav a.active,
.hamburger-btn:hover {
    background: var(--nav-hover);
}

nav .logo {
    width: 35px;
    height: 35px;
    padding-right: 5px;
}

nav .logo-link:hover {
    background: transparent;
}

.cart-icon-button {
    margin-left: auto;
}

.cart-icon {
    width: 35px;
    height: 35px;
    display: block;
}

.logo-container {
    display: inline-block;
}

.logo-text {
    display: inline-block;
    text-align: left;
    line-height: 0.5;
    letter-spacing: 1.2px;
    font-size: 1rem;
}

.logo-part1,
.logo-part2 {
    display: block;
    color: var(--brand-gold);
    font-weight: 700;
    text-align: left;
}

.logo-part2 {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hide-on-mobile {
    display: inline-block;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 25px;
    margin-right: 8px;
    outline: none;
    z-index: 1000;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.4s var(--sidebar-easing);
    transform-origin: center;
}

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

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100%;
    background-color: var(--sidebar-bg);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform var(--sidebar-transition-duration) var(--sidebar-easing);
    will-change: transform;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-links-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-link {
    display: block;
    color: #fff;
    padding: 18px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s var(--sidebar-easing);
    transform-origin: left center;
    opacity: 0;
    transform: translateX(-20px);
}

.sidebar-link span {
    position: relative;
    display: inline-block;
}

.sidebar-link span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s var(--sidebar-easing);
}

.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-link:hover span::after {
    width: 100%;
}

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

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

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

.sidebar-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.sidebar-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.sidebar-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.sidebar-open .sidebar-link:nth-child(1) {
    transition-delay: 0.1s;
}

.sidebar-open .sidebar-link:nth-child(2) {
    transition-delay: 0.15s;
}

.sidebar-open .sidebar-link:nth-child(3) {
    transition-delay: 0.2s;
}

.sidebar-open .sidebar-link:nth-child(4) {
    transition-delay: 0.25s;
}

.sidebar-open .sidebar-link:nth-child(5) {
    transition-delay: 0.3s;
}

body.sidebar-no-transition .sidebar,
body.sidebar-no-transition .sidebar-overlay,
body.sidebar-no-transition .sidebar-link,
body.sidebar-no-transition .hamburger-line {
    transition: none !important;
}

.return-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    padding: 10px 15px;
}

.return-link-icon,
.return-link svg {
    width: 30px;
    height: 30px;
    fill: var(--text);
}

h1 {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5rem;
}

section {
    margin-bottom: 150px;
}

p {
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

footer {
    margin-top: auto;
    padding: 28px 20px 32px;
    background:
        linear-gradient(180deg, rgba(42, 22, 84, 0.18), rgba(42, 22, 84, 0) 18%),
        linear-gradient(180deg, #18082f 0%, #120522 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}


.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 0;
    margin: 0;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    text-align: left;
}

.footer-section h3 {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.footer-section ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-section ul:empty::after {
    content: 'Coming soon';
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(2px);
}

.articles {
    max-width: 900px;
    padding: 20px;
    border-radius: 12px;
    background: #3c1a75;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.cart {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 350px;
    height: 100%;
    padding: 20px;
    background: var(--panel-strong);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.cart.no-transition {
    transition: none;
}

.cart.cart-visible {
    transform: translateX(0);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

html:has(body.sidebar-open),
html:has(body.cart-open),
body.sidebar-open,
body.cart-open {
    overflow: hidden;
}

html:has(body.sidebar-open) {
    overflow-y: auto;
    scrollbar-gutter: auto;
}

.cart-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 2px solid var(--border);
}

.cart-header h2 {
    flex: 1;
    margin: 0;
    text-align: center;
    font-size: 2rem;
}

.close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.close-icon {
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.close:hover .close-icon {
    filter: brightness(0) saturate(100%) invert(40%) sepia(90%) saturate(2824%) hue-rotate(333deg) brightness(102%) contrast(105%);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 0 10px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

.cart-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-header,
.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.cart-item-name {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    word-break: break-word;
}

.cart-item-remove {
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.cart-item-remove svg {
    width: 20px;
    height: 20px;
    fill: #e74c3c;
}

.cart-item-remove:hover svg {
    fill: #c0392b;
}

.cart-item-price,
.cart-item-units {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cart-item-price {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}

.cart-item-quantity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.cart-quantity-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: var(--panel-strong);
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.cart-quantity-button:hover {
    background: var(--nav-hover);
}


.cart-item-units {
    min-width: 20px;
    margin: 0;
    text-align: center;
    color: var(--text);
    font-weight: 700;
}

.cart-footer {
    position: sticky;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
    padding: 20px;
    background: #1b0a37;
    border-top: 1px solid var(--border);
}

.total-amount,
.total-amount-checkout {
    display: block;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}

.checkout-button,
.checkout-button-disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    margin: 0 auto;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
}

.checkout-button {
    background: var(--accent-secondary);
    cursor: pointer;
}

.checkout-button:hover {
    background: var(--accent-secondary-hover);
}

.checkout-button-disabled {
    background: #707070;
    cursor: not-allowed;
}

.cart-buttons {
    display: block;
    width: 100%;
}

.cart-buttons .checkout-button,
.cart-buttons .checkout-button-disabled {
    display: flex;
    width: 100%;
    max-width: none;
    margin: 0;
}

.search-container {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    padding: 10px;
    width: 100%;
    background: #1c1b35;
    border: 1px solid rgba(229, 231, 235, 0.1);
    border-radius: 20px;
    transition: border-color 0.3s ease;
}

.search-container:focus-within .search-box {
    border-color: #b77af1;
}

.search-box input {
    flex: 1;
    padding: 0 10px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
}

.search-box input:focus {
    outline: none;
}

.search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 10px;
    border: none;
    border-radius: 50%;
    background: none;
    cursor: pointer;
}

.search-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.pagination-button {
    width: 100px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: var(--accent-secondary);
    color: #fff;
    font-size: 16px;
}

.pagination-button:hover:not([disabled]) {
    background: var(--accent-secondary-hover);
    cursor: pointer;
}

.pagination-button[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-info {
    flex: 1;
    margin: 0 20px;
    text-align: center;
    font-size: 18px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-content: start;
    width: 100%;
    padding-top: 12px;
    box-sizing: border-box;
    justify-items: stretch;
    min-height: 0;
}

.product-grid.is-loading {
    min-height: 1200px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: var(--surface-card);
    text-align: center;
    outline: none;
    opacity: 0;
    -webkit-tap-highlight-color: transparent;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.18);
    transition: opacity 0.5s ease-in-out, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid #000;
    border-radius: 8px;
    background: linear-gradient(135deg, #f7c948, #ff9f1c);
    box-shadow: 0 8px 18px rgba(255, 159, 28, 0.22);
    color: #17120b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.product-card.show {
    opacity: 1;
}

.product-card:focus,
.product-card:focus-visible,
.product-card:active {
    outline: none;
    box-shadow: none;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 16px 30px rgba(0, 0, 0, 0.3);
}

.product-image {
    display: block;
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
    margin-inline: auto;
    border-radius: 5px;
    object-fit: cover;
}

.product-title,
.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.product-title {
    min-height: 50px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 400;
}

.product-date {
    font-size: 0.85rem;
    color: #b3b3b3;
    margin-top: -5px;
    margin-bottom: 10px;
    height: 30px;
}

.product-price {
    width: 100%;
    min-height: 32px;
    margin: 0 auto 18px;
}

.product-price span {
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
}

.product-card-button {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    border: none;
    border-radius: 6px;
    background: var(--accent);
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.product-card-button:hover {
    background: var(--accent-hover);
}

.accordion {
    max-width: 1000px;
}

.accordion__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.accordion__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.2rem 1.4rem;
    border: none;
    background: var(--surface-card);
    font-size: 1.2rem;
    text-align: left;
    cursor: pointer;
}

.accordion__btn:hover {
    background: var(--surface-card-hover);
}

.accordion__caption {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.accordion__caption-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    margin-right: 10px;
}

.accordion__icon {
    opacity: 0.9;
    transition: transform 0.3s ease-in-out;
}

.accordion__icon img {
    display: block;
    width: 50px;
    height: 50px;
}

.accordion__item--active .accordion__icon {
    transform: rotate(135deg);
}

.accordion__content {
    display: flex;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: linear-gradient(180deg, #23262d 0%, #1d2026 100%);
    transform: translateX(16px);
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.accordion__content p {
    margin: 0;
    padding: 1rem 1.8rem;
    color: #fff;
}

.accordion__item--active .accordion__content {
    max-height: 100vh;
    opacity: 1;
    transform: translateX(0);
}

.riot-id-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 640px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    background: #1c1c1c;
}

.riot-id-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.riot-id-box,
.region-container,
.delivery-container {
    padding: 14px 18px;
    border-radius: 8px;
    background: var(--panel-muted);
}

.riot-id-box {
    flex: 1;
    min-width: 200px;
}

.region-container,
.delivery-container {
    margin-top: 18px;
    border-bottom: 2px solid #555;
}

.label {
    display: block;
    margin-bottom: 6px;
    color: #ccc;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tagline-container {
    display: flex;
    align-items: center;
}

.tagline-prefix {
    padding-right: 5px;
    font-size: 1rem;
    font-weight: 700;
}

.value-input,
.delivery-input {
    width: 100%;
    padding: 5px 0;
    border: none;
    border-bottom: 2px solid #555;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 700;
    outline: none;
    transition: border-color 0.3s ease;
}

.value-input:focus,
.delivery-input:focus {
    border-bottom-color: #1e90ff;
}

.region-select {
    width: 100%;
    padding-right: 20px;
    border: none;
    background-color: var(--panel-muted);
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23ffffff' d='M2 0L0 2h4zM2 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px 10px;
    appearance: none;
    font-size: 1.05rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
}

.buttons-container,
.paypal-button-container {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.paypal-button-container {
    display: block;
    overflow: hidden;
    background: transparent;
    border-radius: 6px;
}

.paypal-button-container > div {
    overflow: hidden !important;
    height: 50px;
    max-height: 50px;
    background: transparent;
}

.paypal-button-container > div,
.paypal-button-container iframe {
    width: 100% !important;
    max-width: none !important;
}

.paypal-button-container iframe {
    display: block;
    height: 50px !important;
    max-height: 50px !important;
    background: transparent !important;
}

.total-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding-top: 6px;
}

.total-label {
    color: #999;
    font-size: 0.95rem;
}

.total-amount-checkout {
    text-align: right;
    font-size: 1rem;
    font-weight: 700;
}

.invoice-container {
    max-width: 900px;
    width: calc(100% - 56px);
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.invoice-header {
    margin-bottom: 20px;
    text-align: center;
}

.invoice-id {
    display: inline-block;
    color: #00aaff;
    font-size: 18px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.invoice-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.invoice-info-section {
    width: 46%;
    padding: 10px;
    border-radius: 10px;
    background: #333;
}

.invoice-info p {
    margin: 5px 0;
    color: #ccc;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.status-completed {
    color: #00ff00;
}

.status-waiting {
    color: #ffa500;
}

.status {
    color: #ff0000;
}

.products-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.products-table th,
.products-table td {
    padding: 12px;
    border-bottom: 1px solid #444;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.products-table th {
    background: var(--panel-strong);
    text-transform: uppercase;
}

.invoice-footer {
    margin-top: 20px;
    text-align: right;
}

.invoice-footer p {
    color: #fff;
    font-size: 20px;
}

.invoice-footer p strong {
    color: var(--brand-gold);
}

.invoice-total-value {
    color: #fff;
    font-weight: 700;
}
