@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   IMPROVED CSS - COMPLETE WITH ALL CLASSES
   ========================================================================== */

/* Main CSS Variables - Human-Friendly Color Scheme */
:root {
    --dp-primary: #0d6e3f;
    --dp-primary-hover: #0a5a33;
    --dp-primary-light: #e8f5ed;
    --dp-success: #10b981;
    --dp-success-bg: #ecfdf5;
    --dp-success-border: #a7f3d0;
    --dp-error: #dc2626;
    --dp-error-bg: #fef2f2;
    --dp-error-border: #fecaca;
    --dp-warning: #f59e0b;
    --dp-warning-bg: #fffbeb;
    --dp-warning-border: #fde68a;
    --dp-dark: #1e293b;
    --dp-dark-muted: #334155;
    --dp-light: #f8fafc;
    --dp-light-muted: #f1f5f9;
    --dp-border: #e2e8f0;
    --dp-border-light: #f1f5f9;
    --dp-text: #334155;
    --dp-text-light: #64748b;
    --dp-text-muted: #94a3b8;
    --dp-font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --dp-radius-sm: 8px;
    --dp-radius: 12px;
    --dp-radius-lg: 16px;
    --dp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.05);
    --dp-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --dp-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --dp-transition: all 0.2s ease;
    --dp-transition-slow: all 0.3s ease;
}


/* Reset / Typography */
.dp-checkout-wrapper,
.dp-dashboard-wrapper,
.dp-buy-button-container,
.dp-single-product-container {
    font-family: var(--dp-font);
    color: var(--dp-text);
    box-sizing: border-box;
}
.dp-checkout-wrapper *,
.dp-dashboard-wrapper *,
.dp-buy-button-container *,
.dp-single-product-container * {
    box-sizing: border-box;
}

/* ==========================================================================
   1. Buy Now Shortcode Styles
   ========================================================================== */
.dp-buy-button-container {
    display: inline-block;
    margin: 10px 0;
    width: 100%;
}
.dp-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    background: linear-gradient(135deg, var(--dp-primary) 0%, #4f46e5 100%);
    color: #ffffff !important;
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
    transition: var(--dp-transition);
    width: 100%;
}
.dp-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(157, 96%, 9%, 0.4);
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
}
.dp-buy-btn-external {
    background: linear-gradient(135deg, var(--dp-success) 0%, #059669 100%);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}
.dp-buy-btn-external:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
.dp-buy-divider {
    width: 1px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 14px;
}
.dp-buy-price {
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   2. Checkout Template Styles
   ========================================================================== */
.dp-checkout-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
    margin: 0 auto;
}
.dp-checkout-card {
    background: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    box-shadow: var(--dp-shadow);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
}
.dp-checkout-card-header {
    background-color: var(--dp-light);
    border-bottom: 1px solid var(--dp-border);
    padding: 30px;
    text-align: center;
}
.dp-checkout-card-header h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-checkout-card-header p {
    margin: 0;
    color: var(--dp-text-light);
    font-size: 14px;
}

/* License Type Selector */
.dp-checkout-license-selector {
    padding: 30px;
    border-bottom: 1px dashed var(--dp-border);
    background-color: #f0f9ff;
}
.dp-license-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dp-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dp-license-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dp-license-option {
    position: relative;
}
.dp-license-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.dp-license-radio:checked + .dp-license-option-label {
    background-color: #ffffff;
    border-color: var(--dp-primary);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}
.dp-license-option-label {
    display: block;
    padding: 16px;
    border: 2px solid var(--dp-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.5);
}
.dp-license-option-label:hover {
    border-color: var(--dp-primary);
    background-color: #ffffff;
}
.dp-license-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.dp-license-option-title {
    font-weight: 700;
    color: var(--dp-dark);
    font-size: 14px;
}
.dp-license-option-price {
    font-weight: 800;
    color: var(--dp-primary);
    font-size: 16px;
}
.dp-license-option-desc {
    font-size: 12px;
    color: var(--dp-text-light);
    line-height: 1.4;
}

@media (max-width: 600px) {
    .dp-checkout-license-selector {
        padding: 20px;
    }
    .dp-license-option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .dp-license-option-price {
        align-self: flex-start;
    }
    .dp-license-option-label {
        padding: 12px;
    }
}

.dp-checkout-summary-section {
    padding: 30px;
    border-bottom: 1px dashed var(--dp-border);
}
.dp-checkout-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.dp-summary-details {
    display: flex;
    align-items: center;
}
.dp-summary-name {
    font-weight: 600;
    color: var(--dp-dark);
    font-size: 16px;
}
.dp-summary-version-badge {
    background-color: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}
.dp-summary-price {
    font-weight: 600;
    color: var(--dp-dark);
    font-size: 16px;
}
.dp-checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--dp-dark);
    padding-top: 15px;
    border-top: 1px solid var(--dp-border);
}
.dp-total-price {
    font-size: 20px;
    color: var(--dp-primary);
}

/* Alert Boxes */
.dp-checkout-alert, .dp-dashboard-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    margin: 20px 30px 0 30px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}
.dp-checkout-alert-error, .dp-dashboard-alert-error {
    background-color: var(--dp-error-bg);
    border: 1px solid var(--dp-error-border);
    color: var(--dp-error);
}
.dp-checkout-alert-info {
    background-color: var(--dp-warning-bg);
    border: 1px solid var(--dp-warning-border);
    color: #b45309;
}
.dp-checkout-alert-info h4 {
    margin: 0 0 5px 0;
    font-weight: 700;
}
.dp-checkout-alert-info p {
    margin: 0;
}
.dp-dashboard-alert-success {
    background-color: var(--dp-success-bg);
    border: 1px solid var(--dp-success-border);
    color: var(--dp-success);
}
.dp-alert-icon {
    flex-shrink: 0;
}

/* Form Styles */
.dp-checkout-form {
    padding: 30px;
}
.dp-form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}
.dp-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dp-dark);
    margin-bottom: 8px;
}
.dp-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.dp-input-wrapper input[type="email"] {
    width: 100%;
    padding: 12px 16px 12px 42px;
    font-family: var(--dp-font);
    font-size: 15px;
    border: 1px solid var(--dp-border);
    border-radius: 8px;
    outline: none;
    transition: var(--dp-transition);
    color: var(--dp-dark);
}
.dp-input-wrapper input[type="email"]:focus {
    border-color: var(--dp-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.dp-input-icon {
    position: absolute;
    left: 14px;
    color: var(--dp-text-light);
    pointer-events: none;
}
.dp-form-hint {
    margin-top: 8px;
    font-size: 12px;
    color: var(--dp-text-light);
    line-height: 1.4;
}

/* Pay Securely Button */
.dp-submit-btn, .dp-dashboard-submit-btn {
    width: 100%;
    background-color: var(--dp-dark);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--dp-font);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--dp-transition);
}
.dp-submit-btn:hover, .dp-dashboard-submit-btn:hover {
    background-color: var(--dp-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.25);
}
.dp-paypal-btn {
    background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
    box-shadow: 0 4px 12px rgba(0, 112, 186, 0.2);
}
.dp-paypal-btn:hover {
    background: linear-gradient(135deg, #007cc3 0%, #004099 100%);
}

/* Payment Method Selector */
.dp-checkout-payment-methods {
    margin-bottom: 30px;
    padding: 0 30px;
}
.dp-payment-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dp-dark);
    margin-bottom: 16px;
}
.dp-payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.dp-payment-option {
    position: relative;
}
.dp-payment-radio {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
}
.dp-payment-option-label {
    display: block;
    padding: 20px;
    border: 2px solid var(--dp-border);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--dp-transition);
    background-color: #ffffff;
    user-select: none;
}
.dp-payment-radio:checked + .dp-payment-option-label {
    border-color: var(--dp-primary);
    background-color: rgba(99, 102, 241, 0.02);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.dp-payment-option:hover .dp-payment-option-label {
    border-color: var(--dp-primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}
.dp-payment-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.dp-payment-option-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dp-dark);
}
.dp-payment-option-desc {
    font-size: 13px;
    color: var(--dp-text-light);
    line-height: 1.4;
}
.dp-monetbil-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7b801 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}
.dp-monetbil-btn:hover {
    background: linear-gradient(135deg, #ff7c4d 0%, #ffc400 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}
.dp-checkout-card-footer {
    background-color: var(--dp-light);
    border-top: 1px solid var(--dp-border);
    padding: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--dp-text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   3. Buyer Dashboard Styles
   ========================================================================== */
.dp-dashboard-wrapper {
    max-width: 100%;
    margin: 30px auto;
    padding: 0 15px;
}
.dp-dashboard-login-card {
    background: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    box-shadow: var(--dp-shadow);
    max-width: 500px;
    margin: 40px auto;
    overflow: hidden;
}
.dp-dashboard-header {
    background-color: var(--dp-light);
    border-bottom: 1px solid var(--dp-border);
    padding: 30px;
    text-align: center;
}
.dp-dashboard-header h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-dashboard-header p {
    margin: 0;
    color: var(--dp-text-light);
    font-size: 14px;
    line-height: 1.5;
}
.dp-dashboard-login-form {
    padding: 30px;
}

/* Panel Layout */
.dp-dashboard-panel {
    background: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    box-shadow: var(--dp-shadow);
    padding: 40px;
}
.dp-dashboard-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--dp-border);
    padding-bottom: 25px;
    margin-bottom: 30px;
}
.dp-dashboard-panel-header h2 {
    margin: 0 0 6px 0;
    font-size: 26px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-logged-info {
    margin: 0;
    font-size: 14px;
    color: var(--dp-text-light);
}
.dp-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    background-color: #f1f5f9;
    color: #475569 !important;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--dp-transition);
}
.dp-logout-btn:hover {
    background-color: #e2e8f0;
    color: var(--dp-dark) !important;
}

/* Empty State */
.dp-empty-state-card {
    text-align: center;
    padding: 60px 20px;
    border: 2px dashed var(--dp-border);
    border-radius: 8px;
}
.dp-empty-icon {
    color: var(--dp-text-light);
    margin-bottom: 15px;
}
.dp-empty-state-card h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-empty-state-card p {
    margin: 0;
    color: var(--dp-text-light);
    font-size: 14px;
}

/* Purchases Cards Grid */
.dp-purchases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 768px) {
    .dp-purchases-grid {
        grid-template-columns: 1fr;
    }
}
.dp-purchase-card {
    border: 1px solid var(--dp-border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--dp-transition);
}
.dp-purchase-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    border-color: #cbd5e1;
}
.dp-card-top {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: var(--dp-light);
    border-bottom: 1px solid var(--dp-border);
}
.dp-card-title {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-card-meta-row {
    font-size: 13px;
}
.dp-meta-label {
    color: var(--dp-text-light);
}
.dp-meta-value {
    font-weight: 500;
    color: var(--dp-text);
}
.dp-card-version-badge {
    background-color: var(--dp-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}
.dp-card-licenses-area {
    padding: 24px;
    flex-grow: 1;
}
.dp-license-row-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.dp-license-row-item:last-child {
    margin-bottom: 0;
}

/* Monospace License Box */
.dp-license-text-field {
    display: flex;
    align-items: center;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px 12px;
    width: 100%;
}
.dp-lic-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--dp-primary);
    letter-spacing: 0.5px;
    margin-right: 12px;
}
.dp-lic-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--dp-dark);
    flex-grow: 1;
    overflow-x: auto;
    white-space: nowrap;
    padding-right: 10px;
}
.dp-copy-btn {
    background: none;
    border: none;
    color: var(--dp-text-light);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--dp-transition);
}
.dp-copy-btn:hover {
    color: var(--dp-primary);
    background-color: #e2e8f0;
}
.dp-copy-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background-color: var(--dp-dark);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transition: var(--dp-transition);
}
.dp-copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--dp-dark);
}
.dp-copy-btn.copied .dp-copy-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Status Pill */
.dp-license-status-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dp-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.dp-status-active {
    background-color: #ecfdf5;
    color: #047857;
}
.dp-status-active .dp-bullet {
    background-color: var(--dp-success);
}
.dp-status-expired, .dp-status-inactive {
    background-color: #fef2f2;
    color: #b91c1c;
}
.dp-status-expired .dp-bullet, .dp-status-inactive .dp-bullet {
    background-color: var(--dp-error);
}
.dp-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.dp-activations-counter {
    font-size: 13px;
    color: var(--dp-text-light);
}

/* Progress bar */
.dp-progressbar-container {
    height: 5px;
    width: 100%;
    background-color: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}
.dp-progressbar {
    height: 100%;
    background-color: var(--dp-primary);
    border-radius: 10px;
    transition: width 0.5s ease-out;
}

/* Downloads Section */
.dp-card-action-area {
    padding: 24px;
    background-color: var(--dp-light);
    border-top: 1px solid var(--dp-border);
}
.dp-download-btn {
    text-decoration: none !important;
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    color: var(--dp-dark) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: var(--dp-transition);
}
.dp-download-btn:hover {
    background-color: var(--dp-dark);
    color: #ffffff !important;
    border-color: var(--dp-dark);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

/* ==========================================================================
   4. Codester-style Single Product Page Styles
   ========================================================================== */
.dp-single-product-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Upper Header banner */
.dp-single-header-card {
    background: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    box-shadow: var(--dp-shadow);
    padding: 30px;
    margin-bottom: 30px;
}
.dp-header-main-info {
    display: flex;
    align-items: center;
    gap: 25px;
}
@media (max-width: 600px) {
    .dp-header-main-info {
        flex-direction: column;
        text-align: center;
    }
}
.dp-single-icon-img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--dp-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    background-color: var(--dp-light);
}
.dp-single-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--dp-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.dp-header-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
@media (max-width: 600px) {
    .dp-header-meta-badges {
        justify-content: center;
    }
}
.dp-badge-ver {
    background-color: var(--dp-light);
    color: var(--dp-text-light);
    border: 1px solid var(--dp-border);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}
.dp-badge-cat {
    background-color: #e0e7ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}
.dp-badge-tag {
    background-color: #fce7f3;
    color: #be185d;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Dual Column Body Grid */
.dp-single-body-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
    align-items: start;
}
@media (max-width: 991px) {
    .dp-single-body-grid {
        grid-template-columns: 1fr;
    }
}

/* Content Boxes (Section Box) */
.dp-section-box {
    background: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    box-shadow: var(--dp-shadow);
    padding: 35px;
    margin-bottom: 30px;
}
.dp-section-heading {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--dp-dark);
    border-bottom: 1.5px solid var(--dp-border);
    padding-bottom: 12px;
}
.dp-rich-description-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dp-text);
}
.dp-rich-description-content p {
    margin: 0 0 15px 0;
}
.dp-rich-description-content p:last-child {
    margin-bottom: 0;
}

/* Screenshots Showcase Gallery */
.dp-gallery-card {
    background: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    box-shadow: var(--dp-shadow);
    padding: 24px;
    margin-bottom: 30px;
}
.dp-gallery-main-view {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--dp-border);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .dp-gallery-main-view {
        height: 240px;
    }
}
.dp-gallery-main-view img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.dp-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.dp-gallery-thumb-item {
    width: 88px;
    height: 58px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--dp-transition);
    flex-shrink: 0;
    opacity: 0.65;
}
.dp-gallery-thumb-item:hover, .dp-gallery-thumb-item.active {
    opacity: 1;
    border-color: var(--dp-primary);
    transform: scale(1.02);
}

/* System Requirements */
.dp-requirements-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dp-req-line-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dp-req-tick {
    color: var(--dp-success);
    flex-shrink: 0;
}
.dp-req-line-item code {
    font-family: Consolas, Monaco, monospace;
    font-size: 14px;
    color: var(--dp-dark);
    background-color: var(--dp-light);
    border: 1px solid var(--dp-border);
    padding: 6px 12px;
    border-radius: 6px;
    width: 100%;
}

/* Installation Block */
.dp-installation-block {
    background-color: var(--dp-light);
    border: 1px solid var(--dp-border);
    border-radius: 8px;
    padding: 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dp-text);
}

/* ==========================================================================
   5. Sidebar Cards (Sticky Widgets)
   ========================================================================== */
.dp-sidebar-card {
    background: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    box-shadow: var(--dp-shadow);
    padding: 25px;
    margin-bottom: 30px;
}
.dp-sidebar-card:last-child {
    margin-bottom: 0;
}
.dp-sidebar-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--dp-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1.5px solid var(--dp-border);
    padding-bottom: 8px;
}

/* Pricing Card */
.dp-pricing-card {
    border-top: 4px solid var(--dp-primary);
}
.dp-pricing-header {
    text-align: center;
    margin-bottom: 20px;
}
.dp-price-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--dp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dp-price-amount {
    margin: 4px 0 0 0;
    font-size: 38px;
    font-weight: 800;
    color: var(--dp-dark);
    line-height: 1;
}
.dp-buy-button-wrapper {
    margin-bottom: 20px;
}
.dp-license-features-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dp-license-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--dp-text);
}
.dp-license-features-list li svg {
    color: var(--dp-success);
    flex-shrink: 0;
}

/* Tech Specs table */
.dp-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}
.dp-specs-table td {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--dp-border);
}
.dp-specs-table tr:last-child td {
    border-bottom: none;
}
.dp-specs-table td:first-child {
    color: var(--dp-text-light);
}
.dp-specs-table td:last-child {
    text-align: right;
    color: var(--dp-dark);
}

/* Live Demo Link Button */
.dp-demo-preview-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    background-color: #f1f5f9;
    color: #475569 !important;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--dp-border);
    transition: var(--dp-transition);
    width: 100%;
}
.dp-demo-preview-btn:hover {
    background-color: var(--dp-dark);
    color: #ffffff !important;
    border-color: var(--dp-dark);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

/* Developer Vendor Card */
.dp-dev-identity-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}
.dp-dev-avatar-monogram {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--dp-primary) 0%, #4f46e5 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(99,102,241,0.2);
}
.dp-dev-by {
    font-size: 9px;
    font-weight: 700;
    color: var(--dp-text-light);
    letter-spacing: 0.8px;
    display: block;
}
.dp-dev-fullname {
    margin: 2px 0 0 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-dev-buttons-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.dp-dev-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    background-color: #ffffff;
    color: var(--dp-text) !important;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--dp-border);
    border-radius: 6px;
    transition: var(--dp-transition);
}
.dp-dev-link-btn:hover {
    background-color: #f1f5f9;
    border-color: var(--dp-primary);
    color: var(--dp-primary) !important;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}
.dp-support-btn {
    background-color: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857 !important;
}
.dp-support-btn:hover {
    background-color: #a7f3d0;
    border-color: #10b981;
    color: #047857 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

/* ==========================================================================
   6. Single Product Tabs, Reviews, Q&A, FAQs
   ========================================================================== */
.dp-product-tabs-bar {
    display: flex;
    gap: 10px;
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 0 10px;
    margin-bottom: 25px;
    box-shadow: var(--dp-shadow);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.dp-product-tabs-bar::-webkit-scrollbar {
    display: none;
}
.dp-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: var(--dp-text-light);
    cursor: pointer;
    transition: var(--dp-transition);
}
.dp-tab-btn:hover {
    color: #10b981;
    border-bottom-color: rgba(16, 185, 129, 0.3);
}
.dp-tab-btn.active {
    color: #10b981;
    border-bottom-color: #10b981;
}
.dp-tab-panel {
    display: none;
    animation: dpFadeIn 0.3s ease;
}
.dp-tab-panel.active {
    display: block;
}
@keyframes dpFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Star Rating Visuals */
.dp-rating-stars-row {
    display: inline-flex;
    gap: 3px;
    color: #e2e8f0;
}
.dp-rating-stars-row svg {
    fill: currentColor;
}
.dp-rating-stars-row.filled {
    color: #f59e0b;
}

/* Reviews Summary Card */
.dp-reviews-summary-card {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--dp-shadow);
}
@media (max-width: 600px) {
    .dp-reviews-summary-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
.dp-reviews-avg-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--dp-dark);
    line-height: 1;
}
.dp-reviews-avg-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Interactive Star Rating Form */
.dp-interactive-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}
.dp-star-clickable {
    cursor: pointer;
    color: #cbd5e1;
    transition: var(--dp-transition);
}
.dp-star-clickable:hover, .dp-star-clickable.active {
    color: #f59e0b;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

/* Review / Q&A Cards */
.dp-feedback-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.dp-feedback-card {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 20px;
    box-shadow: var(--dp-shadow);
    position: relative;
}
.dp-feedback-card.dp-reply-card {
    margin-left: 50px;
    border-left: 3px solid #10b981;
    background-color: #f8fafc;
}
@media (max-width: 480px) {
    .dp-feedback-card.dp-reply-card {
        margin-left: 20px;
    }
}
.dp-feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.dp-feedback-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dp-feedback-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: var(--dp-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.dp-feedback-card.dp-reply-card .dp-feedback-avatar {
    background-color: #10b981;
    color: #ffffff;
}
.dp-feedback-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dp-dark);
    margin: 0;
}
.dp-feedback-role-badge {
    font-size: 9px;
    font-weight: 800;
    background-color: #ecfdf5;
    color: #047857;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}
.dp-feedback-date {
    font-size: 12px;
    color: var(--dp-text-light);
}
.dp-feedback-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dp-text);
    margin: 0 0 12px 0;
}
.dp-feedback-actions {
    display: flex;
    gap: 15px;
}
.dp-feedback-action-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    color: var(--dp-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.dp-feedback-action-btn:hover {
    text-decoration: underline;
}

/* Feedback Form Styles */
.dp-feedback-form-box {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 24px;
    box-shadow: var(--dp-shadow);
}
.dp-feedback-form-box h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dp-dark);
}

/* FAQ Accordion Styles */
.dp-accordion-item {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--dp-shadow);
}
.dp-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: var(--dp-dark);
    transition: var(--dp-transition);
}
.dp-accordion-trigger:hover {
    background-color: var(--dp-light);
}
.dp-accordion-trigger svg {
    color: var(--dp-text-light);
    transition: transform 0.2s ease;
}
.dp-accordion-item.active .dp-accordion-trigger svg {
    transform: rotate(180deg);
}
.dp-accordion-panel {
    display: none;
    padding: 0 24px 20px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dp-text);
    border-top: 1px solid transparent;
}
.dp-accordion-item.active .dp-accordion-panel {
    display: block;
    border-top-color: #f1f5f9;
}

@media (max-width: 991px) {
    .dp-single-product-container {
        margin: 20px auto !important;
        padding: 0 15px !important;
    }
    .dp-single-body-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .dp-single-sidebar-col {
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .dp-product-tabs-bar {
        overflow-x: auto !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        display: flex !important;
        gap: 5px !important;
        padding: 0 5px !important;
    }
    .dp-tab-btn {
        flex-shrink: 0 !important;
        padding: 14px 18px !important;
        font-size: 13px !important;
    }
    .dp-single-header-card {
        padding: 20px !important;
    }
    .dp-section-box {
        padding: 22px !important;
    }
    .dp-gallery-main-view {
        height: 260px !important;
    }
}

/* ==========================================================================
   7. Storefront / White-Label Styles
   ========================================================================== */

/* Header Monogram Account Dropdown */
.dp-avatar-dropdown-container {
    position: relative;
    display: inline-block;
}
.dp-header-user-avatar-trigger {
    border: none;
    outline: none;
    padding: 0;
    font-family: inherit;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}
.dp-avatar-dropdown-menu-card {
    position: absolute;
    right: 0;
    top: 42px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    width: 180px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    padding: 8px;
    box-sizing: border-box;
}
.dp-avatar-dropdown-item {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    transition: all 0.2s ease;
}
.dp-avatar-dropdown-item:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}
.dp-avatar-dropdown-item.dp-logout {
    color: #ef4444;
}
.dp-avatar-dropdown-item.dp-logout:hover {
    background-color: #fef2f2;
    color: #dc2626;
}
.dp-avatar-dropdown-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin: 4px 0;
}

/* Mobile Toggle Hamburger */
.dp-mobile-menu-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #cbd5e1;
    display: none;
    align-items: center;
    padding: 4px;
    outline: none;
    transition: color 0.2s ease;
}
.dp-mobile-menu-toggle-btn:hover {
    color: #ffffff;
}

/* Mobile Slide Drawer */
.dp-mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999;
    box-sizing: border-box;
    animation: dpFadeIn 0.2s ease;
}
.dp-mobile-drawer-body {
    background-color: #0f172a;
    padding: 25px;
    border-bottom: 1.5px solid #1e293b;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    max-height: 80vh;
    overflow-y: auto;
    animation: dpDrawerBodySlide 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes dpDrawerBodySlide {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.dp-mobile-drawer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.dp-mobile-drawer-menu-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}
.dp-mobile-drawer-menu-link:hover {
    color: #ffffff;
}
.dp-mobile-drawer-menu-link.active {
    color: #10b981;
}
.dp-mobile-drawer-divider {
    height: 1px;
    background-color: #1e293b;
    margin: 5px 0;
}
.dp-mobile-drawer-user-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dp-mobile-drawer-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dp-mobile-drawer-avatar-letter {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}
.dp-mobile-drawer-user-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}
.dp-mobile-drawer-user-email {
    color: #64748b;
    font-size: 11px;
}
.dp-mobile-drawer-btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 5px;
}
.dp-mobile-drawer-settings-btn {
    text-align: center;
    text-decoration: none;
    background-color: #1e293b;
    color: #ffffff;
    border: 1px solid #334155;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}
.dp-mobile-drawer-settings-btn:hover {
    background-color: #334155;
}
.dp-mobile-drawer-logout-btn {
    text-align: center;
    text-decoration: none;
    background-color: #7f1d1d;
    color: #fca5a5;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}
.dp-mobile-drawer-logout-btn:hover {
    background-color: #991b1b;
}
.dp-mobile-drawer-signin-btn {
    text-align: center;
    text-decoration: none;
    background-color: #10b981;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    transition: background-color 0.2s ease;
}
.dp-mobile-drawer-signin-btn:hover {
    background-color: #059669;
}

/* User Account Profile Dashboard */
.dp-profile-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.dp-profile-identity-card {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--dp-shadow);
    text-align: center;
}
.dp-profile-large-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
}
.dp-profile-identity-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--dp-dark);
}
.dp-profile-identity-subtitle {
    margin: 3px 0 15px 0;
    font-size: 13px;
    color: var(--dp-text-light);
}
.dp-profile-role-container {
    margin-bottom: 20px;
}
.dp-profile-role-badge {
    font-size: 11px;
    font-weight: 800;
    background-color: #f1f5f9;
    color: #475569;
    padding: 5px 12px;
    border-radius: 15px;
    text-transform: uppercase;
}
.dp-profile-edit-settings-trigger {
    width: 100%;
    border: none;
    background-color: #10b981;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.15);
    outline: none;
}
.dp-profile-edit-settings-trigger:hover {
    background-color: #059669;
}
.dp-profile-completion-card {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: 12px;
    padding: 22px;
    box-shadow: var(--dp-shadow);
}
.dp-profile-completion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.dp-profile-completion-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--dp-dark);
}
.dp-profile-completion-pct {
    font-size: 13px;
    font-weight: 800;
    color: #10b981;
}
.dp-profile-progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}
.dp-profile-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
    transition: width 0.3s ease;
}
.dp-profile-completion-hint {
    margin: 0;
    font-size: 12px;
    color: var(--dp-text-light);
    line-height: 1.5;
}
.dp-profile-completion-success {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-size: 12px;
    font-weight: 700;
}

/* Timeline Activity */
.dp-profile-timeline-card {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--dp-shadow);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.dp-profile-timeline-header {
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid #e2e8f0;
    padding-bottom: 15px;
}
.dp-profile-timeline-title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--dp-dark);
}
.dp-profile-timeline-count {
    font-size: 11px;
    font-weight: 800;
    background-color: #eff6ff;
    color: #3b82f6;
    padding: 4px 10px;
    border-radius: 12px;
}
.dp-profile-timeline-empty {
    text-align: center;
    padding: 50px 20px;
    color: var(--dp-text-light);
}
.dp-profile-timeline-empty svg {
    margin-bottom: 15px;
}
.dp-profile-timeline-empty h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-profile-timeline-empty p {
    margin: 0;
    font-size: 13px;
}
.dp-profile-timeline-list-wrap {
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
    box-sizing: border-box;
}
.dp-profile-timeline-line {
    position: absolute;
    left: 10px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: #f1f5f9;
}
.dp-profile-timeline-item {
    position: relative;
    margin-bottom: 25px;
    box-sizing: border-box;
}
.dp-profile-timeline-node {
    position: absolute;
    left: -30px;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.dp-profile-timeline-details-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dp-profile-timeline-details-card:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
}
.dp-profile-timeline-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 8px;
}
.dp-profile-timeline-item-title {
    font-weight: 750;
    font-size: 13.5px;
    color: var(--dp-dark);
}
.dp-profile-timeline-item-link {
    color: var(--dp-dark);
    text-decoration: none;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 1px;
    transition: all 0.2s ease;
}
.dp-profile-timeline-item-link:hover {
    color: #10b981;
    border-bottom-color: #10b981;
}
.dp-profile-timeline-item-date {
    font-size: 11.5px;
    color: var(--dp-text-light);
}
.dp-profile-timeline-item-desc {
    margin: 0;
    font-size: 12.5px;
    color: #475569;
    line-height: 1.45;
}

/* Edit Settings Modal Form */
.dp-profile-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    transition: color 0.2s ease;
    outline: none;
}
.dp-profile-modal-close:hover {
    color: #0f172a;
}
.dp-profile-modal-title {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--dp-dark);
}
.dp-profile-modal-subtitle {
    margin: 0 0 25px 0;
    font-size: 13px;
    color: var(--dp-text-light);
}
.dp-profile-modal-alert {
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.dp-profile-modal-alert-error {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}
.dp-profile-modal-alert-success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}
.dp-profile-modal-section-title {
    margin: 0 0 15px 0;
    font-size: 13px;
    font-weight: 800;
    color: var(--dp-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 6px;
}
.dp-profile-modal-label {
    display: block;
    font-weight: 700;
    font-size: 11px;
    color: var(--dp-text-light);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.dp-profile-modal-input-field {
    width: 100%;
    border: 1px solid var(--dp-border);
    border-radius: 8px;
    padding: 11px;
    font-family: inherit;
    font-size: 13.5px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
}
.dp-profile-modal-input-field:focus {
    border-color: #10b981;
}
.dp-profile-modal-btn-cancel {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.dp-profile-modal-btn-cancel:hover {
    background-color: #f1f5f9;
}
.dp-profile-modal-btn-save {
    border: none;
    background-color: #10b981;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.dp-profile-modal-btn-save:hover {
    background-color: #059669;
}

/* Chat / Inbox */
.dp-messages-sidebar-title-header {
    padding: 20px;
    border-bottom: 1px solid var(--dp-border);
}
.dp-messages-sidebar-title-text {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--dp-dark);
}
.dp-messages-pane-header {
    padding: 20px;
    border-bottom: 1px solid var(--dp-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
}
.dp-messages-pane-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dp-messages-status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}
.dp-messages-channel-title {
    font-size: 14px;
    color: var(--dp-dark);
}
.dp-messages-bubble-item {
    display: flex;
    flex-direction: column;
    max-width: 70%;
}
.dp-messages-bubble-item.me {
    margin-left: auto;
    margin-right: 0;
    align-items: flex-end;
}
.dp-messages-bubble-item.other {
    margin-left: 0;
    margin-right: auto;
    align-items: flex-start;
}
.dp-messages-bubble-content {
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    word-break: break-word;
}
.dp-messages-bubble-item.me .dp-messages-bubble-content {
    background-color: #10b981;
    color: #ffffff;
    border-bottom-right-radius: 2px;
    border: 1px solid #10b981;
}
.dp-messages-bubble-item.other .dp-messages-bubble-content {
    background-color: #ffffff;
    color: var(--dp-dark);
    border-bottom-left-radius: 2px;
    border: 1px solid var(--dp-border);
}
.dp-messages-bubble-date {
    font-size: 9.5px;
    color: var(--dp-text-light);
    margin-top: 4px;
    font-weight: 700;
}

/* System Alerts */
.dp-system-notify-card {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-left: 4px solid #10b981;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.dp-system-notify-icon {
    color: #10b981;
    margin-top: 2px;
}
.dp-system-notify-text {
    margin: 0 0 5px 0;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dp-dark);
    line-height: 1.45;
    word-break: break-word;
}
.dp-system-notify-date {
    font-size: 10px;
    color: var(--dp-text-light);
    font-weight: 700;
}

/* Chat Input Bar */
.dp-messages-chat-form {
    border-top: 1px solid var(--dp-border);
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: #ffffff;
}
.dp-messages-input {
    flex-grow: 1;
    border: 1px solid var(--dp-border);
    border-radius: 8px;
    padding: 11px 15px;
    font-family: inherit;
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}
.dp-messages-input:focus {
    border-color: #10b981;
}
.dp-messages-submit-btn {
    background-color: #10b981;
    border: none;
    border-radius: 8px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}
.dp-messages-submit-btn:hover {
    background-color: #059669;
}
.dp-messages-submit-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: none;
}

/* Shop Hero Banner */
.dp-shop-homepage-wrap {
    background-color: #f8fafc;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
}
.dp-store-hero-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    border-bottom: 1px solid #334155;
    position: relative;
    overflow: hidden;
}
.dp-store-hero-glow-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, rgba(0,0,0,0) 70%);
    top: -150px;
    left: -100px;
    pointer-events: none;
}
.dp-store-hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, rgba(0,0,0,0) 70%);
    bottom: -150px;
    right: -100px;
    pointer-events: none;
}
.dp-store-hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.dp-store-hero-badge {
    background-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}
.dp-store-hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -1.5px;
    margin: 0 0 15px 0;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.35);
}
.dp-store-hero-desc {
    font-size: 17px;
    color: #94a3b8;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto 35px auto;
    line-height: 1.65;
}
.dp-store-hero-btn-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.dp-store-hero-breadcrumb-btn {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background-color: rgba(255,255,255,0.08);
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.2s ease;
}
.dp-store-hero-breadcrumb-btn:hover {
    background-color: rgba(255,255,255,0.15);
}
.dp-store-content-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}
.dp-catalog-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--dp-border);
    padding-bottom: 15px;
}
.dp-catalog-header-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--dp-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    letter-spacing: -0.5px;
}
.dp-catalog-header-badge {
    font-size: 13px;
    font-weight: 700;
    color: var(--dp-text-light);
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    padding: 6px 12px;
    border-radius: 6px;
}
.dp-catalog-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.dp-catalog-card {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--dp-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
    position: relative;
}
.dp-catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.dp-catalog-card-image-wrap {
    display: block;
    width: 100%;
    height: 170px;
    background-color: #f1f5f9;
    position: relative;
    overflow: hidden;
}
.dp-catalog-card-image-wrap img.wp-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.dp-catalog-card-image-wrap img:hover {
    transform: scale(1.05);
}
.dp-catalog-card-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
    font-weight: 700;
    font-size: 16px;
}
img.dp-catalog-card-icon-overlay {
    width: 46px !important;
    height: 46px !important;
    border-radius: 10px;
    position: absolute;
    bottom: 12px;
    left: 12px;
    border: 2.5px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    object-fit: cover;
    background: #ffffff;
}
.dp-catalog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.dp-catalog-card-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dp-catalog-card-category-link {
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    background-color: #ecfdf5;
    color: #047857;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}
.dp-catalog-card-category-link:hover {
    background-color: #d1fae5;
}
.dp-catalog-card-category-badge {
    font-size: 11px;
    font-weight: 800;
    background-color: #ecfdf5;
    color: #047857;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}
.dp-catalog-card-rating-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
}
.dp-catalog-card-rating-star {
    font-size: 12px;
    color: #fbbf24;
}
.dp-catalog-card-rating-number {
    font-weight: 800;
    color: #b45309;
}
.dp-catalog-card-title-wrap {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dp-catalog-card-title-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    object-fit: contain;
}
.dp-catalog-card-title-link {
    text-decoration: none;
    color: var(--dp-dark);
    transition: color 0.2s ease;
}
.dp-catalog-card-title-link:hover {
    color: #10b981;
}
.dp-catalog-card-specs-row {
    display: flex;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-top: auto;
    align-items: center;
    font-size: 12px;
    color: var(--dp-text-light);
}
.dp-catalog-card-spec-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.dp-catalog-card-spec-item svg {
    stroke: #64748b;
    transition: transform 0.2s ease;
}
.dp-catalog-card-spec-item:hover {
    background-color: #f1f5f9;
    color: var(--dp-primary);
    border-color: #cbd5e1;
}
.dp-catalog-card-spec-item:hover svg {
    stroke: var(--dp-primary);
    transform: scale(1.15);
}
.dp-catalog-card-spec-value-right {
    margin-left: auto;
    font-weight: 700;
    font-size: 11px;
    color: var(--dp-primary);
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: lowercase;
}
.dp-catalog-card-pricing-footer {
    background-color: var(--dp-light);
    border-top: 1px solid var(--dp-border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dp-pagination-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}
.dp-catalog-empty-container {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 60px 20px;
    text-align: center;
    color: var(--dp-text-light);
}
.dp-catalog-empty-icon {
    margin-bottom: 15px;
    color: #cbd5e1;
}
.dp-catalog-empty-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-catalog-empty-desc {
    margin: 0;
    font-size: 14px;
}

/* Single Product Detail */
.dp-single-product-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Outfit', sans-serif;
}
.dp-single-product-header-card {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--dp-shadow);
}
.dp-single-product-header-main-info {
    display: flex;
    align-items: center;
    gap: 24px;
}
.dp-single-product-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid var(--dp-border);
}
.dp-single-product-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 800;
    color: var(--dp-dark);
    letter-spacing: -0.5px;
}
.dp-single-product-header-meta-badges {
    display: flex;
    gap: 10px;
    align-items: center;
}
.dp-single-product-badge-ver {
    background-color: #f1f5f9;
    color: var(--dp-text-light);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}
.dp-single-product-badge-cat {
    text-decoration: none;
    background-color: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.dp-single-product-badge-cat:hover {
    background-color: #bae6fd;
}
.dp-single-product-badge-tag {
    text-decoration: none;
    background-color: #f0fdf4;
    color: #16a34a;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #bbf7d0;
    transition: all 0.2s ease;
}
.dp-single-product-badge-tag:hover {
    background-color: #dcfce7;
}
.dp-single-product-rating-stars-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
}
.dp-single-product-rating-stars-row {
    color: #f59e0b;
    display: flex;
    gap: 2px;
}
.dp-single-product-rating-number {
    font-size: 13px;
    color: var(--dp-dark);
}
.dp-single-product-main-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Chat / Messages Container */
.dp-messages-container {
    max-width: 98%;
    margin: 40px auto;
    font-family: 'Outfit', sans-serif;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    height: 600px;
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: 12px;
    box-shadow: var(--dp-shadow);
    overflow: hidden;
    box-sizing: border-box;
}
.dp-messages-sidebar {
    border-right: 1px solid var(--dp-border);
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}
.dp-messages-sidebar-channels {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 15px 10px;
    gap: 8px;
    box-sizing: border-box;
}
.dp-chat-history {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #fafbfc;
    box-sizing: border-box;
}
.dp-messages-sidebar-channel-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--dp-text-light) !important;
    transition: all 0.2s ease;
    box-sizing: border-box;
    border: 1px solid transparent;
}
.dp-messages-sidebar-channel-link:hover {
    color: #10b981 !important;
    background-color: #ffffff;
    border-color: var(--dp-border);
}
.dp-messages-sidebar-channel-link.active {
    background-color: #ffffff;
    color: #10b981 !important;
    border: 1px solid var(--dp-border);
    box-shadow: var(--dp-shadow);
}
.dp-messages-unread-badge {
    background-color: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
}
.dp-messages-chat-pane {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
    overflow: hidden;
}
@media (max-width: 768px) {
    .dp-messages-container {
        grid-template-columns: 1fr !important;
        height: auto !important;
        min-height: 520px;
        margin: 20px 10px !important;
    }
    .dp-messages-sidebar {
        border-right: none !important;
        border-bottom: 1px solid var(--dp-border) !important;
        height: auto !important;
    }
    .dp-messages-sidebar-channels {
        flex-direction: row !important;
        overflow-x: auto;
        padding: 10px !important;
        gap: 10px !important;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .dp-messages-sidebar-channels a {
        flex-shrink: 0;
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
    .dp-chat-history {
        height: 360px !important;
        padding: 15px !important;
    }
    .dp-messages-sidebar-header {
        padding: 15px 15px 5px 15px !important;
    }
    .dp-message-bubble {
        max-width: 85% !important;
    }
}

/* Additional Single Product Classes */
.dp-req-code {
    font-family: Consolas, monospace;
    font-size: 13px;
    background-color: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--dp-dark);
}
.dp-rating-stars-row.dp-single-product-rating-stars-row-lg {
    color: #f59e0b;
    display: flex;
    gap: 3px;
    font-size: 20px;
}
.dp-single-product-rating-count-lg {
    font-size: 14px;
    color: var(--dp-text-light);
    font-weight: 600;
}
.dp-feedback-card-empty {
    text-align: center;
    padding: 40px;
    color: var(--dp-text-light);
}
.dp-feedback-card-empty-text {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}
.dp-form-group-mb {
    margin-bottom: 15px;
}
.dp-form-group-label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--dp-text-light);
}
.dp-form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.dp-form-group-input {
    width: 100%;
    border: 1px solid var(--dp-border);
    border-radius: 6px;
    padding: 10px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
}
.dp-form-group-input:focus {
    border-color: #10b981;
}
.dp-form-group-textarea {
    width: 100%;
    border: 1px solid var(--dp-border);
    border-radius: 6px;
    padding: 12px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    resize: vertical;
    transition: border-color 0.2s ease;
}
.dp-form-group-textarea:focus {
    border-color: #10b981;
}
.dp-submit-btn-success {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #10b981;
    font-weight: 700;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    transition: var(--dp-transition);
    font-size: 14px;
}
.dp-submit-btn-success:hover {
    background-color: #059669;
}
.dp-submit-btn-dark {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dp-dark);
    font-weight: 700;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    transition: var(--dp-transition);
    font-size: 14px;
}
.dp-submit-btn-dark:hover {
    opacity: 0.9;
}
.dp-support-reply-indicator {
    display: none;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 6px;
    padding: 10px;
    font-size: 13px;
    color: #047857;
    margin-bottom: 15px;
    align-items: center;
    justify-content: space-between;
}
.dp-support-reply-cancel-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #b91c1c;
    font-weight: 700;
    font-size: 14px;
}
.dp-price-license-details-link {
    display: block;
    font-size: 11px;
    color: var(--dp-primary);
    font-weight: 700;
    text-decoration: none;
    margin-top: 3px;
    transition: all 0.2s ease;
}
.dp-price-license-details-link:hover {
    color: var(--dp-primary-hover);
    text-decoration: underline;
}
.dp-accepted-payments-wrap {
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    margin-top: 15px;
    text-align: center;
}
.dp-accepted-payments-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--dp-text-light);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.dp-accepted-payments-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.dp-accepted-payment-badge {
    font-size: 10px;
    font-weight: 700;
    background-color: #f1f5f9;
    color: #475569;
    padding: 3px 6px;
    border-radius: 4px;
}

/* Storefront Header */
.dp-header-left-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}
.dp-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.dp-header-logo-img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
}
.dp-header-favicon-img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

/* Hero Search */
.dp-hero-search-wrap {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    max-width: 700px;
    margin: 0 auto 25px auto;
    overflow: hidden;
    align-items: center;
    box-sizing: border-box;
}
.dp-hero-search-select {
    border: none;
    background: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    padding: 12px 18px;
    outline: none;
    border-right: 1px solid #e2e8f0;
    cursor: pointer;
    max-width: 160px;
    -webkit-appearance: none;
}
.dp-hero-search-input {
    border: none;
    background: none;
    outline: none;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 14px;
    color: #1e293b;
    width: 100%;
}
.dp-hero-search-btn {
    background-color: #10b981;
    border: none;
    border-radius: 8px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}
.dp-hero-search-btn:hover {
    background-color: #059669;
}
.dp-store-hero-primary-btn {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #10b981;
    background-color: rgba(16,185,129,0.08);
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid rgba(16,185,129,0.15);
    transition: all 0.2s ease;
    display: inline-block;
}
.dp-store-hero-primary-btn:hover {
    background-color: rgba(16,185,129,0.15);
}

/* Popular Products */
.dp-store-popular-section {
    max-width: 1200px;
    margin: 60px auto 40px auto;
    padding: 0 20px;
}
.dp-popular-section-header {
    border-bottom: 1px solid var(--dp-border);
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.dp-popular-section-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--dp-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    letter-spacing: -0.5px;
}
.dp-popular-section-star {
    color: #f59e0b;
}
.dp-popular-section-subtitle {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: var(--dp-text-light);
}
.dp-popular-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 640px) {
    .dp-popular-grid { grid-template-columns: 1fr; gap: 14px; }
}
.dp-popular-card {
    background: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--dp-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.2s ease;
    position: relative;
}
.dp-popular-card:hover {
    transform: translateY(-6px);
    border-color: #10b981;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}
.dp-popular-card-visual {
    position: relative;
    height: 130px;
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--dp-border);
}
.dp-popular-card-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.3px;
    z-index: 2;
}
.dp-popular-card-rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #b45309;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}
.dp-popular-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    object-fit: cover;
    border: 2.5px solid #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}
.dp-popular-card-body {
    padding: 14px 16px 10px;
    flex-grow: 1;
    min-width: 0;
}
.dp-popular-card-category {
    font-size: 10px;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}
.dp-popular-card-title {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dp-popular-card-link {
    text-decoration: none;
    color: var(--dp-dark);
    transition: color 0.2s ease;
}
.dp-popular-card-link:hover {
    color: #10b981;
}
.dp-popular-card-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}
.dp-popular-card-star {
    color: #f59e0b;
    font-size: 11px;
}
.dp-popular-card-rating-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--dp-text-light);
}
.dp-popular-card-actions {
    padding: 0 14px 14px;
}
.dp-popular-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--dp-text-light);
    padding: 20px;
}

/* Features Block */
.dp-store-features-section {
    background-color: #ffffff;
    border-top: 1px solid var(--dp-border);
    border-bottom: 1px solid var(--dp-border);
    padding: 70px 20px;
    margin: 50px 0;
}
.dp-store-features-container {
    max-width: 1200px;
    margin: 0 auto;
}
.dp-features-header {
    text-align: center;
    margin-bottom: 50px;
}
.dp-features-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--dp-dark);
    letter-spacing: -0.5px;
    margin: 0 0 10px 0;
}
.dp-features-subtitle {
    margin: 0 auto;
    font-size: 15px;
    color: var(--dp-text-light);
    max-width: 600px;
}
.dp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.dp-feature-card {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1px solid var(--dp-border);
}
.dp-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.dp-feature-icon-green {
    background-color: #ecfdf5;
    color: #10b981;
}
.dp-feature-icon-blue {
    background-color: #eff6ff;
    color: #3b82f6;
}
.dp-feature-icon-purple {
    background-color: #faf5ff;
    color: #a855f7;
}
.dp-feature-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 10px 0;
}
.dp-feature-card-text {
    font-size: 14px;
    color: var(--dp-text-light);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .dp-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dp-store-hero-banner {
        padding: 60px 15px;
    }
    .dp-store-hero-title {
        font-size: 32px;
    }
    .dp-store-hero-desc {
        font-size: 15px;
        margin-bottom: 25px;
    }
}
@media (max-width: 768px) {
    .dp-store-content-container {
        margin: 25px auto;
        padding: 0 15px;
    }
    .dp-popular-section-header {
        margin-bottom: 20px;
    }
    .dp-store-popular-section {
        margin: 40px auto 20px auto;
    }
}
@media (max-width: 600px) {
    .dp-hero-search-wrap {
        flex-direction: column;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: 10px;
        max-width: 100%;
    }
    .dp-hero-search-select {
        width: 100%;
        max-width: none;
        background-color: #ffffff;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        padding: 14px;
        border-right: 1px solid #cbd5e1;
    }
    .dp-hero-search-input {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        padding: 14px;
        box-sizing: border-box;
    }
    .dp-hero-search-btn {
        width: 100%;
        height: 48px;
        border-radius: 8px;
    }
    .dp-store-hero-btn-row {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        padding: 0 15px;
    }
    .dp-store-hero-breadcrumb-btn,
    .dp-store-hero-primary-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}
@media (max-width: 480px) {
    .dp-popular-card-visual {
        height: 110px;
    }
    .dp-popular-card-icon {
        width: 56px;
        height: 56px;
    }
}

/* ==========================================================================
   8. Modals & Lightbox
   ========================================================================== */
.dp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dp-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.dp-modal-content {
    background: #ffffff;
    border-radius: var(--dp-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 600px;
    width: 90%;
    padding: 30px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dp-modal-overlay.active .dp-modal-content {
    transform: scale(1);
}
.dp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--dp-border);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.dp-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 600;
    color: var(--dp-text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: var(--dp-transition);
}
.dp-modal-close-btn:hover {
    color: var(--dp-error);
}
.dp-modal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--dp-border);
}
.dp-modal-btn-close {
    background-color: #f1f5f9;
    color: #475569;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--dp-transition);
}
.dp-modal-btn-close:hover {
    background-color: #e2e8f0;
}
.dp-license-comparison-table th,
.dp-license-comparison-table td {
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

/* Lightbox */
#dp-gallery-lightbox {
    background-color: rgba(15, 23, 42, 0.9);
}
.dp-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dp-modal-overlay.active .dp-lightbox-content {
    transform: scale(1);
}
.dp-lightbox-image-wrapper {
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
#dp-lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
}
.dp-lightbox-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--dp-transition);
}
.dp-lightbox-close-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}
.dp-lightbox-prev-btn,
.dp-lightbox-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--dp-transition);
    z-index: 1000;
}
.dp-lightbox-prev-btn:hover,
.dp-lightbox-next-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}
.dp-lightbox-prev-btn {
    left: -70px;
}
.dp-lightbox-next-btn {
    right: -70px;
}
@media (max-width: 900px) {
    .dp-lightbox-prev-btn { left: -60px; }
    .dp-lightbox-next-btn { right: -60px; }
}
@media (max-width: 768px) {
    .dp-lightbox-prev-btn { left: 10px; }
    .dp-lightbox-next-btn { right: 10px; }
}

/* Catalog Card Category Overlay */
.dp-catalog-card-category-badge-overlay {
    position: absolute;
    top: 10px;
    left: 35px;
    z-index: 5;
    background-color: var(--dp-success);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    transition: var(--dp-transition);
    display: inline-flex;
    align-items: center;
}
.dp-catalog-card:hover .dp-catalog-card-category-badge-overlay {
    transform: translateY(-2px);
    background-color: var(--dp-primary);
}
.dp-catalog-card-category-icon-badge {
    position: absolute;
    top: 0;
    left: 3px;
    width: 40px;
    height: 40px;
    padding-right: 3px;
    object-fit: contain;
    flex-shrink: 0;
    z-index: 6;
    transition: var(--dp-transition);
}
.dp-catalog-card:hover .dp-catalog-card-category-icon-badge {
    transform: translateY(-2px);
}
.dp-category-icon-inline {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
    flex-shrink: 0;
}

/* Browse Page Split Layout */
.dp-browse-split-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 30px;
    margin-bottom: 50px;
}
@media (max-width: 991px) {
    .dp-browse-split-layout {
        grid-template-columns: 1fr;
    }
}
.dp-browse-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.dp-browse-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sidebar Widgets */
.dp-sidebar-widget {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 20px;
    box-shadow: var(--dp-shadow);
}
.dp-sidebar-widget-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dp-dark);
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dp-sidebar-widget-title svg {
    color: var(--dp-primary);
}
.dp-sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dp-sidebar-category-list li a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: var(--dp-text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.dp-sidebar-category-list li.active a,
.dp-sidebar-category-list li a:hover {
    background-color: #eff6ff;
    color: var(--dp-primary);
}
.dp-sidebar-category-image-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    object-fit: contain;
    flex-shrink: 0;
}
.dp-sidebar-category-icon {
    margin-right: 10px;
    color: #94a3b8;
    flex-shrink: 0;
}
.dp-sidebar-category-list li.active a .dp-sidebar-category-icon,
.dp-sidebar-category-list li a:hover .dp-sidebar-category-icon {
    color: var(--dp-primary);
}
.dp-sidebar-category-count {
    margin-left: auto;
    background-color: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}
.dp-sidebar-category-list li.active a .dp-sidebar-category-count {
    background-color: var(--dp-primary);
    color: #ffffff;
}
.dp-sidebar-popular-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.dp-sidebar-popular-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.dp-sidebar-popular-item-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--dp-border);
    background-color: #f8fafc;
    flex-shrink: 0;
}
.dp-sidebar-popular-item-info {
    flex-grow: 1;
    min-width: 0;
}
.dp-sidebar-popular-item-title {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dp-sidebar-popular-item-title a {
    color: var(--dp-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}
.dp-sidebar-popular-item-title a:hover {
    color: var(--dp-primary);
}
.dp-sidebar-popular-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}
.dp-sidebar-popular-item-rating {
    color: #d97706;
    font-weight: 700;
}
.dp-sidebar-popular-item-price {
    color: #10b981;
    font-weight: 700;
    margin-left: auto;
}

/* Mobile Filter FAB */
.dp-browse-mobile-filter-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--dp-primary) 0%, var(--dp-primary-hover) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    z-index: 999;
}
.dp-browse-mobile-filter-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
}
.dp-browse-mobile-filter-toggle svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}
.dp-browse-drawer-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--dp-text);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}
.dp-browse-drawer-close:hover {
    color: var(--dp-primary);
}
.dp-browse-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
}
.dp-browse-drawer-overlay.active {
    display: block;
}
@media (max-width: 991px) {
    .dp-browse-sidebar {
        display: none;
    }
    .dp-browse-sidebar.dp-drawer-open {
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        width: 280px;
        height: 100%;
        z-index: 1000;
        background-color: #ffffff;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        padding: 60px 20px 20px 20px;
        border-radius: 0;
        flex-direction: column;
        gap: 25px;
    }
    .dp-browse-main {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .dp-browse-mobile-filter-toggle {
        display: none !important;
    }
    .dp-browse-drawer-close {
        display: none !important;
    }
    .dp-browse-drawer-overlay {
        display: none !important;
    }
    .dp-browse-sidebar {
        display: flex;
    }
}

/* Related Products */
.dp-related-products-section {
    margin-top: 60px;
    padding: 50px 0;
    border-top: 2px solid var(--dp-border);
}
.dp-related-products-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}
.dp-related-products-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dp-dark);
    margin: 0;
}
.dp-related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
@media (max-width: 768px) {
    .dp-related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    .dp-related-products-section {
        margin-top: 40px;
        padding: 30px 0;
    }
}

/* Browse Filter Bar */
.dp-browse-filter-bar {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: var(--dp-shadow);
}
@media (max-width: 767px) {
    .dp-browse-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
}
.dp-browse-search-wrapper {
    position: relative;
    flex-grow: 1;
}
.dp-browse-search-input {
    width: 100%;
    padding: 10px 45px 10px 15px;
    border: 1px solid var(--dp-border);
    border-radius: 8px;
    font-family: var(--dp-font);
    font-size: 14px;
    color: var(--dp-dark);
    outline: none;
    transition: border-color 0.2s ease;
}
.dp-browse-search-input:focus {
    border-color: var(--dp-primary);
}
.dp-browse-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}
.dp-browse-search-btn:hover {
    color: var(--dp-primary);
}
.dp-browse-sort-select {
    padding: 10px 15px;
    border: 1px solid var(--dp-border);
    border-radius: 8px;
    font-family: var(--dp-font);
    font-size: 14px;
    color: var(--dp-dark);
    font-weight: 600;
    outline: none;
    cursor: pointer;
    background-color: #ffffff;
}
.dp-browse-sort-select:focus {
    border-color: var(--dp-primary);
}

/* ==========================================================================
   9. Premium Landing Page Styles
   ========================================================================== */
.dp-landing-page-wrapper {
    font-family: var(--dp-font);
    color: var(--dp-text);
}

/* Hero Section */
.dp-landing-hero-section {
    position: relative;
    min-height: clamp(520px, 76vh, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 60px 20px 50px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.dp-landing-hero-glow-1,
.dp-landing-hero-glow-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
}
.dp-landing-hero-glow-1 {
    width: 500px;
    height: 500px;
    background: #6366f1;
    top: -100px;
    left: -100px;
}
.dp-landing-hero-glow-2 {
    width: 400px;
    height: 400px;
    background: #10b981;
    bottom: -50px;
    right: -50px;
}
.dp-landing-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    animation: dpFadeInUp 0.8s ease;
}
@keyframes dpFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.dp-landing-hero-badge {
    display: inline-block;
    background-color: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.dp-landing-hero-title {
    margin: 0 0 14px 0;
    font-size: clamp(26px, 4.5vw, 44px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.dp-landing-hero-subtitle {
    margin: 0 auto 26px auto;
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 580px;
}
.dp-landing-hero-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.dp-landing-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--dp-transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.dp-landing-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.dp-landing-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}
.dp-landing-cta-primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
}
.dp-landing-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.5);
}
.dp-landing-cta-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.dp-landing-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}
.dp-landing-scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 22px;
    animation: dpBounce 2s infinite;
}
@keyframes dpBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.dp-scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}
.dp-scroll-mouse::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 1px;
    animation: dpScroll 1.5s infinite;
}
@keyframes dpScroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* About Section */
.dp-landing-about-section {
    padding: 58px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}
.dp-landing-section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.dp-landing-about-header {
    text-align: center;
    margin-bottom: 36px;
}
.dp-landing-about-title {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 800;
    color: var(--dp-dark);
}
.dp-landing-about-description {
    margin: 0 auto;
    font-size: 14px;
    color: var(--dp-text-light);
    max-width: 660px;
    line-height: 1.65;
}
.dp-landing-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.dp-about-stat {
    text-align: center;
    padding: 16px 12px;
    background: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: 10px;
    transition: var(--dp-transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.dp-about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}
.dp-stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--dp-primary);
    margin-bottom: 4px;
}
.dp-stat-label {
    font-size: 12px;
    color: var(--dp-text-light);
    font-weight: 600;
}

/* Tech Stack Section */
.dp-landing-tech-section {
    padding: 58px 20px;
    background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.dp-landing-tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.dp-landing-tech-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.dp-landing-tech-header {
    text-align: center;
    margin-bottom: 36px;
}
.dp-landing-tech-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dp-dark) 0%, var(--dp-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--dp-dark);
}
.dp-landing-tech-subtitle {
    margin: 0;
    font-size: 14px;
    color: var(--dp-text-light);
}
.dp-landing-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}
.dp-tech-card {
    background-color: #ffffff;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--dp-shadow);
    transition: var(--dp-transition);
    display: flex;
    flex-direction: column;
}
.dp-tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--dp-primary);
}
.dp-tech-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #ffffff;
    font-size: 40px;
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.dp-tech-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    object-position: center;
}
.dp-tech-php {
    background: linear-gradient(135deg, #777bb4 0%, #5472a6 100%);
}
.dp-tech-node {
    background: linear-gradient(135deg, #68a063 0%, #4fa054 100%);
}
.dp-tech-wordpress {
    background: linear-gradient(135deg, #0073aa 0%, #005088 100%);
}
.dp-tech-api {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
}
.dp-tech-design {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}
.dp-tech-fullstack {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.dp-tech-card-title {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-tech-card-desc {
    margin: 0 0 12px 0;
    font-size: 12.5px;
    color: var(--dp-text-light);
    line-height: 1.55;
    flex-grow: 1;
}
.dp-tech-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.dp-tech-tag {
    display: inline-block;
    background-color: var(--dp-light);
    color: var(--dp-text);
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid var(--dp-border);
}

/* Why Choose Us / Features Section */
.dp-landing-features-section {
    padding: 58px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}
.dp-landing-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.dp-landing-features-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.dp-landing-features-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 800;
    color: var(--dp-dark);
}
.dp-landing-features-subtitle {
    margin: 0 auto;
    font-size: 14px;
    color: var(--dp-text-light);
    max-width: 580px;
}
.dp-landing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}
.dp-landing-feature-item {
    background-color: #f8fafc;
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 20px 16px;
    text-align: center;
    transition: var(--dp-transition);
}
.dp-landing-feature-item:hover {
    background-color: #ffffff;
    border-color: var(--dp-primary);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
    transform: translateY(-8px);
}
.dp-landing-feature-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.dp-landing-feature-item h3 {
    margin: 0 0 7px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--dp-dark);
}
.dp-landing-feature-item p {
    margin: 0;
    font-size: 12.5px;
    color: var(--dp-text-light);
    line-height: 1.55;
}

/* CTA Section */
.dp-landing-cta-section {
    padding: 62px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1a1f2e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.dp-landing-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.dp-landing-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.dp-landing-cta-content {
    position: relative;
    z-index: 1;
}
.dp-landing-cta-content h2 {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}
.dp-landing-cta-content p {
    margin: 0 auto 26px auto;
    font-size: 14px;
    color: #94a3b8;
    max-width: 560px;
}
.dp-landing-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .dp-landing-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dp-landing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dp-landing-about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .dp-landing-hero-section {
        padding: 44px 16px 38px;
        min-height: unset;
    }
    .dp-landing-hero-title {
        font-size: 24px;
    }
    .dp-landing-hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .dp-landing-tech-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .dp-landing-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .dp-landing-about-section,
    .dp-landing-tech-section,
    .dp-landing-features-section,
    .dp-landing-cta-section {
        padding: 40px 16px;
    }
    .dp-landing-about-title,
    .dp-landing-tech-title,
    .dp-landing-features-title,
    .dp-landing-cta-content h2 {
        font-size: 22px;
    }
    .dp-landing-scroll-indicator { display: none; }
}
@media (max-width: 480px) {
    .dp-landing-features-grid,
    .dp-landing-about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .dp-landing-tech-grid { grid-template-columns: 1fr; }
    .dp-landing-hero-cta { flex-direction: column; align-items: center; }
    .dp-landing-cta-btn { width: 100%; max-width: 260px; justify-content: center; }
}
/* ==========================================================================
   10. Related Products Section - Featured Image + Icon Badge
   ========================================================================== */

.dp-related-products-section {
    margin-top: 80px;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid var(--dp-border);
}

.dp-related-products-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.dp-related-products-header:before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--dp-primary), #4f46e5);
    border-radius: 3px;
}

.dp-related-products-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--dp-dark) 0%, var(--dp-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Related Products Grid */
.dp-related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Product Card Link */
.dp-catalog-card-product-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product Card */
.dp-catalog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid var(--dp-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dp-catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--dp-primary-light);
}

/* Image Container - Featured Image */
.dp-catalog-card-image-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

/* Featured Image */
.dp-catalog-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dp-catalog-card:hover .dp-catalog-card-image {
    transform: scale(1.05);
}

/* Product Icon as Badge - Bottom Right Corner */
.dp-catalog-card-icon-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid #ffffff;
    z-index: 2;
    transition: all 0.3s ease;
}

.dp-catalog-card:hover .dp-catalog-card-icon-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.dp-catalog-card-icon-badge img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

/* Image Placeholder (when no featured image) */
.dp-catalog-card-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    font-size: 48px;
}

/* Category Overlay Badge - Top Left */
.dp-catalog-card-category-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
}

.dp-catalog-card-category-badge-overlay {
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dp-catalog-card-category-icon-badge {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Card Content */
.dp-catalog-card-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dp-catalog-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dp-dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
    transition: color 0.2s ease;
}

.dp-catalog-card-product-link:hover .dp-catalog-card-title {
    color: var(--dp-primary);
}

/* Rating Stars */
.dp-rating-stars-row {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.dp-star {
    font-size: 13px;
    line-height: 1;
}

/* Price Section */
.dp-catalog-card-content > div:last-child {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--dp-border-light);
}

.dp-catalog-card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--dp-primary);
    letter-spacing: -0.5px;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .dp-related-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .dp-related-products-section {
        margin-top: 50px;
        padding: 40px 0 30px;
    }
    
    .dp-related-products-header {
        margin-bottom: 30px;
    }
    
    .dp-related-products-title {
        font-size: 24px;
    }
    
    .dp-related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 15px;
    }
    
    .dp-catalog-card-content {
        padding: 14px;
    }
    
    .dp-catalog-card-title {
        font-size: 13px;
        min-height: 36px;
    }
    
    .dp-catalog-card-price {
        font-size: 16px;
    }
    
    .dp-catalog-card-icon-badge {
        width: 32px;
        height: 32px;
        bottom: 8px;
        right: 8px;
    }
    
    .dp-catalog-card-icon-badge img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .dp-related-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .dp-catalog-card-image-wrap {
        padding-top: 60%;
    }
    
    .dp-related-products-title {
        font-size: 22px;
    }
}