/* =====================================================
   DEVELOPER PHOTO SALES - PUBLIC STYLES v1.2.0
   Modern, Clean Design
   ===================================================== */

/* Variables */
:root {
    --dps-primary: #3b82f6;
    --dps-primary-hover: #2563eb;
    --dps-primary-light: #eff6ff;
    --dps-success: #10b981;
    --dps-success-hover: #059669;
    --dps-success-light: #ecfdf5;
    --dps-danger: #ef4444;
    --dps-warning: #f59e0b;
    --dps-gray-50: #f9fafb;
    --dps-gray-100: #f3f4f6;
    --dps-gray-200: #e5e7eb;
    --dps-gray-300: #d1d5db;
    --dps-gray-400: #9ca3af;
    --dps-gray-500: #6b7280;
    --dps-gray-600: #4b5563;
    --dps-gray-700: #374151;
    --dps-gray-800: #1f2937;
    --dps-gray-900: #111827;
    --dps-radius: 16px;
    --dps-radius-md: 12px;
    --dps-radius-sm: 8px;
    --dps-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --dps-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --dps-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --dps-shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --dps-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --dps-transition-slow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   CAMPAIGNS GRID
   ===================================================== */

.dps-campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 24px 0;
}

@media (max-width: 1024px) {
    .dps-campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .dps-campaigns-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.dps-campaign-card {
    background: #fff;
    border-radius: var(--dps-radius);
    overflow: hidden;
    box-shadow: var(--dps-shadow);
    transition: all var(--dps-transition-slow);
    border: 1px solid var(--dps-gray-100);
}

.dps-campaign-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dps-shadow-xl);
    border-color: var(--dps-primary);
}

.dps-campaign-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dps-campaign-cover {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--dps-gray-100);
    position: relative;
}

.dps-campaign-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1) 100%);
}

.dps-campaign-info {
    padding: 20px 24px 24px;
}

.dps-campaign-info h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--dps-gray-900);
    line-height: 1.3;
}

.dps-campaign-info p {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--dps-gray-500);
    line-height: 1.6;
}

.dps-photo-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--dps-gray-100);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dps-gray-700);
}

.dps-no-campaigns {
    text-align: center;
    padding: 80px 20px;
    color: var(--dps-gray-500);
    font-size: 16px;
}

/* =====================================================
   GALLERY WRAPPER
   ===================================================== */

.dps-gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 0;
    position: relative;
}

.dps-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.dps-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    color: var(--dps-gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--dps-gray-200);
    border-radius: var(--dps-radius-sm);
    transition: all var(--dps-transition);
}

.dps-back-btn:hover {
    background: var(--dps-gray-50);
    border-color: var(--dps-gray-300);
    color: var(--dps-gray-900);
}

.dps-back-btn svg {
    transition: transform var(--dps-transition);
}

.dps-back-btn:hover svg {
    transform: translateX(-4px);
}

.dps-gallery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.dps-price-badge,
.dps-total-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

.dps-price-badge {
    background: var(--dps-success-light);
    color: var(--dps-success);
}

.dps-total-badge {
    background: var(--dps-primary-light);
    color: var(--dps-primary);
}

/* =====================================================
   SEARCH SECTION
   ===================================================== */

.dps-search-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.dps-search-bar {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.dps-search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.dps-search-icon {
    position: absolute;
    left: 16px;
    color: var(--dps-gray-400);
    pointer-events: none;
}

#dps-search-input {
    width: 100%;
    padding: 14px 44px;
    border: 2px solid var(--dps-gray-200);
    border-radius: var(--dps-radius-md);
    font-size: 15px;
    transition: all var(--dps-transition);
    background: #fff;
}

#dps-search-input:focus {
    outline: none;
    border-color: var(--dps-primary);
    box-shadow: 0 0 0 4px var(--dps-primary-light);
}

#dps-search-input::placeholder {
    color: var(--dps-gray-400);
}

.dps-search-clear {
    position: absolute;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--dps-gray-200);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dps-gray-600);
    transition: all var(--dps-transition);
    padding: 0;
    line-height: 1;
}

.dps-search-clear svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.dps-search-clear:hover {
    background: var(--dps-gray-300);
    color: var(--dps-gray-800);
}

.dps-search-button {
    padding: 14px 28px;
    background: var(--dps-primary);
    color: #fff;
    border: none;
    border-radius: var(--dps-radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dps-transition);
    white-space: nowrap;
}

.dps-search-button:hover {
    background: var(--dps-primary-hover);
    transform: translateY(-1px);
}

.dps-search-button:active {
    transform: translateY(0);
}

/* Loading Overlay */
.dps-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.9);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--dps-radius);
}

.dps-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--dps-gray-200);
    border-top-color: var(--dps-primary);
    border-radius: 50%;
    animation: dps-spin 0.8s linear infinite;
}

@keyframes dps-spin {
    to { transform: rotate(360deg); }
}

/* =====================================================
   GALLERY GRID - MODERN DESIGN
   ===================================================== */

.dps-gallery-grid {
    display: grid;
    gap: 20px;
}

.dps-gallery-grid.dps-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.dps-gallery-grid.dps-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .dps-gallery-grid.dps-columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .dps-gallery-grid.dps-columns-3,
    .dps-gallery-grid.dps-columns-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 540px) {
    .dps-gallery-grid.dps-columns-3,
    .dps-gallery-grid.dps-columns-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.dps-photo-item {
    background: #fff;
    border-radius: var(--dps-radius);
    overflow: hidden;
    box-shadow: var(--dps-shadow-sm);
    transition: all var(--dps-transition-slow);
    border: 1px solid var(--dps-gray-200);
    position: relative;
}

.dps-photo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--dps-shadow-lg);
    border-color: var(--dps-gray-300);
}

.dps-photo-item.dps-purchased {
    border-color: var(--dps-success);
}

.dps-photo-item.dps-purchased:hover {
    border-color: var(--dps-success);
}

.dps-purchased-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--dps-success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--dps-shadow);
}

.dps-photo-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    background: var(--dps-gray-100);
}

.dps-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dps-transition-slow);
}

.dps-photo-item:hover .dps-photo-thumb img {
    transform: scale(1.08);
}

.dps-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--dps-transition);
}

.dps-photo-thumb:hover .dps-photo-overlay {
    opacity: 1;
}

.dps-zoom-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dps-gray-800);
    transform: scale(0.8);
    transition: transform var(--dps-transition);
}

.dps-photo-thumb:hover .dps-zoom-icon {
    transform: scale(1);
}

.dps-photo-info {
    padding: 14px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    background: var(--dps-gray-50);
    border-bottom: 1px solid var(--dps-gray-100);
}

.dps-photo-id {
    font-size: 12px;
    color: var(--dps-gray-500);
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    background: var(--dps-gray-200);
    padding: 4px 10px;
    border-radius: 6px;
}

.dps-bib-number {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    padding: 4px 10px;
    background: var(--dps-primary);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.dps-bib-number svg {
    opacity: 0.8;
}

.dps-campaign-name {
    font-size: 12px;
    color: var(--dps-gray-600);
    background: var(--dps-gray-200);
    padding: 4px 10px;
    border-radius: 6px;
}

.dps-photo-actions {
    padding: 14px 16px;
}

/* Buttons */
.dps-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: var(--dps-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--dps-transition);
}

.dps-btn-cart {
    background: var(--dps-primary);
    color: #fff;
}

.dps-btn-cart:hover {
    background: var(--dps-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.dps-btn-cart:active {
    transform: translateY(0);
}

.dps-btn-cart:disabled {
    background: var(--dps-gray-300);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.dps-btn-cart.added {
    background: var(--dps-success);
}

.dps-btn-download {
    background: var(--dps-success);
    color: #fff;
}

.dps-btn-download:hover {
    background: var(--dps-success-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.dps-btn-primary {
    background: var(--dps-primary);
    color: #fff;
}

.dps-btn-primary:hover {
    background: var(--dps-primary-hover);
    color: #fff;
}

.dps-no-photos {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--dps-gray-500);
    font-size: 16px;
    background: var(--dps-gray-50);
    border-radius: var(--dps-radius);
}

/* =====================================================
   PAGINATION
   ===================================================== */

.dps-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--dps-gray-200);
}

.dps-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    color: var(--dps-gray-700);
    text-decoration: none;
    border: 2px solid var(--dps-gray-200);
    border-radius: var(--dps-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dps-transition);
}

.dps-page-btn:hover {
    background: var(--dps-primary);
    border-color: var(--dps-primary);
    color: #fff;
}

.dps-page-numbers {
    display: flex;
    gap: 4px;
    align-items: center;
}

.dps-page-num {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--dps-gray-200);
    border-radius: var(--dps-radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--dps-gray-700);
    cursor: pointer;
    transition: all var(--dps-transition);
}

.dps-page-num:hover {
    border-color: var(--dps-primary);
    color: var(--dps-primary);
}

.dps-page-num.active {
    background: var(--dps-primary);
    border-color: var(--dps-primary);
    color: #fff;
}

.dps-page-dots {
    color: var(--dps-gray-400);
    padding: 0 4px;
}

.dps-page-info {
    color: var(--dps-gray-500);
    font-size: 14px;
    font-weight: 500;
}

/* =====================================================
   LIGHTBOX
   ===================================================== */

.dps-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dps-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
}

.dps-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

.dps-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--dps-radius-md);
    box-shadow: var(--dps-shadow-xl);
}

.dps-lightbox-close {
    position: absolute;
    top: -56px;
    right: 0;
    width: 48px;
    height: 48px;
    background: #fff;
    color: var(--dps-gray-800);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--dps-transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 0;
    line-height: 1;
}

.dps-lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.dps-lightbox-close:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.dps-lightbox-info {
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* =====================================================
   MY PHOTOS
   ===================================================== */

.dps-my-photos-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 0;
}

.dps-my-photos-header {
    margin-bottom: 32px;
}

.dps-my-photos-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 800;
    color: var(--dps-gray-900);
    letter-spacing: -0.5px;
}

.dps-my-photos-header h2 svg {
    color: var(--dps-primary);
}

.dps-total-photos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 10px 18px;
    background: var(--dps-success-light);
    border-radius: 100px;
    color: var(--dps-success);
    font-size: 14px;
    font-weight: 600;
}

.dps-login-required {
    text-align: center;
    padding: 80px 40px;
    background: var(--dps-gray-50);
    border-radius: var(--dps-radius);
    border: 2px dashed var(--dps-gray-300);
}

.dps-login-required svg {
    color: var(--dps-gray-400);
    margin-bottom: 20px;
}

.dps-login-required p {
    font-size: 16px;
    color: var(--dps-gray-600);
    margin: 0;
}

.dps-login-required a {
    color: var(--dps-primary);
    font-weight: 600;
    text-decoration: none;
}

.dps-login-required a:hover {
    text-decoration: underline;
}

/* Empty State */
.dps-empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--dps-gray-50);
    border-radius: var(--dps-radius);
    border: 2px dashed var(--dps-gray-300);
}

.dps-empty-state svg {
    color: var(--dps-gray-300);
    margin-bottom: 24px;
}

.dps-empty-state p {
    font-size: 16px;
    color: var(--dps-gray-500);
    margin: 0 0 24px;
}

.dps-empty-state .dps-btn {
    display: inline-flex;
    width: auto;
    padding: 14px 28px;
}

/* =====================================================
   ERROR & MESSAGES
   ===================================================== */

.dps-error {
    padding: 24px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--dps-radius-md);
    color: var(--dps-danger);
    text-align: center;
    font-weight: 500;
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS
   ===================================================== */

@media (max-width: 640px) {
    .dps-gallery-wrapper {
        padding: 16px 0;
    }
    
    .dps-gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .dps-search-section {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 16px;
    }
    
    .dps-search-bar {
        max-width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    
    .dps-search-button {
        width: 100%;
    }
    
    .dps-gallery-meta {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .dps-price-badge,
    .dps-total-badge {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .dps-photo-info {
        padding: 8px 10px;
        flex-direction: column;
        gap: 4px;
    }
    
    .dps-photo-id {
        font-size: 11px;
    }
    
    .dps-bib-number {
        font-size: 11px;
    }
    
    .dps-photo-actions {
        padding: 8px 10px;
    }
    
    .dps-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .dps-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .dps-pagination {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 20px;
    }
    
    .dps-page-numbers {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .dps-page-num {
        min-width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .dps-page-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .dps-lightbox-content {
        max-width: 95vw;
    }
    
    .dps-lightbox-close {
        top: -52px;
        width: 44px;
        height: 44px;
    }
    
    .dps-lightbox-close svg {
        width: 20px;
        height: 20px;
    }
    
    .dps-my-photos-header h2 {
        font-size: 24px;
    }
    
    .dps-back-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .dps-search-clear {
        width: 24px;
        height: 24px;
        right: 10px;
    }
    
    .dps-search-clear svg {
        width: 12px;
        height: 12px;
    }
}

/* Extra small screens - 2 columns still maintained */
@media (max-width: 400px) {
    .dps-gallery-grid.dps-columns-3,
    .dps-gallery-grid.dps-columns-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .dps-photo-item {
        border-radius: var(--dps-radius-sm);
    }
    
    .dps-photo-info {
        padding: 6px 8px;
    }
    
    .dps-photo-id {
        font-size: 10px;
    }
    
    .dps-bib-number {
        font-size: 10px;
    }
    
    .dps-photo-actions {
        padding: 6px 8px;
    }
    
    .dps-btn {
        padding: 8px 10px;
        font-size: 11px;
        gap: 4px;
    }
    
    .dps-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .dps-price-badge,
    .dps-total-badge {
        padding: 6px 10px;
        font-size: 11px;
        gap: 4px;
    }
    
    .dps-price-badge svg,
    .dps-total-badge svg {
        width: 12px;
        height: 12px;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: scale(0.98);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.dps-lightbox {
    animation: fadeIn 0.25s ease-out;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.dps-photo-item {
    animation: slideUp 0.4s ease-out;
    animation-fill-mode: both;
}

.dps-photo-item:nth-child(1) { animation-delay: 0.02s; }
.dps-photo-item:nth-child(2) { animation-delay: 0.04s; }
.dps-photo-item:nth-child(3) { animation-delay: 0.06s; }
.dps-photo-item:nth-child(4) { animation-delay: 0.08s; }
.dps-photo-item:nth-child(5) { animation-delay: 0.10s; }
.dps-photo-item:nth-child(6) { animation-delay: 0.12s; }
.dps-photo-item:nth-child(7) { animation-delay: 0.14s; }
.dps-photo-item:nth-child(8) { animation-delay: 0.16s; }
.dps-photo-item:nth-child(n+9) { animation-delay: 0.18s; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.dps-btn-cart:disabled {
    animation: pulse 1.2s ease-in-out infinite;
}

/* Touch Device Optimizations */
@media (hover: none) {
    .dps-photo-overlay {
        display: none;
    }
    
    .dps-photo-item:hover {
        transform: none;
    }
    
    .dps-photo-item:active {
        transform: scale(0.98);
    }
    
    .dps-btn:active {
        transform: scale(0.98);
    }
}
