/**
 * RoyalNet Products – Frontend Styles
 * Premium Industrial Product Catalog
 * © RoyalNet Technologies
 */

/* ===================================================================
   CSS CUSTOM PROPERTIES
   =================================================================== */
:root {
    --rn-orange:        #ff6600;
    --rn-orange-light:  #ff8533;
    --rn-orange-dark:   #cc5200;
    --rn-navy:          #151c4a;
    --rn-navy-light:    #1e2760;
    --rn-navy-dark:     #0d1230;
    --rn-white:         #ffffff;
    --rn-off-white:     #f8f9ff;
    --rn-glass-bg:      rgba(255, 255, 255, 0.08);
    --rn-glass-border:  rgba(255, 255, 255, 0.15);
    --rn-text-dark:     #1a1a2e;
    --rn-text-mid:      #4a5568;
    --rn-text-light:    #718096;
    --rn-shadow-sm:     0 2px 8px rgba(21, 28, 74, 0.08);
    --rn-shadow-md:     0 8px 32px rgba(21, 28, 74, 0.12);
    --rn-shadow-lg:     0 20px 60px rgba(21, 28, 74, 0.18);
    --rn-shadow-xl:     0 30px 90px rgba(21, 28, 74, 0.25);
    --rn-radius-sm:     8px;
    --rn-radius-md:     14px;
    --rn-radius-lg:     20px;
    --rn-radius-xl:     28px;
    --rn-transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --rn-font:          -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ===================================================================
   BASE WRAPPER
   =================================================================== */
.rnpro-wrapper {
    font-family: var(--rn-font);
    color: var(--rn-text-dark);
    padding: 0px 0 40px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.rnpro-wrapper *,
.rnpro-wrapper *::before,
.rnpro-wrapper *::after {
    box-sizing: inherit;
}

/* ===================================================================
   SEARCH BAR
   =================================================================== */
.rnpro-search-wrap {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.rnpro-search-inner {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.rnpro-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rn-orange);
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}

.rnpro-search-input {
    width: 100%;
    padding: 15px 50px 15px 50px;
    font-size: 15px;
    font-family: var(--rn-font);
    border: 2px solid transparent;
    border-radius: 50px;
    background: var(--rn-white);
    box-shadow: var(--rn-shadow-md), inset 0 1px 3px rgba(0,0,0,0.04);
    color: var(--rn-text-dark);
    transition: var(--rn-transition);
    outline: none;
    line-height: 1.4;
}

.rnpro-search-input:focus {
    border-color: var(--rn-orange);
    box-shadow: var(--rn-shadow-md), 0 0 0 4px rgba(255, 102, 0, 0.12);
}

.rnpro-search-input::placeholder {
    color: var(--rn-text-light);
}

.rnpro-search-clear {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--rn-text-light);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    font-size: 14px;
    transition: var(--rn-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.rnpro-search-clear:hover {
    background: rgba(255, 102, 0, 0.1);
    color: var(--rn-orange);
}

/* ===================================================================
   FILTER TABS
   =================================================================== */
.rnpro-filter-wrap {
    margin-bottom: 36px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rnpro-filter-wrap::-webkit-scrollbar { display: none; }

.rnpro-filter-tabs {
    display: flex;
    gap: 10px;
    padding: 6px 2px;
    flex-wrap: wrap;
    justify-content: center;
}

.rnpro-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--rn-font);
    letter-spacing: 0.3px;
    color: var(--rn-text-mid);
    background: var(--rn-white);
    border: 2px solid #e8ecf0;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--rn-transition);
    white-space: nowrap;
    box-shadow: var(--rn-shadow-sm);
}

.rnpro-tab:hover {
    border-color: var(--rn-orange);
    color: var(--rn-orange);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.15);
    transform: translateY(-1px);
}

.rnpro-tab.active {
    background: linear-gradient(135deg, var(--rn-orange), var(--rn-orange-dark));
    border-color: var(--rn-orange);
    color: var(--rn-white);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
    transform: translateY(-2px);
}

.rnpro-tab i {
    font-size: 13px;
}

/* ===================================================================
   PRODUCT GRID
   =================================================================== */
.rnpro-grid {
    display: grid;
    gap: 28px;
    animation: rnpro-fade-in 0.4s ease both;
}

.rnpro-cols-1 { grid-template-columns: 1fr; }
.rnpro-cols-2 { grid-template-columns: repeat(2, 1fr); }
.rnpro-cols-3 { grid-template-columns: repeat(3, 1fr); }
.rnpro-cols-4 { grid-template-columns: repeat(4, 1fr); }

@keyframes rnpro-fade-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================================
   PRODUCT CARD
   =================================================================== */
.rnpro-card {
    background: var(--rn-white);
    border-radius: var(--rn-radius-lg);
    box-shadow: var(--rn-shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--rn-transition);
    border: 1px solid rgba(21, 28, 74, 0.06);
    position: relative;
    animation: rnpro-card-in 0.5s ease both;
}

@keyframes rnpro-card-in {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.rnpro-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--rn-shadow-xl);
    border-color: rgba(255, 102, 0, 0.15);
}

/* Card Image */
.rnpro-card-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #f0f4ff, #e8ecf8);
    cursor: pointer;
}

.rnpro-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rnpro-card:hover .rnpro-card-img {
    transform: scale(1.08);
}

.rnpro-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff, #e8ecf8);
    color: #c0c8e0;
    font-size: 48px;
}

.rnpro-card-img-placeholder.large {
    min-height: 320px;
    font-size: 72px;
}

/* Card Image Overlay */
.rnpro-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(21, 28, 74, 0.6) 0%,
        rgba(21, 28, 74, 0) 60%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--rn-transition);
}

.rnpro-card:hover .rnpro-card-overlay {
    opacity: 1;
}

.rnpro-overlay-icon {
    width: 52px;
    height: 52px;
    background: var(--rn-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.4);
}

.rnpro-card:hover .rnpro-overlay-icon {
    transform: scale(1);
}

/* Badge */
.rnpro-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--rn-orange), var(--rn-orange-dark));
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.4);
}

/* Card Body */
.rnpro-card-body {
    padding: 20px 22px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rnpro-series-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--rn-orange);
}

.rnpro-series-label i {
    font-size: 10px;
}

.rnpro-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--rn-navy);
    line-height: 1.35;
    margin: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rnpro-card-title:hover {
    color: var(--rn-orange);
}

.rnpro-card-desc {
    font-size: 13.5px;
    color: var(--rn-text-mid);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Features */
.rnpro-card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rnpro-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--rn-text-mid);
    line-height: 1.4;
}

.rnpro-card-features li i {
    color: var(--rn-orange);
    font-size: 13px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Card Footer */
.rnpro-card-footer {
    padding: 14px 22px 20px;
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(21, 28, 74, 0.06);
    margin-top: auto;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.rnpro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--rn-font);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--rn-transition);
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.2px;
    flex: 1;
}

.rnpro-btn i { font-size: 13px; }

.rnpro-btn-primary {
    background: linear-gradient(135deg, var(--rn-navy), var(--rn-navy-light));
    color: var(--rn-white);
    box-shadow: 0 4px 14px rgba(21, 28, 74, 0.3);
}

.rnpro-btn-primary:hover {
    background: linear-gradient(135deg, var(--rn-orange), var(--rn-orange-dark));
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    transform: translateY(-2px);
    color: var(--rn-white);
    text-decoration: none;
}

.rnpro-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--rn-white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.rnpro-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
    color: var(--rn-white);
    text-decoration: none;
}

/* ===================================================================
   LOADING SPINNER
   =================================================================== */
.rnpro-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.rnpro-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 102, 0, 0.15);
    border-top-color: var(--rn-orange);
    border-radius: 50%;
    animation: rnpro-spin 0.8s linear infinite;
}

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

/* ===================================================================
   NO PRODUCTS STATE
   =================================================================== */
.rnpro-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--rn-text-light);
}

.rnpro-no-products i {
    font-size: 56px;
    color: #dde2f0;
    margin-bottom: 16px;
    display: block;
}

.rnpro-no-products p {
    font-size: 16px;
    margin: 0;
}

/* ===================================================================
   POPUP OVERLAY
   =================================================================== */
.rnpro-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 18, 48, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99998;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;

    overflow-y: auto;
}

.rnpro-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ===================================================================
   POPUP MODAL
   =================================================================== */
.rnpro-popup {
    background: var(--rn-white);
    border-radius: var(--rn-radius-xl);
    box-shadow: var(--rn-shadow-xl), 0 0 0 1px rgba(255, 102, 0, 0.08);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    opacity: 0;
    margin: auto;
}

.rnpro-overlay.active .rnpro-popup {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Custom scrollbar in popup */
.rnpro-popup::-webkit-scrollbar { width: 6px; }
.rnpro-popup::-webkit-scrollbar-track { background: transparent; }
.rnpro-popup::-webkit-scrollbar-thumb {
    background: rgba(255, 102, 0, 0.3);
    border-radius: 4px;
}

.rnpro-popup-inner {
    position: relative;
}

.rnpro-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(21, 28, 74, 0.06);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--rn-text-mid);
    transition: var(--rn-transition);
    z-index: 10;
}

.rnpro-popup-close:hover {
    background: var(--rn-orange);
    color: white;
    transform: rotate(90deg);
}

/* Popup layout */
.rnpro-popup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

/* LEFT: Gallery Column */
.rnpro-popup-gallery-col {
    padding: 28px;
    background: linear-gradient(145deg, #f0f4ff, #e8ecf8);
    border-radius: var(--rn-radius-xl) 0 0 var(--rn-radius-xl);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rnpro-popup-main-img-wrap {
    position: relative;
    border-radius: var(--rn-radius-md);

    overflow: hidden;

    background: #fff;

    box-shadow: var(--rn-shadow-md);

    aspect-ratio: 4 / 3;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* POPUP IMAGE */

.rnpro-popup-main-img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    position: relative;
    z-index: 2;

    padding: 18px;

    background: transparent;

    transition: opacity .35s ease;
}

/* IMAGE WRAPPER */

.rnpro-popup-main-img-wrap {

    position: relative;

    border-radius: var(--rn-radius-md);

    overflow: hidden;

    aspect-ratio: 4 / 3;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0.04)
    );

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border: 1px solid rgba(255,255,255,0.14);

    box-shadow:
    0 20px 50px rgba(15,23,42,0.15),
    inset 0 1px 1px rgba(255,255,255,0.08);
}

/* PREMIUM GLOW */

.rnpro-popup-main-img-wrap::before{

    content:'';

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top left,
        rgba(255,102,0,0.22),
        transparent 35%
    ),

    radial-gradient(
        circle at bottom right,
        rgba(21,28,74,0.25),
        transparent 42%
    );

    z-index:1;
}

/* GLASS SHINE EFFECT */

.rnpro-popup-main-img-wrap::after{

    content:'';

    position:absolute;

    top:0;
    left:-40%;

    width:60%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.12),
        transparent
    );

    transform:skewX(-20deg);

    z-index:1;
}

/* Gallery Thumbnails */
.rnpro-popup-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rnpro-popup-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--rn-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--rn-transition);
    box-shadow: var(--rn-shadow-sm);
    background: var(--rn-white);
    flex-shrink: 0;
}

.rnpro-popup-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rnpro-popup-thumb:hover {
    border-color: var(--rn-orange);
    transform: scale(1.05);
}

.rnpro-popup-thumb.active {
    border-color: var(--rn-orange);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

/* RIGHT: Details Column */
.rnpro-popup-details-col {
    padding: 36px 32px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.rnpro-popup-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--rn-navy);
    line-height: 1.25;
    margin: 0;
}

.rnpro-popup-short-desc {
    font-size: 15px;
    color: var(--rn-text-mid);
    line-height: 1.65;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(21, 28, 74, 0.07);
}

.rnpro-popup-description {
    font-size: 14px;
    color: var(--rn-text-mid);
    line-height: 1.7;
}

.rnpro-popup-description p { margin: 0 0 10px; }
.rnpro-popup-description p:last-child { margin-bottom: 0; }

/* Popup Sections */
.rnpro-popup-section {
    background: var(--rn-off-white);
    border-radius: var(--rn-radius-md);
    padding: 18px 20px;
    border: 1px solid rgba(21, 28, 74, 0.06);
}

.rnpro-popup-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--rn-navy);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.rnpro-popup-section-title i {
    color: var(--rn-orange);
    font-size: 14px;
}

/* Popup Features */
.rnpro-popup-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rnpro-popup-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--rn-text-dark);
    line-height: 1.4;
}

.rnpro-popup-features li i {
    color: var(--rn-orange);
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Specs Table */
.rnpro-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.rnpro-specs-table tr {
    border-bottom: 1px solid rgba(21, 28, 74, 0.06);
    transition: background 0.2s;
}

.rnpro-specs-table tr:last-child {
    border-bottom: none;
}

.rnpro-specs-table tr:hover {
    background: rgba(255, 102, 0, 0.04);
}

.rnpro-specs-table th {
    padding: 8px 12px 8px 0;
    text-align: left;
    font-weight: 700;
    color: var(--rn-navy);
    width: 40%;
    vertical-align: top;
}

.rnpro-specs-table td {
    padding: 8px 0;
    color: var(--rn-text-mid);
    vertical-align: top;
}


/* Comp Table */
.rnpro-comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.rnpro-comp-table tr {
    border-bottom: 1px solid rgba(21, 28, 74, 0.06);
    transition: background 0.2s;
}

.rnpro-comp-table tr:last-child {
    border-bottom: none;
}

.rnpro-comp-table tr:hover {
    background: rgba(255, 102, 0, 0.04);
}

.rnpro-comp-table th {
    padding: 8px 12px 8px 0;
    text-align: left;
    font-weight: 700;
    color: var(--rn-navy);
    width: 75%;
    vertical-align: top;
}

.rnpro-comp-table td {
    padding: 8px 0;
    color: var(--rn-text-mid);
    vertical-align: top;
}

/* Popup Actions */
.rnpro-popup-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 8px;
}

.rnpro-popup-actions .rnpro-btn {
    flex: 1;
    min-width: 140px;
    padding: 13px 20px;
    font-size: 14px;
}

/* ===================================================================
   RESPONSIVE BREAKPOINTS
   =================================================================== */

/* Tablet: 768px–1024px */
@media screen and (max-width: 1024px) {
    .rnpro-cols-3,
    .rnpro-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .rnpro-popup-layout {
        grid-template-columns: 1fr;
    }

    .rnpro-popup-gallery-col {
        border-radius: var(--rn-radius-xl) var(--rn-radius-xl) 0 0;
    }

    .rnpro-popup {
        max-width: 680px;
    }
}

/* Large Mobile: 640px */
@media screen and (max-width: 640px) {
    .rnpro-cols-2,
    .rnpro-cols-3,
    .rnpro-cols-4 {
        grid-template-columns: 1fr;
    }

    .rnpro-filter-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .rnpro-tab {
        padding: 9px 16px;
        font-size: 13px;
    }

    .rnpro-popup {
        max-width: 100%;
        border-radius: var(--rn-radius-lg);
    }

    .rnpro-popup-gallery-col {
        border-radius: var(--rn-radius-lg) var(--rn-radius-lg) 0 0;
        padding: 20px;
    }

    .rnpro-popup-details-col {
        padding: 22px 20px;
    }

    .rnpro-popup-title {
        font-size: 20px;
    }

    .rnpro-popup-actions {
        flex-direction: column;
    }

    .rnpro-popup-actions .rnpro-btn {
        flex: auto;
        width: 100%;
    }

    .rnpro-card-footer {
        flex-direction: column;
    }

    .rnpro-overlay {
        padding: 10px;
        align-items: flex-end;
    }
}

/* Very small mobile: 380px */
@media screen and (max-width: 380px) {
    .rnpro-popup-thumbs {
        gap: 6px;
    }

    .rnpro-popup-thumb {
        width: 55px;
        height: 55px;
    }
}

/* ===================================================================
   GRID ANIMATION DELAYS
   =================================================================== */
.rnpro-card:nth-child(1) { animation-delay: 0.05s; }
.rnpro-card:nth-child(2) { animation-delay: 0.10s; }
.rnpro-card:nth-child(3) { animation-delay: 0.15s; }
.rnpro-card:nth-child(4) { animation-delay: 0.20s; }
.rnpro-card:nth-child(5) { animation-delay: 0.25s; }
.rnpro-card:nth-child(6) { animation-delay: 0.30s; }
.rnpro-card:nth-child(7) { animation-delay: 0.35s; }
.rnpro-card:nth-child(8) { animation-delay: 0.40s; }
.rnpro-card:nth-child(9) { animation-delay: 0.45s; }
.rnpro-card:nth-child(n+10) { animation-delay: 0.50s; }
