/* =====================================================
   SHOP HERO
===================================================== */

.rs-shop-hero {
    position: relative;
    padding: 120px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(13, 110, 253, 0.14), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(255, 183, 3, 0.18), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #edf6ff 48%, #f9fcff 100%);
}

.rs-shop-hero .container,
.rs-shop-catalog .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.rs-shop-hero-card {
    position: relative;
    min-height: 390px;
    padding: 72px 64px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.64) 44%, rgba(255, 255, 255, 0.2) 100%),
        rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 28px 80px rgba(31, 88, 160, 0.14);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.rs-shop-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 72% 34%, rgba(255, 183, 3, 0.18), transparent 30%),
        radial-gradient(circle at 64% 42%, rgba(13, 110, 253, 0.2), transparent 34%);
    pointer-events: none;
}

.rs-shop-hero-content {
    position: relative;
    z-index: 4;
    max-width: 640px;
}

.rs-shop-badge {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--color2);
    font-size: 14px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(13, 110, 253, 0.1);
}

.rs-shop-hero-content h1 {
    margin: 0 0 22px;
    color: var(--color1);
    font-size: clamp(38px, 5vw, 54px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -2px;
}

.rs-shop-hero-content h1 span {
    color: var(--color2);
}

.rs-shop-hero-content p {
    max-width: 620px;
    margin: 0;
    color: #243653;
    font-size: 17px;
    line-height: 1.85;
}

.rs-shop-hero-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 58%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.rs-shop-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.36) 30%, transparent 60%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.12), transparent 50%);
}

.rs-shop-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
}


/* =====================================================
   SHOP CATALOG
===================================================== */

.rs-shop-catalog {
    position: relative;
    padding: 10px 0 82px;
}

.rs-shop-catalog-panel {
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.9), transparent 26%),
        radial-gradient(circle at 90% 0%, rgba(255, 183, 3, 0.1), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 255, 0.62)),
        rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 80px rgba(31, 88, 160, 0.12);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.rs-shop-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.rs-shop-trust-strip div {
    position: relative;
    padding: 18px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(31, 88, 160, 0.08);
}

.rs-shop-trust-own {
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.86), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(72, 184, 255, 0.28), transparent 38%),
        linear-gradient(135deg, rgba(219, 234, 254, 0.94), rgba(239, 248, 255, 0.74));
    border: 1px solid rgba(13, 110, 253, 0.22);
}

.rs-shop-trust-affiliate {
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.84), transparent 34%),
        linear-gradient(135deg, rgba(254, 249, 195, 0.92), rgba(255, 247, 237, 0.74));
    border: 1px solid rgba(245, 158, 11, 0.24);
}

.rs-shop-trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--color1);
    font-size: 14px;
    font-weight: 950;
}

.rs-shop-trust-own span i {
    color: var(--color2);
}

.rs-shop-trust-affiliate span i {
    color: #d97706;
}

.rs-shop-trust-strip p {
    margin: 0;
    color: #40536f;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 760;
}

.rs-shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rs-shop-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 247, 255, 0.56)),
        rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 18px 46px rgba(31, 88, 160, 0.09);
    transition: 0.35s ease;
}

.rs-shop-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 110, 253, 0.14);
    box-shadow: 0 28px 70px rgba(13, 110, 253, 0.15);
}

.rs-shop-product-image {
    position: relative;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 34%, rgba(13, 110, 253, 0.14), transparent 58%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(237, 247, 255, 0.36));
}

.rs-shop-product-image img {
    max-width: 100%;
    max-height: 148px;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(7, 24, 74, 0.18));
    transition: 0.35s ease;
}

.rs-shop-product-card:hover .rs-shop-product-image img {
    transform: translateY(-5px) scale(1.04);
}

.rs-shop-product-type {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.rs-shop-product-type-own {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
        linear-gradient(135deg, #06194f 0%, var(--color2) 62%, #48b8ff 100%);
}

.rs-shop-product-type-affiliate {
    color: #52627b;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(226, 232, 240, 0.84)),
        rgba(241, 245, 249, 0.9);
    border-color: rgba(148, 163, 184, 0.34);
}

.rs-shop-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.rs-shop-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rs-shop-product-meta {
    margin-bottom: 14px;
}

.rs-shop-product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--color2);
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.12);
    font-size: 11px;
    font-weight: 900;
}

.rs-shop-product-action {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.52) !important;
}

.rs-shop-product-action-buy {
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.32), transparent 32%),
        linear-gradient(135deg, #15803d 0%, #22c55e 100%) !important;
}

.rs-shop-product-action-pre-order {
    color: #6b4f00 !important;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.5), transparent 30%),
        linear-gradient(135deg, #fde047 0%, #facc15 100%) !important;
    border-color: rgba(250, 204, 21, 0.5) !important;
}

.rs-shop-product-action-reserve {
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.34), transparent 32%),
        linear-gradient(135deg, #db2777 0%, #f472b6 100%) !important;
}

.rs-shop-product-body h3 {
    display: -webkit-box;
    min-height: 52px;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--color1);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 950;
    letter-spacing: -0.4px;
    -webkit-box-orient: vertical;
}

.rs-shop-product-body h3 a {
    color: inherit;
    text-decoration: none;
}

.rs-shop-product-card:hover h3 a {
    color: var(--color2);
}

.rs-shop-product-body p {
    display: -webkit-box;
    min-height: 74px;
    margin: 0 0 12px;
    overflow: hidden;
    color: #52627b;
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.rs-shop-product-format {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #40536f;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(13, 110, 253, 0.1);
    font-size: 11px;
    font-weight: 900;
}

.rs-shop-product-format i {
    color: var(--color2);
}

.rs-shop-product-foot {
    display: grid;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(13, 110, 253, 0.08);
}

.rs-shop-price {
    min-width: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(237, 247, 255, 0.52)),
        rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(13, 110, 253, 0.08);
}

.rs-shop-price-before {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.rs-shop-price-before del {
    color: #8b98ad;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
}

.rs-shop-price-before span {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 4px 7px;
    border-radius: 999px;
    color: #dc2626;
    background: rgba(254, 226, 226, 0.86);
    border: 1px solid rgba(248, 113, 113, 0.28);
    font-size: 10px;
    font-weight: 950;
    line-height: 1;
}

.rs-shop-price strong {
    display: block;
    color: var(--color1);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 950;
}

.rs-shop-product-foot a,
.rs-shop-filter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 11px 16px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 183, 3, 0.42), transparent 30%),
        linear-gradient(135deg, #06194f 0%, var(--color2) 58%, #48b8ff 100%);
    box-shadow: 0 16px 34px rgba(7, 24, 74, 0.16);
    transition: 0.3s ease;
}

.rs-shop-product-foot a {
    width: 100%;
}

.rs-shop-product-foot a:hover,
.rs-shop-filter-submit:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(7, 24, 74, 0.22);
}

.rs-shop-catalog-panel .rs-pagination {
    margin-top: 34px;
}


/* =====================================================
   SHOP SIDEBAR
===================================================== */

.rs-shop-sidebar {
    position: sticky;
    top: 105px;
}

.rs-shop-filter-card {
    display: grid;
    gap: 22px;
    padding: 26px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58)),
        rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 30px 80px rgba(31, 88, 160, 0.12);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.rs-shop-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.rs-shop-filter-head h3 {
    margin: 0;
    color: var(--color1);
    font-size: 21px;
    font-weight: 950;
}

.rs-shop-filter-head a {
    color: var(--color2);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.rs-shop-filter-group {
    display: grid;
    gap: 10px;
}

.rs-shop-filter-group>label {
    margin: 0;
    color: var(--color1);
    font-size: 13px;
    font-weight: 900;
}

.rs-shop-sidebar-search {
    position: relative;
}

.rs-shop-sidebar-search input,
.rs-shop-filter-group select,
.rs-shop-range input {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    border-radius: 16px;
    border: 1px solid rgba(13, 110, 253, 0.12);
    background: rgba(255, 255, 255, 0.74);
    color: var(--color1);
    font-size: 13px;
    font-weight: 800;
    outline: none;
    transition: 0.25s ease;
}

.rs-shop-sidebar-search input {
    padding-right: 52px;
}

.rs-shop-sidebar-search input:focus,
.rs-shop-filter-group select:focus,
.rs-shop-range input:focus {
    border-color: rgba(13, 110, 253, 0.35);
    box-shadow: 0 14px 32px rgba(13, 110, 253, 0.1);
}

.rs-shop-sidebar-search button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--color2), #64b1ff);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.2);
}

.rs-shop-filter-options {
    display: grid;
    gap: 9px;
}

.rs-shop-filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 15px;
    color: #40536f;
    background: rgba(13, 110, 253, 0.05);
    border: 1px solid rgba(13, 110, 253, 0.08);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition: 0.25s ease;
}

.rs-shop-filter-options label:hover {
    color: var(--color2);
    background: rgba(13, 110, 253, 0.08);
    transform: translateX(4px);
}

.rs-shop-filter-options input {
    accent-color: var(--color2);
}

.rs-shop-range {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.rs-shop-filter-submit {
    width: 100%;
}


/* =====================================================
   PRODUCT DETAIL
===================================================== */

.rs-shop-product-detail {
    position: relative;
    padding: 10px 0 82px;
}

.rs-shop-product-detail .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.rs-shop-product-detail-main {
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.9), transparent 26%),
        radial-gradient(circle at 90% 0%, rgba(255, 183, 3, 0.1), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 255, 0.62)),
        rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 80px rgba(31, 88, 160, 0.12);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.rs-shop-product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 28px;
    align-items: start;
    margin-top: 28px;
}

.rs-shop-product-media,
.rs-shop-product-purchase,
.rs-shop-product-panel,
.rs-shop-product-final-cta {
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 48px rgba(31, 88, 160, 0.1);
}

.rs-shop-product-media,
.rs-shop-product-purchase,
.rs-shop-product-panel,
.rs-shop-product-final-cta {
    padding: 26px;
}

.rs-shop-product-primary {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
    padding: 38px;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 34%, rgba(13, 110, 253, 0.14), transparent 58%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(237, 247, 255, 0.42));
    border: 1px solid rgba(13, 110, 253, 0.08);
}

.rs-shop-product-primary img {
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgba(7, 24, 74, 0.18));
}

.rs-shop-product-gallery {
    --shop-gallery-gap: 12px;
    --shop-gallery-visible: 4;
    display: flex;
    gap: var(--shop-gallery-gap);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(13, 110, 253, 0.34) rgba(13, 110, 253, 0.08);
}

.rs-shop-product-gallery::-webkit-scrollbar {
    height: 8px;
}

.rs-shop-product-gallery::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
}

.rs-shop-product-gallery::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.34);
}

.rs-shop-product-gallery button {
    flex: 0 0 calc((100% - (var(--shop-gallery-gap) * (var(--shop-gallery-visible) - 1))) / var(--shop-gallery-visible));
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    scroll-snap-align: start;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(13, 110, 253, 0.08);
    cursor: pointer;
    text-align: left;
    transition: 0.25s ease;
}

.rs-shop-product-gallery button:hover,
.rs-shop-product-gallery button.is-active {
    transform: translateY(-3px);
    border-color: rgba(13, 110, 253, 0.28);
    box-shadow: 0 16px 34px rgba(13, 110, 253, 0.12);
}

.rs-shop-product-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    padding: 16px;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(237, 247, 255, 0.72), rgba(255, 255, 255, 0.44));
}

.rs-shop-product-gallery span {
    display: block;
    padding: 10px 12px;
    color: #52627b;
    font-size: 11px;
    line-height: 1.45;
    font-weight: 850;
}

.rs-shop-product-gallery button.is-active span {
    color: var(--color2);
}

.rs-shop-product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.rs-shop-product-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--color2);
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.12);
    font-size: 11px;
    font-weight: 900;
}

.rs-shop-product-purchase h2 {
    margin: 0 0 14px;
    color: var(--color1);
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -1px;
}

.rs-shop-product-purchase p {
    margin: 0 0 18px;
    color: #40536f;
    font-size: 15px;
    line-height: 1.85;
}

.rs-shop-product-detail-price {
    margin: 20px 0;
    padding: 18px 20px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(237, 247, 255, 0.52)),
        rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(13, 110, 253, 0.08);
}

.rs-shop-product-detail-price strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color1);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.8px;
}

.rs-shop-product-detail-price small {
    display: block;
    color: #66758e;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 800;
}

.rs-shop-product-cta {
    display: grid;
    gap: 16px;
}

.rs-shop-product-buy {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow: 0 18px 38px rgba(7, 24, 74, 0.16);
    transition: 0.3s ease;
}

.rs-shop-product-buy:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(7, 24, 74, 0.22);
}

.rs-shop-product-buy-buy {
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.32), transparent 32%),
        linear-gradient(135deg, #15803d 0%, #22c55e 100%);
}

.rs-shop-product-buy-pre-order {
    color: #6b4f00;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.5), transparent 30%),
        linear-gradient(135deg, #fde047 0%, #facc15 100%);
}

.rs-shop-product-buy-reserve {
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.34), transparent 32%),
        linear-gradient(135deg, #db2777 0%, #f472b6 100%);
}

.rs-shop-product-notice {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    border-radius: 18px;
}

.rs-shop-product-notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 800;
}

.rs-shop-product-notice-own {
    color: #102750;
    background: rgba(220, 220, 252, 0.68);
    border: 1px solid rgba(45, 34, 197, 0.16);
}

.rs-shop-product-notice-affiliate {
    color: #7c4a03;
    background: rgba(254, 249, 195, 0.82);
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.rs-shop-product-notice i {
    margin-top: 4px;
}

.rs-shop-product-panel h3,
.rs-shop-product-final-cta h3 {
    margin: 0 0 16px;
    color: var(--color1);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 950;
    letter-spacing: -0.5px;
}

.rs-shop-product-description {
    margin-top: 24px;
    color: #263657;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
}

.rs-shop-product-description p {
    margin: 0 0 22px;
}

.rs-shop-product-description ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.rs-shop-product-description li {
    position: relative;
    padding-left: 30px;
    color: #40536f;
    font-weight: 700;
}

.rs-shop-product-description li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color2);
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.08);
}

.rs-shop-product-description blockquote {
    position: relative;
    margin: 32px 0;
    padding: 28px 30px 28px 76px;
    border-radius: 20px;
    color: #102750;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 800;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(235, 247, 255, 0.58)),
        rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 46px rgba(31, 88, 160, 0.1);
}

.rs-shop-product-description blockquote::before {
    content: "\f10d";
    position: absolute;
    left: 26px;
    top: 28px;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--color2);
}

.rs-shop-product-description p:last-child {
    margin-bottom: 0;
}

.rs-shop-product-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 24px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 183, 3, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 255, 0.72));
}

.rs-shop-product-final-cta span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--color2);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.rs-shop-product-final-cta h3 {
    max-width: 720px;
    margin: 0;
}


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

@media (max-width: 1199.98px) {
    .rs-shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rs-shop-product-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .rs-shop-hero {
        padding: 110px 0 60px;
    }

    .rs-shop-hero-card {
        min-height: auto;
        padding: 48px 38px min(100%, 420px);
    }

    .rs-shop-hero-content {
        max-width: 100%;
    }

    .rs-shop-hero-visual {
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-height: 420px;
        justify-content: center;
    }

    .rs-shop-hero-visual img {
        width: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center top;
    }

    .rs-shop-hero-visual::after {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.36) 38%, transparent 74%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 55%);
    }

    .rs-shop-sidebar {
        position: relative;
        top: auto;
    }

    .rs-shop-product-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .rs-shop-hero {
        padding: 100px 0 52px;
    }

    .rs-shop-hero-card {
        padding: 36px 26px calc(100% - 52px);
        border-radius: 22px;
    }

    .rs-shop-hero-visual {
        max-height: none;
    }

    .rs-shop-hero-content h1 {
        letter-spacing: -1.2px;
    }

    .rs-shop-product-grid,
    .rs-shop-trust-strip {
        grid-template-columns: 1fr;
    }

    .rs-shop-product-gallery {
        --shop-gallery-visible: 2;
    }

    .rs-shop-catalog-panel,
    .rs-shop-product-detail-main {
        padding: 24px;
        border-radius: 24px;
    }

    .rs-shop-product-media,
    .rs-shop-product-purchase,
    .rs-shop-product-panel,
    .rs-shop-product-final-cta {
        padding: 20px;
        border-radius: 22px;
    }

    .rs-shop-product-primary {
        min-height: 300px;
        padding: 28px;
    }

    .rs-shop-product-foot {
        align-items: stretch;
        flex-direction: column;
    }

    .rs-shop-product-foot a {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .rs-shop-hero-card {
        padding: 32px 22px calc(100% - 44px);
    }

    .rs-shop-hero-visual {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .rs-shop-catalog {
        padding: 52px 0 72px;
    }

    .rs-shop-catalog-panel,
    .rs-shop-filter-card,
    .rs-shop-product-detail-main {
        padding: 20px;
    }
}
