/**
 * MPCCS Print Shop Styles
 *
 * Minimalist design for the print shop interface
 */

/* ===================================
   Print Shop Dashboard
   =================================== */

.mpccs-print-shop-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}

.mpccs-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--mpccs-black);
}

.mpccs-section-header h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
}

.mpccs-print-shop-stats {
    display: flex;
    gap: 30px;
}

.mpccs-print-shop-stats .stat-item {
    font-size: 14px;
    color: var(--mpccs-gray);
}

.mpccs-print-shop-stats .stat-item strong {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--mpccs-black);
    margin-bottom: 5px;
}

/* ===================================
   Portfolio Grid for Adding Prints
   =================================== */

.mpccs-add-prints-section {
    margin-bottom: 60px;
}

.mpccs-add-prints-section h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.mpccs-add-prints-section .mpccs-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mpccs-add-prints-section .mpccs-portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--mpccs-light-gray);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mpccs-add-prints-section .mpccs-portfolio-item:hover {
    transform: scale(1.02);
}

.mpccs-add-prints-section .mpccs-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mpccs-add-prints-section .mpccs-portfolio-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    padding: 30px 15px 15px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mpccs-add-prints-section .mpccs-portfolio-item:hover .mpccs-portfolio-item-overlay {
    opacity: 1;
}

.mpccs-add-prints-section .mpccs-portfolio-item-overlay h4 {
    color: var(--mpccs-white);
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.mpccs-add-to-shop-btn {
    width: 100%;
}

/* ===================================
   Prints Table
   =================================== */

.mpccs-active-prints-section {
    margin-bottom: 60px;
}

.mpccs-prints-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.mpccs-prints-table thead {
    border-bottom: 2px solid var(--mpccs-black);
}

.mpccs-prints-table th {
    text-align: left;
    padding: 15px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mpccs-prints-table td {
    padding: 15px 10px;
    border-bottom: 1px solid var(--mpccs-light-gray);
}

.mpccs-print-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.mpccs-status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

.mpccs-status-badge.status-active {
    background: var(--mpccs-black);
    color: var(--mpccs-white);
}

.mpccs-status-badge.status-inactive {
    background: var(--mpccs-light-gray);
    color: var(--mpccs-gray);
}

.mpccs-button-small {
    padding: 6px 12px;
    font-size: 12px;
    margin-right: 8px;
}

/* ===================================
   Modals
   =================================== */

.mpccs-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.mpccs-modal-content {
    background-color: var(--mpccs-white);
    margin: 5% auto;
    padding: 0;
    max-width: 700px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.mpccs-modal-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 15px 0;
    padding: 30px 30px 0;
}

.mpccs-modal-content > p {
    padding: 0 30px;
    margin: 0 0 20px 0;
}

.mpccs-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--mpccs-gray);
    cursor: pointer;
    line-height: 1;
}

.mpccs-modal-close:hover {
    color: var(--mpccs-black);
}

.mpccs-upload-section {
    padding: 0 30px 30px;
}

.mpccs-upload-instructions {
    background: var(--mpccs-light-gray);
    padding: 15px;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mpccs-upload-requirements {
    margin-bottom: 30px;
}

.mpccs-upload-requirements h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mpccs-upload-requirements ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.mpccs-upload-requirements li {
    font-size: 13px;
    line-height: 1.8;
}

/* ===================================
   File Upload Area
   =================================== */

.mpccs-drop-zone {
    border: 2px dashed var(--mpccs-gray);
    padding: 60px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mpccs-drop-zone:hover {
    border-color: var(--mpccs-black);
    background: var(--mpccs-light-gray);
}

.mpccs-drop-zone.drag-over {
    border-color: var(--mpccs-black);
    background: var(--mpccs-light-gray);
}

.mpccs-drop-zone svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.mpccs-drop-zone p {
    margin: 10px 0;
    font-size: 14px;
    color: var(--mpccs-gray);
}

/* ===================================
   Validation Results
   =================================== */

.mpccs-validation-results {
    margin-top: 30px;
    padding: 20px;
    background: var(--mpccs-light-gray);
}

.mpccs-validation-results h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mpccs-validation-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mpccs-validation-results li {
    padding: 8px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mpccs-validation-results li:before {
    content: '✓';
    font-weight: bold;
    font-size: 16px;
}

.mpccs-validation-results li.valid:before {
    content: '✓';
    color: #46b450;
}

.mpccs-validation-results li.warning:before {
    content: '⚠';
    color: #ffb900;
}

.mpccs-validation-results li.error:before {
    content: '✗';
    color: #dc3232;
}

/* ===================================
   Upload Progress
   =================================== */

.mpccs-upload-progress {
    margin-top: 30px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--mpccs-light-gray);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--mpccs-black);
    transition: width 0.3s ease;
}

.progress-text {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    color: var(--mpccs-gray);
}

/* ===================================
   Modal Actions
   =================================== */

.mpccs-modal-actions {
    padding: 20px 30px;
    border-top: 1px solid var(--mpccs-light-gray);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* ===================================
   Prices Grid
   =================================== */

.mpccs-prices-grid {
    padding: 30px;
    display: grid;
    gap: 20px;
}

.mpccs-price-field {
    display: grid;
    grid-template-columns: 150px 1fr 120px;
    gap: 15px;
    align-items: center;
}

.mpccs-price-field label {
    font-weight: 600;
}

.mpccs-price-field .size-label {
    font-size: 16px;
}

.mpccs-price-field .size-dimensions {
    font-size: 12px;
    color: var(--mpccs-gray);
}

.mpccs-price-field input {
    width: 100%;
}

.mpccs-price-field .artist-earnings {
    font-size: 12px;
    color: var(--mpccs-gray);
    text-align: right;
}

.mpccs-commission-info {
    background: var(--mpccs-light-gray);
    padding: 20px;
    margin: 20px 30px;
    font-size: 13px;
    line-height: 1.8;
}

.mpccs-commission-info p {
    margin: 8px 0;
}

.mpccs-commission-info .example {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--mpccs-gray);
    font-style: italic;
}

/* ===================================
   Shipping Profile Setup Wizard
   =================================== */

.mpccs-shipping-setup-wizard {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 15px;
}

.mpccs-wizard-header {
    text-align: center;
    margin-bottom: 60px;
}

.mpccs-wizard-header h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.mpccs-wizard-header p {
    font-size: 16px;
    color: var(--mpccs-gray);
}

.mpccs-wizard-step {
    display: none;
    padding: 40px;
    background: var(--mpccs-white);
    border: 1px solid var(--mpccs-light-gray);
    margin-bottom: 30px;
}

.mpccs-wizard-step.active {
    display: block;
}

.mpccs-wizard-step h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.mpccs-wizard-step > p {
    margin-bottom: 30px;
    color: var(--mpccs-gray);
}

.mpccs-form-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
}

.mpccs-form-field {
    display: flex;
    flex-direction: column;
}

.mpccs-form-field label {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mpccs-help-text {
    font-size: 12px;
    font-weight: 400;
    color: var(--mpccs-gray);
}

.mpccs-input-with-currency {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mpccs-input-with-currency .currency {
    font-weight: 600;
    font-size: 18px;
}

.mpccs-field-note {
    font-size: 12px;
    color: var(--mpccs-gray);
    margin-top: 8px;
}

.mpccs-shipping-note {
    background: var(--mpccs-light-gray);
    padding: 15px;
    font-size: 13px;
    margin-top: 30px;
}

.mpccs-wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/* ===================================
   Payment Options
   =================================== */

.mpccs-payment-options {
    display: grid;
    gap: 30px;
}

.mpccs-payment-option {
    padding: 30px;
    border: 1px solid var(--mpccs-light-gray);
    background: var(--mpccs-white);
}

.mpccs-payment-option h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mpccs-payment-option p {
    font-size: 14px;
    color: var(--mpccs-gray);
    margin-bottom: 20px;
}

.mpccs-skip-payment-note {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--mpccs-light-gray);
}

/* ===================================
   Agreement Box
   =================================== */

.mpccs-agreement-box {
    background: var(--mpccs-light-gray);
    padding: 30px;
}

.mpccs-agreement-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.mpccs-agreement-content {
    background: var(--mpccs-white);
    padding: 30px;
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--mpccs-gray);
}

.mpccs-agreement-content ol {
    margin: 0;
    padding-left: 20px;
}

.mpccs-agreement-content li {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 14px;
}

.mpccs-agreement-checkbox {
    padding: 20px;
    background: var(--mpccs-white);
    border: 2px solid var(--mpccs-black);
}

.mpccs-agreement-checkbox label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.mpccs-agreement-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* ===================================
   Wizard Progress
   =================================== */

.mpccs-wizard-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 40px 0;
}

.mpccs-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mpccs-progress-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--mpccs-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--mpccs-gray);
    background: var(--mpccs-white);
}

.mpccs-progress-step.active .step-number {
    border-color: var(--mpccs-black);
    color: var(--mpccs-black);
}

.mpccs-progress-step.completed .step-number {
    background: var(--mpccs-black);
    color: var(--mpccs-white);
    border-color: var(--mpccs-black);
}

.mpccs-progress-step .step-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mpccs-gray);
}

.mpccs-progress-step.active .step-label {
    color: var(--mpccs-black);
    font-weight: 600;
}

.mpccs-progress-line {
    width: 60px;
    height: 2px;
    background: var(--mpccs-light-gray);
    margin-bottom: 30px;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .mpccs-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .mpccs-print-shop-stats {
        width: 100%;
        justify-content: space-between;
    }

    .mpccs-portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .mpccs-prints-table {
        font-size: 12px;
    }

    .mpccs-prints-table th,
    .mpccs-prints-table td {
        padding: 10px 5px;
    }

    .mpccs-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .mpccs-wizard-progress {
        flex-wrap: wrap;
    }

    .mpccs-progress-line {
        width: 30px;
    }
}

/* ===================================
   Print Shop Locked (Non-Pro)
   =================================== */

.mpccs-print-shop-locked {
    max-width: 600px;
    margin: 60px auto;
    padding: 60px 30px;
    text-align: center;
    border: 1px solid var(--mpccs-light-gray);
}

.mpccs-upgrade-notice {
    margin-top: 30px;
}

.mpccs-upgrade-notice p {
    margin-bottom: 20px;
    color: var(--mpccs-gray);
}

/* ===================================
   Frontend Print Shop Styles
   =================================== */

/* Shop Header */
.mpccs-shop-header {
    text-align: center;
    margin-bottom: 60px;
}

.mpccs-shop-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.mpccs-shop-subtitle {
    font-size: 18px;
    color: var(--mpccs-gray);
    margin-bottom: 10px;
}

.mpccs-shop-count {
    font-size: 14px;
    color: var(--mpccs-gray);
}

/* Shop Layout (Sidebar + Grid) */
.mpccs-shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.mpccs-shop-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.mpccs-filter-section {
    margin-bottom: 30px;
}

.mpccs-filter-section h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mpccs-filter-section select {
    width: 100%;
}

/* Prints Grid */
.mpccs-prints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.mpccs-print-card {
    position: relative;
}

.mpccs-print-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--mpccs-light-gray);
    margin-bottom: 15px;
}

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

.mpccs-print-link:hover .mpccs-print-image img {
    transform: scale(1.05);
}

.mpccs-print-info {
    text-align: center;
}

.mpccs-print-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.mpccs-print-title a {
    color: var(--mpccs-black);
    text-decoration: none;
}

.mpccs-print-title a:hover {
    text-decoration: underline;
}

.mpccs-print-artist {
    font-size: 14px;
    color: var(--mpccs-gray);
    margin-bottom: 10px;
}

.mpccs-print-artist a {
    color: inherit;
    text-decoration: none;
}

.mpccs-print-artist a:hover {
    color: var(--mpccs-black);
}

.mpccs-print-price {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mpccs-print-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: var(--mpccs-gray);
}

/* New Badge */
.mpccs-new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--mpccs-black);
    color: var(--mpccs-white);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mpccs-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: gold;
    color: var(--mpccs-black);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Collections Grid */
.mpccs-collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.mpccs-collection-card {
    border: 1px solid var(--mpccs-light-gray);
}

.mpccs-collection-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--mpccs-light-gray);
    position: relative;
}

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

.mpccs-collection-link:hover .mpccs-collection-image img {
    transform: scale(1.05);
}

.mpccs-collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--mpccs-white);
}

.mpccs-collection-info {
    padding: 20px;
}

.mpccs-collection-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.mpccs-collection-description {
    font-size: 14px;
    color: var(--mpccs-gray);
    margin-bottom: 15px;
}

/* Artist Shop Page */
.mpccs-artist-shop-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--mpccs-light-gray);
}

.mpccs-artist-bio {
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0;
    color: var(--mpccs-gray);
}

.mpccs-artist-meta {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    font-size: 14px;
    color: var(--mpccs-gray);
}

.mpccs-artist-shipping-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.mpccs-shipping-rates {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.mpccs-shipping-rates li {
    padding: 8px 0;
    border-bottom: 1px solid var(--mpccs-light-gray);
}

.mpccs-processing-time {
    font-size: 14px;
    color: var(--mpccs-gray);
}

/* Cart Page */
.mpccs-cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.mpccs-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.mpccs-cart-table th {
    text-align: left;
    padding: 15px 10px;
    border-bottom: 2px solid var(--mpccs-black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.mpccs-cart-table td {
    padding: 20px 10px;
    border-bottom: 1px solid var(--mpccs-light-gray);
    vertical-align: middle;
}

.mpccs-cart-item-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mpccs-cart-item-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.mpccs-cart-item-title {
    font-weight: 600;
    color: var(--mpccs-black);
    text-decoration: none;
}

.mpccs-cart-item-title:hover {
    text-decoration: underline;
}

.mpccs-remove-item {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--mpccs-gray);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mpccs-remove-item:hover {
    color: var(--mpccs-black);
}

/* Cart/Checkout Summary */
.mpccs-cart-summary,
.mpccs-checkout-summary {
    position: sticky;
    top: 20px;
    height: fit-content;
    border: 1px solid var(--mpccs-light-gray);
    padding: 30px;
}

.mpccs-summary-line,
.mpccs-pricing-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.mpccs-summary-total,
.mpccs-pricing-total {
    border-top: 2px solid var(--mpccs-black);
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 600;
    font-size: 18px;
}

.mpccs-summary-note,
.mpccs-checkout-note {
    font-size: 12px;
    color: var(--mpccs-gray);
    margin: 15px 0;
    padding: 15px;
    background: var(--mpccs-light-gray);
}

/* Checkout Page */
.mpccs-checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.mpccs-checkout-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--mpccs-light-gray);
}

.mpccs-checkout-section:last-child {
    border-bottom: none;
}

.mpccs-checkout-items {
    margin-bottom: 20px;
}

.mpccs-checkout-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--mpccs-light-gray);
}

.mpccs-checkout-item:first-child {
    padding-top: 0;
}

.mpccs-checkout-item:last-child {
    border-bottom: none;
}

.mpccs-checkout-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.mpccs-checkout-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.mpccs-checkout-item-info p {
    font-size: 12px;
    color: var(--mpccs-gray);
    margin-bottom: 3px;
}

.mpccs-checkout-item-price {
    font-weight: 600;
}

.mpccs-shipping-breakdown {
    border-top: 1px solid var(--mpccs-light-gray);
    padding-top: 10px;
    margin-bottom: 10px;
}

.mpccs-shipping-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 13px;
    color: var(--mpccs-gray);
}

/* Pagination */
.mpccs-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
}

.mpccs-pagination-info {
    font-size: 14px;
    color: var(--mpccs-gray);
}

/* Back Links */
.mpccs-back-link,
.mpccs-back-links {
    text-align: center;
    margin: 60px 0;
}

.mpccs-back-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.mpccs-back-link a,
.mpccs-back-links a {
    color: var(--mpccs-gray);
    text-decoration: none;
    font-size: 14px;
}

.mpccs-back-link a:hover,
.mpccs-back-links a:hover {
    color: var(--mpccs-black);
}

/* Editor's Pick Banner */
.mpccs-editors-pick-banner {
    background: var(--mpccs-black);
    color: var(--mpccs-white);
    padding: 60px;
    text-align: center;
    margin: 60px 0;
}

.mpccs-banner-badge {
    display: inline-block;
    background: gold;
    color: var(--mpccs-black);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.mpccs-banner-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.mpccs-banner-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Artist Shop Shipping and Footer Sections */
.mpccs-artist-shipping-info {
    margin: 40px auto;
    padding: 40px 0;
    background: white;
    max-width: 900px;
}

.mpccs-artist-shop-footer {
    margin: 40px 0;
    padding: 40px 0;
    background: white;
}

.mpccs-artist-shipping-info h3,
.mpccs-artist-shop-footer h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}

.mpccs-print-quality-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.mpccs-quality-feature {
    text-align: center;
}

.mpccs-quality-feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mpccs-quality-feature p {
    font-size: 14px;
    color: var(--mpccs-gray);
    line-height: 1.6;
}

.mpccs-shipping-rates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.mpccs-shipping-rates li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--mpccs-light-gray);
    border-radius: 4px;
}

.mpccs-shipping-rates li strong {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.mpccs-shipping-rates li .price {
    font-size: 20px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .mpccs-shop-layout,
    .mpccs-artist-shop-header,
    .mpccs-cart-layout,
    .mpccs-checkout-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mpccs-shop-sidebar {
        position: static;
    }

    .mpccs-prints-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 30px;
    }

    .mpccs-cart-summary,
    .mpccs-checkout-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .mpccs-shop-header h1 {
        font-size: 32px;
    }

    .mpccs-prints-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }

    .mpccs-collections-grid {
        grid-template-columns: 1fr;
    }

    .mpccs-cart-table {
        font-size: 13px;
    }

    .mpccs-cart-item-info img {
        width: 60px;
        height: 60px;
    }

    .mpccs-editors-pick-banner {
        padding: 40px 20px;
    }

    .mpccs-back-links {
        flex-direction: column;
        gap: 15px;
    }
}
