


.pr-hero {
    position: relative;
    padding: 150px 0 72px;
    background: linear-gradient(160deg, #080c12 0%, #111827 45%, #0a0f18 100%);
    overflow: hidden;
}

.pr-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(212, 175, 55, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(173, 22, 41, 0.11) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(173, 22, 41, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.pr-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(173, 22, 41, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
}

.pr-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pr-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 7px 18px;
}

.pr-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.pr-breadcrumb a:hover {
    color: #D4AF37;
}

.pr-breadcrumb i {
    font-size: 0.6rem;
    color: rgba(212, 175, 55, 0.5);
}

.pr-hero-title {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 20%, #f0e6c8 55%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 14px;
    line-height: 1.3;
    filter: drop-shadow(0 0 28px rgba(212, 175, 55, 0.16));
}

.pr-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(212, 175, 55, 0.8);
    margin: 0 0 20px;
    line-height: 1.7;
    max-width: 520px;
    margin-inline: auto;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 18px;
}

.pr-hero-subtitle::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, rgba(212, 175, 55, 0.2));
    margin: 14px auto 0;
    border-radius: 2px;
}

.pr-hero-desc {
    max-width: 540px;
    margin-inline: auto;
    text-align: center;
}

.pr-hero-desc p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 6px;
    line-height: 1.8;
}

.pr-hero-desc p:last-child {
    margin-bottom: 0;
}



.pr-products-section {
    padding: 56px 0 88px;
    background: linear-gradient(180deg, #fdf9f0 0%, #fafbfc 30%, #f5f6f8 100%);
    min-height: 60vh;
    position: relative;
}

.pr-products-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #AD1629, #D4AF37, #AD1629);
}


.pr-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ffffff, #fdf7f0);
    border: 1px solid rgba(173, 22, 41, 0.15);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(173, 22, 41, 0.04);
    border-right: 3px solid rgba(212, 175, 55, 0.4);
}


.pr-search {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pr-search-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.pr-search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(173, 22, 41, 0.45);
    font-size: 0.88rem;
    pointer-events: none;
    transition: color 0.3s;
}

.pr-search-input {
    width: 100%;
    min-height: 46px;
    padding: 10px 42px 10px 42px;
    border-radius: 14px;
    border: 1.5px solid rgba(173, 22, 41, 0.15);
    background: #fff;
    color: #0D1117;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.pr-search-input::placeholder {
    color: rgba(13, 17, 23, 0.3);
    font-weight: 500;
}

.pr-search-input:focus {
    border-color: #AD1629;
    box-shadow: 0 0 0 3px rgba(173, 22, 41, 0.08);
}

.pr-search-input:focus ~ .pr-search-icon,
.pr-search-wrap:has(.pr-search-input:focus) .pr-search-icon {
    color: #AD1629;
}

.pr-search-clear {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(173, 22, 41, 0.08);
    color: #AD1629;
    font-size: 0.7rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.pr-search-clear.is-visible {
    display: flex;
}

.pr-search-clear:hover {
    background: rgba(173, 22, 41, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.pr-search-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(13, 17, 23, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    transition: opacity 0.3s;
}

.pr-search-count:empty {
    display: none;
}


.pr-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pr-sort label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #AD1629;
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.pr-sort label i {
    font-size: 0.85rem;
}

.pr-sort-select {
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid rgba(173, 22, 41, 0.25);
    background: #fff;
    color: #0D1117;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23AD1629' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    padding-left: 30px;
}

.pr-sort-select:hover {
    border-color: rgba(173, 22, 41, 0.5);
}

.pr-sort-select:focus {
    border-color: #AD1629;
    box-shadow: 0 0 0 3px rgba(173, 22, 41, 0.1);
    outline: none;
}



body.products-page .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


body.products-page .product-card,
body.products-page .product-card-pro,
body.products-page .page-product-card {
    background: linear-gradient(160deg, #0a0d14 0%, #060910 60%, #0c0810 100%);
    border: 1px solid rgba(173, 22, 41, 0.22);
    border-top: 2px solid rgba(212, 175, 55, 0.55);
    border-radius: 24px;
    padding: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(173, 22, 41, 0.07), inset 0 1px 0 rgba(212, 175, 55, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    min-height: 100%;
}

body.products-page .product-card::before,
body.products-page .product-card-pro::before,
body.products-page .page-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(140deg, rgba(212, 175, 55, 0.5), rgba(173, 22, 41, 0.25) 50%, rgba(212, 175, 55, 0.2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

body.products-page .product-card:hover::before,
body.products-page .product-card-pro:hover::before,
body.products-page .page-product-card:hover::before {
    opacity: 1;
}

body.products-page .product-card:hover,
body.products-page .product-card-pro:hover,
body.products-page .page-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.6);
    border-top-color: #D4AF37;
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(173, 22, 41, 0.14),
        0 0 0 1px rgba(212, 175, 55, 0.18),
        inset 0 1px 0 rgba(212, 175, 55, 0.15);
    background: linear-gradient(160deg, #0e1120 0%, #080b12 60%, #100810 100%);
}

body.products-page .page-product-card .product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
}

body.products-page .page-product-card .product-card-link:hover {
    color: inherit;
}


body.products-page .product-image-wrap,
body.products-page .page-product-card .product-image-wrap {
    position: relative;
    flex-shrink: 0;
    min-height: 230px;
    border-radius: 18px;
    padding: 12px 10px 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(173, 22, 41, 0.09) 0%, transparent 50%),
        #080b14;
    overflow: hidden;
    transition: border-color 0.35s ease;
}

body.products-page .product-card:hover .product-image-wrap,
body.products-page .page-product-card:hover .product-image-wrap {
    border-color: rgba(212, 175, 55, 0.3);
}

body.products-page .product-image-wrap::after,
body.products-page .page-product-card .product-image-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-20deg);
    transition: 0.6s ease;
}

body.products-page .product-card:hover .product-image-wrap::after,
body.products-page .product-card-pro:hover .product-image-wrap::after,
body.products-page .page-product-card:hover .product-image-wrap::after {
    left: 140%;
}


body.products-page .product-img,
body.products-page .page-product-card .product-img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 14px rgba(173, 22, 41, 0.18));
    transition: transform 0.5s ease, filter 0.5s ease;
    will-change: transform;
}

body.products-page .product-card:hover .product-img,
body.products-page .product-card-pro:hover .product-img,
body.products-page .page-product-card:hover .product-img {
    transform: scale(1.09) translateY(-4px);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.22));
}


body.products-page .product-name-badge,
body.products-page .page-product-card .product-name-badge {
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg,
        rgba(4, 4, 8, 0.97) 0%,
        rgba(18, 14, 8, 0.98) 30%,
        rgba(18, 14, 8, 0.98) 70%,
        rgba(4, 4, 8, 0.97) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.55);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    color: #D4AF37;
    font-family: "Zain", serif;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 6px;
    width: 84%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 12px rgba(212, 175, 55, 0.06);
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 0 12px rgba(212, 175, 55, 0.2);
    letter-spacing: 0.6px;
}

body.products-page .product-name-badge.small-name,
body.products-page .page-product-card .product-name-badge.small-name {
    font-size: 0.88rem;
    width: 90%;
}


body.products-page .page-product-card .product-info {
    margin: 0;
    padding: 0 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.products-page .page-product-card .product-title {
    font-family: "Zain", serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 6px 0 0;
    transition: color 0.3s;
    letter-spacing: 0.3px;
    line-height: 1.35;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.products-page .product-card:hover .product-title,
body.products-page .product-card-pro:hover .product-title,
body.products-page .page-product-card:hover .product-title {
    color: #D4AF37;
}

body.products-page .page-product-card .product-type {
    font-size: 0.78rem;
    color: rgba(212, 175, 55, 0.55);
    margin: 0;
    min-height: 20px;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.4px;
}


body.products-page .page-product-card .product-actions,
body.products-page .page-product-card .product-actions-footer {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    inset: auto;
    opacity: 1;
    transform: none;
    display: block;
    width: 100%;
    margin-top: auto;
    z-index: 1;
}

body.products-page .page-product-card .product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(173, 22, 41, 0.12), rgba(100, 10, 22, 0.08));
    border: 1px solid rgba(173, 22, 41, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    color: #d44060;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 48px;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
}

body.products-page .page-product-card .product-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #c41430, #8a0e1e);
    transition: width 0.35s ease;
    z-index: -1;
}

body.products-page .page-product-card .product-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: -80%;
    width: 50%;
    height: 100%;
    background: rgba(212, 175, 55, 0.08);
    transform: skewX(-18deg);
    transition: right 0.5s ease;
    pointer-events: none;
}

body.products-page .page-product-card .product-btn:hover {
    color: #fff;
    border-color: #c41430;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(173, 22, 41, 0.35), inset 0 1px 0 rgba(255,255,255,0.08);
}

body.products-page .page-product-card .product-btn:hover::before {
    width: 100%;
}

body.products-page .page-product-card .product-btn:hover::after {
    right: 120%;
}

body.products-page .page-product-card .product-btn:disabled {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    border-color: #444;
    color: #777;
    cursor: not-allowed;
    box-shadow: none;
    transform: none !important;
}

body.products-page .page-product-card .product-btn:disabled::before,
body.products-page .page-product-card .product-btn:disabled::after {
    display: none;
}


body.products-page .new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #b8912e 50%, #AD1629 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 6;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.28), 0 2px 6px rgba(0,0,0,0.3);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

body.products-page .new-badge.product-badge-best {
    background: linear-gradient(135deg, #D4AF37 0%, #AD1629 100%);
    color: #fff;
}

body.products-page .new-card {
    position: relative;
}


body.products-page .exclusive-ribbon {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(-2px 3px 4px rgba(0, 0, 0, 0.4));
}

body.products-page .exclusive-ribbon span {
    position: absolute;
    display: block;
    width: 160px;
    padding: 8px 0;
    color: #fff;
    font-family: "Zain", sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    left: -35px;
    top: 22px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}



.product-card.is-skeleton,
.page-product-card.is-skeleton {
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.08) 37%, rgba(255, 255, 255, 0.04) 63%);
    background-size: 400% 100%;
    animation: pr-shimmer 1.4s ease-in-out infinite;
    border-radius: 12px;
}

.skeleton-img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.skeleton-line {
    height: 14px;
    width: 100%;
    margin: 6px auto;
}

.skeleton-line.is-short {
    width: 70%;
}

.product-btn.is-skeleton-btn {
    min-height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-color: transparent;
    box-shadow: none;
}

@keyframes pr-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}



.pr-load-more {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.pr-load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    min-height: 50px;
    padding: 13px 32px;
    border-radius: 50px;
    border: 1.5px solid rgba(173, 22, 41, 0.45);
    background: linear-gradient(135deg, #fff, #fdf7f0);
    color: #AD1629;
    font-weight: 800;
    font-size: 0.88rem;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(173, 22, 41, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pr-load-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100%;
    background: rgba(212, 175, 55, 0.12);
    transform: skewX(-20deg);
    transition: right 0.5s ease;
}

.pr-load-more-btn:hover {
    background: linear-gradient(135deg, #fff, #fcf3e4);
    border-color: #D4AF37;
    color: #8a0e1e;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(173, 22, 41, 0.14), 0 4px 10px rgba(0,0,0,0.06);
}

.pr-load-more-btn:hover::before {
    right: 130%;
}

.pr-load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}


.no-products,
.error {
    text-align: center;
    padding: 60px 20px;
    font-size: 1rem;
    color: rgba(13, 17, 23, 0.5);
    grid-column: 1 / -1;
}



@media (max-width: 1200px) {
    body.products-page .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    body.products-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pr-hero {
        padding: 120px 0 52px;
    }
    .pr-hero-title {
        font-size: 1.7rem;
    }
    .pr-hero-subtitle {
        font-size: 0.95rem;
    }
    .pr-hero-desc p {
        font-size: 0.8rem;
    }
    .pr-products-section {
        padding: 35px 0 60px;
    }
    .pr-controls {
        padding: 12px 14px;
        border-radius: 14px;
        gap: 12px;
    }
    .pr-search-input {
        min-height: 42px;
        font-size: 0.85rem;
    }
    body.products-page .products-grid {
        gap: 12px;
    }
    body.products-page .product-title {
        font-size: 1.1rem;
    }
    body.products-page .product-img {
        height: 190px;
    }
    body.products-page .product-card,
    body.products-page .product-card-pro,
    body.products-page .page-product-card {
        background: linear-gradient(160deg, #0a0d14 0%, #060910 60%, #0c0810 100%);
    }
    body.products-page .product-img {
        will-change: auto;
    }
    body.products-page .exclusive-ribbon {
        width: 70px;
        height: 70px;
        top: -3px;
        right: -3px;
    }
    body.products-page .exclusive-ribbon span {
        width: 110px;
        padding: 5px 0;
        font-size: 0.65rem;
        left: -22px;
        top: 16px;
    }
    body.products-page .new-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }
    body.products-page .product-name-badge {
        font-size: 0.9rem;
        padding: 4px 8px;
        width: 85%;
    }
    body.products-page .product-card:hover,
    body.products-page .product-card-pro:hover,
    body.products-page .page-product-card:hover,
    body.products-page .product-btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    body.products-page .product-card:active,
    body.products-page .product-card-pro:active,
    body.products-page .page-product-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
        border-color: #AD1629;
    }
    body.products-page .product-btn:active {
        transform: scale(0.95) !important;
    }
}

@media (max-width: 520px) {
    .pr-hero {
        padding: 110px 0 42px;
    }
    .pr-hero-title {
        font-size: 1.45rem;
    }
    .pr-hero-subtitle {
        font-size: 0.88rem;
    }
    .pr-hero-desc p {
        font-size: 0.78rem;
    }
    .pr-controls {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
    }
    .pr-search {
        flex-direction: column;
        gap: 6px;
    }
    .pr-search-count {
        align-self: flex-start;
    }
    .pr-sort {
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    .pr-sort-select {
        flex: 1;
        max-width: 200px;
    }
    body.products-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    body.products-page .page-product-card {
        padding: 10px;
        border-radius: 16px;
    }
    body.products-page .page-product-card .product-image-wrap {
        min-height: 152px;
        padding: 8px 8px 0;
    }
    body.products-page .page-product-card .product-img {
        height: 145px;
    }
    body.products-page .page-product-card .product-name-badge {
        top: 74%;
        font-size: 0.8rem;
        padding: 4px 8px;
        width: 88%;
    }
    body.products-page .page-product-card .product-name-badge.small-name {
        font-size: 0.72rem;
    }
    body.products-page .page-product-card .product-title {
        font-size: 14px;
        min-height: 2.4em;
    }
    body.products-page .page-product-card .product-type {
        font-size: 10px;
        min-height: 15px;
    }
    body.products-page .page-product-card .product-btn {
        min-height: 40px;
        font-size: 13px;
        padding: 8px 10px;
    }
    .pr-load-more-btn {
        width: 100%;
    }
}

@media (max-width: 359px) {
    .pr-hero-title {
        font-size: 1.3rem;
    }
    .pr-search-input {
        min-height: 40px;
        padding: 8px 36px;
        font-size: 0.82rem;
    }
}


@media (hover: none) and (pointer: coarse) {
    body.products-page .product-card:hover,
    body.products-page .product-card-pro:hover,
    body.products-page .page-product-card:hover {
        transform: none;
    }
    body.products-page .product-card:active,
    body.products-page .product-card-pro:active,
    body.products-page .page-product-card:active {
        transform: scale(0.98);
    }
    body.products-page .page-product-card .product-btn:hover {
        transform: none;
    }
}


@media (prefers-reduced-motion: reduce) {
    body.products-page .product-img,
    body.products-page .new-badge,
    body.products-page .page-product-card .product-btn::after,
    body.products-page .exclusive-ribbon span::after,
    .skeleton {
        animation: none !important;
    }
    body.products-page .product-card,
    body.products-page .product-card-pro,
    body.products-page .page-product-card {
        transition: none;
    }
}


@media print {
    .pr-hero,
    .pr-controls,
    .pr-load-more,
    body.products-page .product-btn {
        display: none !important;
    }
    .pr-products-section {
        background: #fff;
    }
    body.products-page .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    body.products-page .product-card,
    body.products-page .product-card-pro,
    body.products-page .page-product-card {
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: none;
    }
    body.products-page .product-title {
        color: #111;
    }
    body.products-page .product-type {
        color: #555;
    }
}








