/* Cards Page Styles */

.cards-page {
    display: flex;
    min-height: calc(100vh - 72px);
    padding-top: 72px;
}

/* ===== FILTERS SIDEBAR ===== */
.filters-sidebar {
    width: 260px;
    padding: var(--space-xl);
    background: white;
    border-right: 1px solid var(--border-color);
    position: fixed;
    top: 72px;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.filters-header h2 {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.clear-filters {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    color: var(--atomic-tangerine);
    background: none;
    border: none;
    cursor: pointer;
}

.clear-filters:hover {
    text-decoration: underline;
}

.filter-group {
    margin-bottom: var(--space-xl);
}

.filter-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.2s;
}

.filter-option:hover {
    background: var(--olive-bark-50);
}

.filter-option input {
    accent-color: var(--atomic-tangerine);
}

.filter-option span {
    font-size: var(--font-size-sm);
}

/* ===== CARDS CONTENT ===== */
.cards-content {
    flex: 1;
    margin-left: 260px;
    padding: var(--space-xl);
}

.cards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.cards-header h1 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.cards-count {
    color: var(--text-muted);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-lg);
}

/* ===== CARD ITEM ===== */
.card-item {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-item-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card-item:hover .card-item-image img {
    transform: scale(1.05);
}

.card-item-content {
    padding: var(--space-md);
}

.card-item-mood {
    font-size: var(--font-size-sm);
    color: var(--atomic-tangerine);
    font-weight: 500;
}

.card-item-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin: var(--space-xs) 0;
    color: var(--olive-bark);
}

.card-item-text {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
}

.modal.open {
    display: block;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(88, 81, 35, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--olive-bark-50);
    border-radius: var(--radius-full);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: background 0.2s, transform 0.15s;
}

.modal-close:hover {
    background: var(--olive-bark-100);
    transform: scale(1.05);
}

.modal-close:active {
    transform: scale(0.95);
}

.modal-body {
    display: flex;
    max-height: 90vh;
    overflow-y: auto;
}

/* ===== CARD PREVIEW ===== */
.card-preview {
    flex: 1;
    background: linear-gradient(135deg, #542212 0%, var(--brandy) 100%);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preview-container {
    width: 280px;
    height: 380px;
    position: relative;
}

.preview-front,
.preview-inside {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.preview-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-align: center;
}

.preview-inside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--space-lg);
    padding-top: var(--space-md);
    background: linear-gradient(135deg, var(--honey-bronze-50) 0%, var(--olive-bark-50) 100%);
}

.inside-card-text {
    font-size: var(--font-size-sm);
    text-align: center;
    color: var(--olive-bark);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: var(--space-md);
    flex: 0 0 auto;
}

.inside-personal {
    font-size: var(--font-size-xs);
    text-align: center;
    color: var(--olive-bark-700);
    line-height: 1.4;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--honey-bronze);
    flex: 1 1 auto;
    overflow-y: auto;
    word-wrap: break-word;
}

.inside-personal:empty {
    display: none;
}

.hidden {
    display: none !important;
}

.preview-toggle {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.toggle-btn {
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--olive-bark);
}

.toggle-btn:hover {
    background: white;
    border-color: var(--atomic-tangerine);
}

.toggle-btn.active {
    background: var(--atomic-tangerine);
    border-color: var(--atomic-tangerine);
    color: white;
}

/* ===== CARD DETAILS ===== */
.card-details {
    flex: 1;
    padding: var(--space-2xl);
    max-width: 400px;
}

.card-mood {
    font-size: var(--font-size-sm);
    color: var(--atomic-tangerine);
    font-weight: 500;
}

.card-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: var(--space-sm) 0 var(--space-lg);
    color: var(--olive-bark);
}

/* ===== IMAGE SELECTOR ===== */
.image-selector {
    margin-bottom: var(--space-lg);
}

.image-selector-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.image-options {
    display: flex;
    gap: var(--space-sm);
}

.image-option {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s;
    opacity: 0.7;
}

.image-option:hover {
    opacity: 1;
    border-color: var(--olive-bark-200);
}

.image-option.selected {
    opacity: 1;
    border-color: var(--atomic-tangerine);
    box-shadow: 0 0 0 2px var(--atomic-tangerine-200);
}

.image-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-option-single {
    opacity: 1;
    cursor: default;
}

/* ===== CARD MESSAGE SECTION ===== */
.message-section {
    margin-bottom: var(--space-lg);
}

.message-section label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.card-text-display {
    padding: var(--space-md);
    background: var(--olive-bark-50);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--olive-bark);
    line-height: 1.6;
    font-style: italic;
}

.message-editor {
    margin-bottom: var(--space-xl);
}

.message-editor label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.optional-label {
    font-weight: 400;
    color: var(--text-muted);
}

.message-editor textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    resize: none;
    transition: border-color 0.2s;
}

.message-editor textarea:focus {
    outline: none;
    border-color: var(--atomic-tangerine);
}

.message-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: var(--space-sm);
}

.btn-text {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    color: var(--atomic-tangerine);
    background: none;
    border: none;
    cursor: pointer;
}

.btn-text:hover {
    text-decoration: underline;
}

.char-count {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.download-note {
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .modal-body {
        flex-direction: column;
    }
    
    .card-preview {
        padding: var(--space-lg);
    }
    
    .preview-container {
        width: 220px;
        height: 300px;
    }
    
    .inside-card-text {
        font-size: var(--font-size-xs);
        margin-bottom: var(--space-sm);
    }
    
    .inside-personal {
        font-size: 11px;
        padding-top: var(--space-xs);
    }
    
    .card-details {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .cards-page {
        padding-top: 62px;
    }
    
    .filters-sidebar {
        display: none;
    }
    
    .cards-content {
        margin-left: 0;
        padding: var(--space-lg);
    }
    
    .cards-header {
        margin-bottom: var(--space-lg);
    }
    
    .cards-header h1 {
        font-size: var(--font-size-xl);
    }
    
    .cards-grid {
        gap: var(--space-md);
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .card-details {
        padding: var(--space-xl);
    }
}

/* Small phones (576px) */
@media (max-width: 576px) {
    .cards-page {
        padding-top: 56px;
    }
    
    .cards-content {
        padding: var(--space-md);
    }
    
    .cards-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
        margin-bottom: var(--space-md);
    }
    
    .cards-header h1 {
        font-size: var(--font-size-lg);
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--space-sm);
    }
    
    .card-item-image {
        height: 150px;
    }
    
    .card-item-content {
        padding: var(--space-sm);
    }
    
    .card-item-title {
        font-size: var(--font-size-sm);
    }
    
    .card-item-text {
        font-size: var(--font-size-xs);
    }
    
    /* Modal - small phone */
    .modal-content {
        width: 98%;
        max-height: 98vh;
        border-radius: var(--radius-lg);
    }
    
    .modal-close {
        width: 44px;
        height: 44px;
        font-size: 22px;
        top: var(--space-sm);
        right: var(--space-sm);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow-sm);
    }
    
    .card-preview {
        padding: var(--space-xl);
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }
    
    .preview-container {
        width: 240px;
        height: 326px;
    }
    
    .preview-inside {
        padding: var(--space-md);
        padding-top: var(--space-sm);
    }
    
    .inside-card-text {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: var(--space-xs);
    }
    
    .inside-personal {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .preview-toggle {
        margin-top: var(--space-lg);
    }
    
    .toggle-btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--font-size-sm);
    }
    
    .card-details {
        padding: var(--space-md) var(--space-lg);
        padding-bottom: var(--space-lg);
    }
    
    .card-mood {
        font-size: var(--font-size-xs);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .card-title {
        font-size: var(--font-size-lg);
        margin: var(--space-xs) 0 var(--space-md);
    }
    
    .image-selector {
        margin-bottom: var(--space-md);
    }
    
    .image-option {
        width: 52px;
        height: 52px;
    }
    
    .message-section {
        margin-bottom: var(--space-md);
    }
    
    .message-editor {
        margin-bottom: var(--space-md);
    }
    
    .message-editor textarea {
        font-size: var(--font-size-sm);
        min-height: 60px;
    }
    
    .download-note {
        font-size: var(--font-size-xs);
        margin-top: var(--space-sm);
    }
}

/* Extra small phones (420px) */
@media (max-width: 420px) {
    .cards-page {
        padding-top: 52px;
    }
    
    .cards-content {
        padding: var(--space-sm);
    }
    
    .cards-header h1 {
        font-size: var(--font-size-base);
    }
    
    .cards-count {
        font-size: var(--font-size-sm);
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xs);
    }
    
    .card-item-image {
        height: 120px;
    }
    
    .card-item-content {
        padding: var(--space-xs);
    }
    
    .card-item-mood {
        font-size: var(--font-size-xs);
    }
    
    .card-item-title {
        font-size: var(--font-size-xs);
        margin: 2px 0;
    }
    
    .card-item-text {
        display: none;
    }
    
    /* Modal - extra small phone */
    .modal-close {
        width: 44px;
        height: 44px;
        font-size: 20px;
        top: var(--space-xs);
        right: var(--space-xs);
    }
    
    .card-preview {
        padding: var(--space-lg);
        padding-top: var(--space-md);
        padding-bottom: var(--space-md);
    }
    
    .preview-container {
        width: 220px;
        height: 300px;
    }
    
    .preview-inside {
        padding: var(--space-sm);
        padding-top: var(--space-xs);
    }
    
    .inside-card-text {
        font-size: 11px;
        line-height: 1.35;
        margin-bottom: 4px;
    }
    
    .inside-personal {
        font-size: 10px;
        line-height: 1.25;
        padding-top: 4px;
    }
    
    .preview-text {
        padding: var(--space-sm);
        font-size: var(--font-size-sm);
    }
    
    .preview-toggle {
        margin-top: var(--space-md);
    }
    
    .toggle-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: var(--font-size-sm);
    }
    
    .card-details {
        padding: var(--space-sm) var(--space-md);
        padding-bottom: var(--space-md);
    }
    
    .card-mood {
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    
    .card-title {
        font-size: var(--font-size-base);
        margin: 2px 0 var(--space-sm);
    }
    
    .image-selector {
        margin-bottom: var(--space-sm);
    }
    
    .image-selector-label,
    .message-section label,
    .message-editor label {
        font-size: var(--font-size-xs);
        margin-bottom: var(--space-xs);
    }
    
    .image-option {
        width: 44px;
        height: 44px;
    }
    
    .message-section {
        margin-bottom: var(--space-sm);
    }
    
    .card-text-display {
        padding: var(--space-sm);
        font-size: var(--font-size-xs);
    }
    
    .message-editor {
        margin-bottom: var(--space-sm);
    }
    
    .message-editor textarea {
        padding: var(--space-sm);
        min-height: 50px;
    }
    
    .btn-lg {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-sm);
    }
    
    .download-note {
        margin-top: var(--space-xs);
    }
}

/* Very small phones (360px) */
@media (max-width: 360px) {
    .cards-page {
        padding-top: 48px;
    }
    
    .cards-content {
        padding: var(--space-xs);
    }
    
    .cards-header {
        margin-bottom: var(--space-sm);
    }
    
    .cards-grid {
        gap: 6px;
    }
    
    .card-item-image {
        height: 100px;
    }
    
    .card-item {
        border-radius: var(--radius-md);
    }
    
    /* Modal - very small phone */
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .card-preview {
        padding: var(--space-md);
    }
    
    .preview-container {
        width: 200px;
        height: 272px;
    }
    
    .preview-inside {
        padding: var(--space-xs);
    }
    
    .inside-card-text {
        font-size: 10px;
        line-height: 1.3;
        margin-bottom: 3px;
    }
    
    .inside-personal {
        font-size: 9px;
        line-height: 1.2;
        padding-top: 3px;
    }
    
    .preview-toggle {
        margin-top: var(--space-sm);
    }
    
    .toggle-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--font-size-xs);
    }
    
    .card-details {
        padding: var(--space-xs) var(--space-sm);
        padding-bottom: var(--space-sm);
    }
    
    .card-title {
        font-size: var(--font-size-sm);
    }
    
    .image-option {
        width: 40px;
        height: 40px;
    }
    
    .message-editor {
        margin-bottom: var(--space-sm);
    }
    
    .btn-lg {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--font-size-xs);
    }
}

/* Small button variant */
.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-sm);
}

.nav-link-active {
    color: var(--atomic-tangerine);
}

