/**
 * Lucid Pulse Marketplace - Frontend Styles
 * Main stylesheet for buyer and seller frontend experience
 */

:root {
    --lpm-primary: #0073aa;
    --lpm-primary-dark: #005a87;
    --lpm-primary-light: #f0f8ff;
    --lpm-success: #28a745;
    --lpm-danger: #d32f2f;
    --lpm-warning: #ff9800;
    --lpm-info: #2196f3;
    --lpm-text-dark: #333;
    --lpm-text-light: #666;
    --lpm-border-color: #ddd;
    --lpm-bg-light: #f5f5f5;
    --lpm-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    color: var(--lpm-text-dark);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--lpm-text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

a {
    color: var(--lpm-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--lpm-primary-dark);
}

/* Buttons */
.lpm-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.lpm-btn-primary {
    background: var(--lpm-primary);
    color: white;
}

.lpm-btn-primary:hover {
    background: var(--lpm-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lpm-shadow);
}

.lpm-btn-secondary {
    background: var(--lpm-bg-light);
    color: var(--lpm-text-dark);
    border: 1px solid var(--lpm-border-color);
}

.lpm-btn-secondary:hover {
    background: #e0e0e0;
}

.lpm-btn-danger {
    background: var(--lpm-danger);
    color: white;
}

.lpm-btn-danger:hover {
    background: #c82333;
}

.lpm-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Forms */
.lpm-form-group {
    margin-bottom: 20px;
}

.lpm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--lpm-text-dark);
}

.lpm-form-group input,
.lpm-form-group textarea,
.lpm-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--lpm-border-color);
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.lpm-form-group input:focus,
.lpm-form-group textarea:focus,
.lpm-form-group select:focus {
    outline: none;
    border-color: var(--lpm-primary);
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.lpm-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.lpm-form-help {
    display: block;
    font-size: 12px;
    color: var(--lpm-text-light);
    margin-top: 5px;
}

.lpm-form-error {
    color: var(--lpm-danger);
    font-size: 12px;
    margin-top: 5px;
}

/* Cards */
.lpm-card {
    background: white;
    border: 1px solid var(--lpm-border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--lpm-shadow);
}

.lpm-card-header {
    border-bottom: 1px solid var(--lpm-border-color);
    margin: -20px -20px 20px -20px;
    padding: 20px;
    background: var(--lpm-bg-light);
}

.lpm-card-footer {
    border-top: 1px solid var(--lpm-border-color);
    margin: 20px -20px -20px -20px;
    padding: 20px;
    background: var(--lpm-bg-light);
}

/* Badges */
.lpm-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.lpm-badge-success {
    background: #d4edda;
    color: #155724;
}

.lpm-badge-warning {
    background: #fff3cd;
    color: #856404;
}

.lpm-badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.lpm-badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* Alerts/Notices */
.lpm-alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid transparent;
}

.lpm-alert-success {
    background: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

.lpm-alert-warning {
    background: #fff3cd;
    border-left-color: #ff9800;
    color: #856404;
}

.lpm-alert-danger {
    background: #f8d7da;
    border-left-color: #d32f2f;
    color: #721c24;
}

.lpm-alert-info {
    background: #d1ecf1;
    border-left-color: #2196f3;
    color: #0c5460;
}

/* Tables */
.lpm-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.lpm-table th {
    background: var(--lpm-bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--lpm-border-color);
}

.lpm-table td {
    padding: 12px;
    border-bottom: 1px solid var(--lpm-border-color);
}

.lpm-table tr:hover {
    background: var(--lpm-bg-light);
}

.lpm-table tbody tr:last-child td {
    border-bottom: none;
}

/* Grid */
.lpm-grid {
    display: grid;
    gap: 20px;
}

.lpm-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.lpm-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.lpm-grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* Pagination */
.lpm-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.lpm-pagination a,
.lpm-pagination span {
    padding: 8px 12px;
    border: 1px solid var(--lpm-border-color);
    border-radius: 4px;
    text-decoration: none;
    color: var(--lpm-primary);
}

.lpm-pagination a:hover {
    background: var(--lpm-primary);
    color: white;
}

.lpm-pagination .active {
    background: var(--lpm-primary);
    color: white;
    border-color: var(--lpm-primary);
}

/* Utilities */
.lpm-mt-1 { margin-top: 5px; }
.lpm-mt-2 { margin-top: 10px; }
.lpm-mt-3 { margin-top: 15px; }
.lpm-mt-4 { margin-top: 20px; }

.lpm-mb-1 { margin-bottom: 5px; }
.lpm-mb-2 { margin-bottom: 10px; }
.lpm-mb-3 { margin-bottom: 15px; }
.lpm-mb-4 { margin-bottom: 20px; }

.lpm-p-1 { padding: 5px; }
.lpm-p-2 { padding: 10px; }
.lpm-p-3 { padding: 15px; }
.lpm-p-4 { padding: 20px; }

.lpm-text-center { text-align: center; }
.lpm-text-right { text-align: right; }
.lpm-text-left { text-align: left; }

.lpm-text-muted { color: var(--lpm-text-light); }
.lpm-text-success { color: var(--lpm-success); }
.lpm-text-danger { color: var(--lpm-danger); }
.lpm-text-warning { color: var(--lpm-warning); }

.lpm-d-none { display: none; }
.lpm-d-block { display: block; }
.lpm-d-inline { display: inline; }
.lpm-d-inline-block { display: inline-block; }

.lpm-flex {
    display: flex;
    gap: 10px;
}

.lpm-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .lpm-grid-2,
    .lpm-grid-3,
    .lpm-grid-4 {
        grid-template-columns: 1fr;
    }

    .lpm-table {
        font-size: 13px;
    }

    .lpm-table th,
    .lpm-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .lpm-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .lpm-card {
        padding: 15px;
    }

    .lpm-pagination {
        gap: 5px;
    }

    .lpm-pagination a,
    .lpm-pagination span {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Product form wrapper and overall layout */
.lpm-product-form-wrapper {
    max-width: 1600px;
    margin: 0 auto 40px;
    padding: 0 20px;
}
.lpm-product-form-styled .lpm-notice-success {
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--lpm-success);
    background: #e8f5e9;
    color: #1b5e20;
}
.lpm-product-form-styled .lpm-notice-warning {
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--lpm-warning);
    background: #fff8e1;
    color: #e65100;
}
.lpm-product-form-styled .lpm-notice-warning h4 {
    margin-bottom: 8px;
}

/* WooCommerce-style product form - improved UI */
.lpm-product-form-styled #lpm-product-form {
    padding: 0;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-form-section {
    background: #fff;
    border: 1px solid var(--lpm-border-color);
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-section-title {
    margin: 0;
    padding: 18px 24px;
    font-size: 1.05em;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--lpm-border-color);
    background: linear-gradient(180deg, #fafbfc 0%, #f5f6f8 100%);
    color: var(--lpm-text-dark);
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-form-content {
    padding: 24px;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-form-row {
    margin-bottom: 20px;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-form-row:last-child {
    margin-bottom: 0;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9em;
    color: var(--lpm-text-dark);
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-modern-input,
.lpm-product-form-woo.lpm-product-form-styled .lpm-modern-select,
.lpm-product-form-woo.lpm-product-form-styled .lpm-modern-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--lpm-border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-modern-input:focus,
.lpm-product-form-woo.lpm-product-form-styled .lpm-modern-select:focus,
.lpm-product-form-woo.lpm-product-form-styled .lpm-modern-textarea:focus {
    outline: none;
    border-color: var(--lpm-primary);
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.12);
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-modern-textarea {
    min-height: 100px;
    resize: vertical;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-price-field {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--lpm-border-color);
    border-radius: 8px;
    padding: 0 14px;
    background: #fff;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-price-field .currency-symbol {
    font-weight: 600;
    color: var(--lpm-text-light);
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-price-field input {
    border: none;
    padding: 12px 0;
    border-radius: 0;
    margin-left: 13px;
    font-size: 22px;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-price-field input:focus {
    box-shadow: none;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-sku-field {
    display: flex;
    gap: 12px;
    align-items: center;
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-sku-field .lpm-modern-input {
    flex: 1;
}
.lpm-product-form-woo.lpm-product-form-styled .description {
    margin-top: 6px;
    font-size: 0.85em;
    color: var(--lpm-text-light);
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-form-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--lpm-border-color);
}
.lpm-product-form-woo.lpm-product-form-styled .lpm-btn-lg {
    padding: 14px 32px;
    font-size: 1.05em;
    border-radius: 8px;
}
.lpm-product-form-woo .lpm-form-section {
    background: #fff;
    border: 1px solid var(--lpm-border-color);
    border-radius: 4px;
    margin-bottom: 24px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}
.lpm-product-form-woo .lpm-section-title {
    margin: 0;
    padding: 16px 20px;
    font-size: 1.1em;
    border-bottom: 1px solid var(--lpm-border-color);
    background: #f8f9fa;
    border-radius: 4px 4px 0 0;
}
.lpm-product-form-woo .lpm-form-content {
    padding: 20px;
}
.lpm-product-form-woo .lpm-form-row.lpm-columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 768px) {
    .lpm-product-form-woo .lpm-form-row.lpm-columns-2,
    .lpm-product-form-woo.lpm-product-form-styled .lpm-form-row.lpm-columns-2 {
        grid-template-columns: 1fr;
    }
    .lpm-product-form-wrapper {
        padding: 0 12px;
    }
    .lpm-product-form-woo.lpm-product-form-styled .lpm-form-content {
        padding: 18px;
    }
}
/* Category-filtered attributes (global pa_* terms) */
.lpm-attributes-list.lpm-global-attributes .lpm-attribute-group {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.lpm-attributes-list.lpm-global-attributes .lpm-attribute-group:last-child {
    border-bottom: none;
}
.lpm-attribute-group-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--lpm-text-dark);
}
.lpm-attribute-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}
.lpm-attribute-term-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin: 0;
}
.lpm-attribute-term-item input {
    margin: 0;
}
.lpm-product-form-styled .lpm-attributes-container .lpm-notice.info {
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 4px solid var(--lpm-info);
    background: #e3f2fd;
    color: #0d47a1;
}
.lpm-product-form-styled .lpm-attributes-container .lpm-notice.info p {
    margin: 0;
}

/* Shipping Configuration */
.lpm-shipping-config .lpm-shipping-block {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lpm-border-color);
}
.lpm-shipping-config .lpm-shipping-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.lpm-shipping-block-title {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--lpm-text-dark);
    margin: 0 0 14px 0;
}
.lpm-product-form-woo .lpm-form-row.lpm-columns-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .lpm-product-form-woo .lpm-form-row.lpm-columns-4 {
        grid-template-columns: 1fr;
    }
}

/* Terms & Conditions */
.lpm-terms-section .lpm-terms-intro {
    margin: 0 0 16px 0;
    color: var(--lpm-text-light);
    font-size: 0.95em;
}
.lpm-terms-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.lpm-term-item {
    margin-bottom: 14px;
    padding: 14px 16px;
    background: var(--lpm-bg-light);
    border-radius: 6px;
    border: 1px solid var(--lpm-border-color);
}
.lpm-term-item:last-child {
    margin-bottom: 0;
}
.lpm-term-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}
.lpm-term-label input[type="checkbox"] {
    margin: 3px 0 0 0;
    flex-shrink: 0;
}
.lpm-term-text {
    font-size: 0.95em;
    line-height: 1.5;
    color: var(--lpm-text-dark);
}

/* Video preview */
.lpm-video-upload-actions {
    margin-top: 10px;
}
.lpm-video-preview-wrap {
    margin-top: 14px;
    padding: 14px;
    background: var(--lpm-bg-light);
    border: 1px solid var(--lpm-border-color);
    border-radius: 6px;
}
.lpm-video-preview-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
}
.lpm-video-preview-player {
    max-width: 320px;
    max-height: 180px;
    border-radius: 4px;
    background: #000;
}
.lpm-video-preview-label {
    margin: 0;
    font-size: 0.9em;
    color: var(--lpm-text-dark);
}
.lpm-video-preview-label a {
    word-break: break-all;
}
.lpm-remove-video {
    flex-shrink: 0;
}

/* ===== Seller-Grouped Checkout Styles ===== */
.lpm-checkout-products-summary {
    margin-bottom: 30px;
}

/* Seller Group Container */
.lpm-seller-group {
    margin-bottom: 30px;
    border: 2px solid var(--lpm-border-color);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.lpm-seller-group:hover {
    border-color: var(--lpm-primary);
    box-shadow: var(--lpm-shadow);
}

/* Seller Header */
.lpm-seller-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--lpm-primary-light) 0%, #fff 100%);
    border-bottom: 1px solid var(--lpm-border-color);
}

.lpm-seller-name {
    margin: 0;
    font-size: 1.4em;
    color: var(--lpm-primary);
    font-weight: 700;
}

.lpm-seller-total {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lpm-total-label {
    font-size: 0.9em;
    color: var(--lpm-text-light);
}

.lpm-total-amount {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--lpm-primary);
}

/* Seller Items List */
.lpm-seller-items {
    padding: 15px;
}

.lpm-seller-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    background: #fafafa;
    align-items: center;
    transition: all 0.3s ease;
}

.lpm-seller-item:hover {
    background: #fff;
    border-color: var(--lpm-primary-light);
}

.lpm-seller-item:last-child {
    margin-bottom: 0;
}

/* Item Image */
.lpm-item-image {
    flex-shrink: 0;
}

.lpm-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--lpm-border-color);
}

/* Item Details */
.lpm-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lpm-item-name {
    margin: 0;
    font-size: 1em;
    font-weight: 600;
}

.lpm-item-name a {
    color: var(--lpm-text-dark);
    text-decoration: none;
}

.lpm-item-name a:hover {
    color: var(--lpm-primary);
}

.lpm-item-qty {
    margin: 0;
    font-size: 0.9em;
    color: var(--lpm-text-light);
}

.lpm-item-shipping {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85em;
    color: var(--lpm-text-light);
}

.lpm-shipping-logo {
    width: 25px;
    height: auto;
    object-fit: contain;
}

.lpm-shipping-cost {
    margin-left: auto;
    font-weight: 600;
    color: var(--lpm-primary);
}

.lpm-shipping-free {
    margin-left: auto;
    font-weight: 700;
    color: #28a745;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3px;
}

/* Item Price */
.lpm-item-price {
    flex-shrink: 0;
    text-align: right;
}

.lpm-price-amount {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--lpm-primary);
}

/* Item Actions */
.lpm-item-actions {
    flex-shrink: 0;
}

.lpm-btn-remove-item {
    padding: 8px;
    background: transparent;
    border: 1px solid var(--lpm-border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--lpm-text-light);
}

.lpm-btn-remove-item:hover {
    background: #fee;
    border-color: var(--lpm-danger);
    color: var(--lpm-danger);
}

.lpm-btn-remove-item .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Seller Footer */
.lpm-seller-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #f9f9f9;
    border-top: 1px solid var(--lpm-border-color);
    column-gap:50px;
}

.lpm-seller-breakdown {
    flex: 1;
}

.lpm-breakdown-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.lpm-breakdown-row span:first-child {
    color: var(--lpm-text-light);
}

.lpm-breakdown-row span:last-child {
    font-weight: 600;
    color: var(--lpm-text-dark);
}

.lpm-breakdown-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid var(--lpm-border-color);
    font-size: 1.1em;
}

.lpm-breakdown-total span {
    font-weight: 700;
    color: var(--lpm-primary);
}

/* Seller Checkout Button */
.lpm-btn-seller-checkout {
    padding: 15px 30px;
    background: var(--lpm-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lpm-btn-seller-checkout:hover {
    background: var(--lpm-primary-dark);
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.3);
    transform: translateY(-1px);
}

.lpm-btn-seller-checkout:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.lpm-btn-loading {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lpm-seller-group-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .lpm-seller-total {
        width: 100%;
        justify-content: space-between;
    }

    .lpm-seller-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .lpm-item-image img {
        width: 60px;
        height: 60px;
    }

    .lpm-item-details {
        flex: 1 1 100%;
    }

    .lpm-item-price {
        flex: 0 0 auto;
    }

    .lpm-seller-footer {
        flex-direction: column;
        gap: 15px;
    }

    .lpm-seller-breakdown {
        width: 100%;
    }

    .lpm-btn-seller-checkout {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lpm-seller-group-header {
        padding: 15px;
    }

    .lpm-seller-name {
        font-size: 1.2em;
    }

    .lpm-total-amount {
        font-size: 1.3em;
    }

    .lpm-seller-items {
        padding: 10px;
    }

    .lpm-seller-item {
        padding: 10px;
    }

    .lpm-item-image img {
        width: 50px;
        height: 50px;
    }

    .lpm-seller-footer {
        padding: 15px;
    }
}
