@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
.rma-archive {
font-family: 'Montserrat', Arial, sans-serif;
color: #1f1f1f;
line-height: 1.5;
}
.rma-hero {
background: linear-gradient(135deg, #f8f1d0 0%, #efe2a8 100%);
border: 1px solid #d7c27a;
border-radius: 14px;
padding: 24px;
margin-bottom: 24px;
box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.rma-hero h2 {
margin: 0 0 10px 0;
font-size: 30px;
}
.rma-hero p {
margin: 0;
max-width: 950px;
}
.rma-note {
margin-top: 12px;
font-size: 14px;
color: #555;
}
/* SHELF — matched to requested style */
.rma-shelf-wrap {
margin-top: 22px;
overflow: visible;
}
.rma-shelf-controls {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 10px;
flex-wrap: wrap;
}
.rma-shelf-controls label {
font-size: 13px;
font-weight: 700;
color: #5f5639;
}
.rma-shelf-slider {
width: 240px;
accent-color: #b18d2f;
}
.rma-shelf-window {
position: relative;
overflow: visible;
width: 100%;
padding: 10px 0 8px 0;
}
.rma-shelf-track-wrap {
overflow: hidden;
width: 100%;
padding: 0 4px;
}
.rma-shelf-track {
display: flex;
align-items: flex-end;
gap: 0;
width: max-content;
animation: rmaShelfScroll 140s linear infinite;
padding-top: 8px;
}
.rma-shelf-track-wrap:hover .rma-shelf-track {
animation-play-state: paused;
}
@keyframes rmaShelfScroll {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.rma-shelf-item {
flex: 0 0 auto;
text-decoration: none;
color: inherit;
display: block;
width: 78px;
margin-right: -8px;
overflow: visible;
}
.rma-shelf-visual {
position: relative;
width: 78px;
height: 290px;
overflow: visible;
}
.rma-shelf-back {
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
height: 230px;
width: auto;
max-width: 78px;
display: block;
box-shadow: 0 2px 4px rgba(0,0,0,0.15);
border-radius: 2px;
z-index: 1;
transition: opacity 0.18s ease;
}
.rma-shelf-preview {
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%) scale(1);
height: 230px;
width: auto;
max-width: 170px;
opacity: 0;
pointer-events: none;
box-shadow: 0 8px 24px rgba(0,0,0,0.22);
border: 1px solid #ddd;
background: #fff;
padding: 2px;
z-index: 5;
transition: opacity 0.18s ease;
border-radius: 3px;
}
.rma-shelf-item:hover .rma-shelf-preview {
opacity: 1;
}
.rma-shelf-item:hover .rma-shelf-back {
opacity: 0;
}
.rma-shelf-label {
text-align: center;
font-size: 12px;
font-weight: 700;
margin-top: 4px;
}
.rma-shelf-board {
height: 16px;
margin-top: 6px;
width: 100%;
border-radius: 3px;
background: linear-gradient(to bottom, #8f6c42 0%, #6e4f2b 100%);
box-shadow: inset 0 2px 2px rgba(255,255,255,0.18), inset 0 -2px 3px rgba(0,0,0,0.18);
}
/* EXISTING PAGE STYLES */
.rma-tape-list {
display: flex;
flex-direction: column;
gap: 24px;
}
.rma-tape-card {
background: #fffdfa;
border: 1px solid #e5d8a8;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.rma-tape-top {
background: #f4e7b7;
border-bottom: 1px solid #e2cf87;
padding: 16px 18px;
}
.rma-tape-top h3 {
margin: 0;
font-size: 24px;
}
.rma-tape-meta {
margin-top: 6px;
font-size: 13px;
color: #5f5639;
}
.rma-tape-body {
padding: 18px;
}
.rma-tape-layout {
display: grid;
grid-template-columns: 220px 1fr;
gap: 20px;
align-items: start;
}
.rma-thumb img {
width: 100%;
height: auto;
display: block;
border-radius: 10px;
border: 1px solid #ddd3aa;
background: #f7f1da;
}
.rma-sides {
display: flex;
flex-direction: column;
gap: 18px;
}
.rma-side {
border: 1px solid #eee3bc;
border-radius: 12px;
background: #fffef8;
overflow: hidden;
}
.rma-side-head {
background: #f9f1cf;
border-bottom: 1px solid #eee3bc;
padding: 12px 14px;
font-weight: 700;
font-size: 18px;
}
.rma-side-body {
padding: 8px 14px;
}
.rma-item {
display: grid;
grid-template-columns: 1fr auto;
gap: 12px;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #eee8cf;
}
.rma-item:last-child {
border-bottom: none;
}
.rma-title {
font-size: 15px;
font-weight: 600;
}
.rma-sub {
font-size: 12px;
color: #6b6b6b;
margin-top: 3px;
}
.rma-actions {
display: flex;
gap: 8px;
flex-wrap: wrap;
justify-content: flex-end;
}
.rma-format-picker {
display: inline-flex;
align-items: center;
gap: 8px;
border: 1px solid #dcc981;
background: #fff8dd;
border-radius: 10px;
padding: 6px;
transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.rma-format-picker.is-watching {
animation: rmaBlink 0.9s linear infinite;
}
@keyframes rmaBlink {
0%, 100% { box-shadow: 0 0 0 0 rgba(218,184,68,0.0); }
50% { box-shadow: 0 0 0 4px rgba(218,184,68,0.35); }
}
.rma-select {
border: 1px solid #d8c372;
background: #fffdf4;
border-radius: 8px;
padding: 8px 10px;
font-weight: 700;
color: #222;
font-family: 'Montserrat', Arial, sans-serif;
}
.rma-download-link {
display: inline-block;
background: #DAB844;
color: #161616 !important;
text-decoration: none;
font-weight: 700;
border-radius: 8px;
padding: 9px 12px;
font-size: 13px;
white-space: nowrap;
}
.rma-download-link:hover {
opacity: 0.92;
}
.rma-empty {
color: #857c62;
font-size: 14px;
font-style: italic;
padding: 2px 0 8px 0;
}
@media (max-width: 860px) {
.rma-tape-layout {
grid-template-columns: 1fr;
}
.rma-item {
grid-template-columns: 1fr;
}
.rma-actions {
justify-content: flex-start;
}
.rma-shelf-item {
width: 62px;
margin-right: -6px;
}
.rma-shelf-visual {
width: 62px;
height: 240px;
}
.rma-shelf-back {
max-width: 62px;
height: 190px;
}
.rma-shelf-preview {
height: 190px;
max-width: 140px;
}
}