﻿/*==================================================
  CredTube Rewards Marketplace
  reward.css
  Version 2.0
==================================================*/


/*==================================================
  CSS VARIABLES
==================================================*/

:root {
    --gold: #D4AF37;
    --gold-light: #FFD54F;
    --gold-dark: #B8860B;
    --bg: #0f0f0f;
    --bg2: #171717;
    --bg3: #1f1f1f;
    --card: #181818;
    --border: #2a2a2a;
    --text: #ffffff;
    --muted: #bfbfbf;
    --gray: #8d8d8d;
    --radius: 18px;
    --transition: .35s ease;
    --shadow: 0 12px 35px rgba(0,0,0,.45);
    --gold-shadow: 0 15px 45px rgba(212,175,55,.22);
}


/*==================================================
  RESET
==================================================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}


/*==================================================
  COMMON
==================================================*/

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

section {
    position: relative;
}

.container-fluid {
    position: relative;
}

.section-title {
    color: #fff;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 28px;
}

.section-subtitle {
    color: var(--muted);
    max-width: 720px;
    margin: auto;
    line-height: 1.8;
}


/*==================================================
  BUTTONS
==================================================*/

.btn-gold {
    background: linear-gradient( 135deg, #F4D76A, var(--gold) );
    color: #111;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    padding: 12px 28px;
    transition: var(--transition);
    box-shadow: 0 8px 18px rgba(212,175,55,.18);
}

    .btn-gold:hover {
        color: #111;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(212,175,55,.30);
    }

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 28px;
    transition: var(--transition);
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: #111;
    }


/*==================================================
  COMMON IMAGE CONTAINER
==================================================*/

.reward-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


/*==================================================
  DIVIDER
==================================================*/

.hero-divider {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

    .hero-divider span {
        width: 140px;
        height: 3px;
        border-radius: 30px;
        background: linear-gradient( 90deg, transparent, var(--gold), transparent );
        box-shadow: 0 0 16px rgba(212,175,55,.5);
    }
/*==================================================
  HERO SECTION
==================================================*/

.reward-hero {
    position: relative;
    overflow: hidden;
    padding: 15px 0 15px;
    background: radial-gradient( circle at top right, rgba(212,175,55,.14), transparent 45% ), linear-gradient( 180deg, #111111 0%, #151515 65%, #181818 100% );
}


    /* Gold Glow */

    .reward-hero::before {
        content: "";
        position: absolute;
        top: -140px;
        right: -140px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(212,175,55,.10);
        filter: blur(25px);
    }


    /* Gold Particles */

    .reward-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .16;
        background-image: radial-gradient( rgba(212,175,55,.25) 1px, transparent 1px );
        background-size: 80px 80px;
    }



/*==================================================
  HERO CONTENT
==================================================*/

.reward-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 15px;
    font-weight: 700;
}

.reward-title {
    color: #fff;
    font-size: 55px;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 18px;
}

.reward-subtitle {
    color: #d4d4d4;
    font-size: 19px;
    line-height: 1.9;
    margin-top: 22px;
    max-width: 640px;
}



/*==================================================
  FEATURE LIST
==================================================*/

.reward-features {
    margin-top: 30px;
}

    .reward-features div {
        display: flex;
        align-items: center;
        color: #ececec;
        margin-bottom: 14px;
        font-size: 17px;
    }

    .reward-features i {
        color: var(--gold);
        margin-right: 12px;
        font-size: 18px;
    }



/*==================================================
  HERO BUTTON GROUP
==================================================*/

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}



/*==================================================
  HERO IMAGE
==================================================*/

.reward-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.reward-banner {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    animation: floatReward 5s ease-in-out infinite;
    filter: drop-shadow( 0 20px 40px rgba(0,0,0,.45) );
}



/*==================================================
  FLOAT ANIMATION
==================================================*/

@keyframes floatReward {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}



/*==================================================
  GOLD COINS
==================================================*/

.reward-coins {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.coin {
    position: absolute;
    top: -80px;
    font-size: 30px;
    color: var(--gold);
    opacity: .32;
    animation: coinFall linear infinite;
}

    .coin:nth-child(1) {
        left: 5%;
        animation-duration: 8s;
    }

    .coin:nth-child(2) {
        left: 18%;
        animation-duration: 10s;
        animation-delay: 2s;
    }

    .coin:nth-child(3) {
        left: 30%;
        animation-duration: 9s;
        animation-delay: 4s;
    }

    .coin:nth-child(4) {
        left: 45%;
        animation-duration: 11s;
    }

    .coin:nth-child(5) {
        left: 60%;
        animation-duration: 8s;
        animation-delay: 1s;
    }

    .coin:nth-child(6) {
        left: 73%;
        animation-duration: 12s;
    }

    .coin:nth-child(7) {
        left: 86%;
        animation-duration: 9s;
        animation-delay: 3s;
    }

    .coin:nth-child(8) {
        left: 96%;
        animation-duration: 10s;
    }



@keyframes coinFall {

    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    15% {
        opacity: .35;
    }

    100% {
        transform: translateY(900px) rotate(720deg);
        opacity: 0;
    }
}



/*==================================================
  HERO RESPONSIVE
==================================================*/

@media (max-width:991px) {

    .reward-hero {
        padding: 45px 0 25px;
        text-align: center;
    }

    .reward-title {
        font-size: 46px;
    }

    .reward-subtitle {
        max-width: 100%;
    }

    .reward-image-container {
        margin-top: 35px;
    }

    .reward-banner {
        max-width: 420px;
    }

    .hero-buttons {
        justify-content: center;
    }
}



@media (max-width:767px) {

    .reward-hero {
        padding: 35px 0 20px;
    }

    .reward-title {
        font-size: 30px;
    }

    .reward-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    .reward-features {
        text-align: left;
        margin-top: 24px;
    }

        .reward-features div {
            font-size: 15px;
        }

    .reward-banner {
        max-width: 320px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

        .hero-buttons .btn {
            width: 240px;
        }
}
/*==================================================
  REWARD CATEGORY SECTION
==================================================*/

.reward-category-slider {
    position: relative;
    overflow: hidden;
    padding: 45px 0 55px;
    background: radial-gradient( circle at top center, rgba(212,175,55,.08), transparent 45% ), linear-gradient( 180deg, #181818 0%, #151515 60%, #111111 100% );
}

    .reward-category-slider::before {
        content: "";
        position: absolute;
        left: 50%;
        top: -130px;
        transform: translateX(-50%);
        width: 720px;
        height: 320px;
        background: radial-gradient( rgba(212,175,55,.12), transparent 70% );
        pointer-events: none;
    }

    .reward-category-slider::after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .20;
        pointer-events: none;
        background-image: radial-gradient( rgba(212,175,55,.18) 1px, transparent 1px );
        background-size: 80px 80px;
    }



/*==================================================
  SWIPER CONTAINER
==================================================*/

.rewardSwiper {
    padding: 30px 0 70px;
    overflow: visible;
}



/*==================================================
  CATEGORY CARD
==================================================*/

.category-card {
    background: linear-gradient( 180deg, #222222, #181818 );
    border: 1px solid rgba(212,175,55,.18);
    border-radius: 24px;
    padding: 35px 28px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

    .category-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold);
        box-shadow: var(--gold-shadow);
    }



/*==================================================
  ACTIVE SWIPER CARD
==================================================*/

.swiper-slide-active .category-card {
    transform: scale(1.06);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212,175,55,.30);
}



/*==================================================
  CATEGORY ICON
==================================================*/

.category-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,.12);
    color: var(--gold);
    font-size: 42px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: rotate(10deg) scale(1.08);
    background: rgba(212,175,55,.20);
}



/*==================================================
  CATEGORY TITLE
==================================================*/

.category-card h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
    flex: 1;
}



/*==================================================
  CATEGORY BUTTON
==================================================*/

.category-card .btn {
    margin-top: 25px;
}



/*==================================================
  SWIPER NAVIGATION
==================================================*/

.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--gold);
    background: #1a1a1a;
    border: 1px solid rgba(212,175,55,.25);
    transition: var(--transition);
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--gold);
        color: #111;
        transform: scale(1.08);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px;
        font-weight: bold;
    }

.swiper-button-prev {
    left: -18px;
}

.swiper-button-next {
    right: -18px;
}



/*==================================================
  SWIPER PAGINATION
==================================================*/

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #666;
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: var(--gold);
}



/*==================================================
  TABLET
==================================================*/

@media (max-width:991px) {

    .reward-category-slider {
        padding: 35px 0 45px;
    }

    .category-card {
        min-height: 290px;
        padding: 28px;
    }

    .category-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}



/*==================================================
  MOBILE
==================================================*/

@media (max-width:767px) {

    .reward-category-slider {
        padding: 25px 0 35px;
    }

    .rewardSwiper {
        padding: 15px 0 55px;
    }

    .category-card {
        min-height: auto;
        padding: 24px;
    }

    .category-icon {
        width: 72px;
        height: 72px;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .category-card h4 {
        font-size: 20px;
    }

    .category-card p {
        font-size: 14px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}
/*==================================================
  LATEST REWARDS
==================================================*/

.latest-rewards-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient( 180deg, #111111 0%, #181818 100% );
}

.latest-rewards-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 35px;
}



/*==================================================
  MARQUEE VIEWPORT
==================================================*/

.reward-marquee {
  
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(212,175,55,.15);
    background: radial-gradient( circle at top center, rgba(212,175,55,.08), transparent 45% ), linear-gradient( 180deg, #1b1b1b, #141414 );
    box-shadow: 0 15px 40px rgba(0,0,0,.30);
}



/*==================================================
  SCROLLING TRACK
==================================================*/

.reward-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    animation: rewardScroll 40s linear infinite;
    will-change: transform;
}

    .reward-track:hover {
        animation-play-state: paused;
    }



/*==================================================
  FADE EDGES
==================================================*/

.reward-marquee::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient( 90deg, #181818, rgba(24,24,24,0) );
}

.reward-marquee::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient( -90deg, #181818, rgba(24,24,24,0) );
}



/*==================================================
  MARQUEE ANIMATION
==================================================*/

@keyframes rewardScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

   /* 0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-265px * 6));
    }*/
}



/*==================================================
  SECTION TITLE
==================================================*/

.reward-marquee .section-title {
    margin: 25px;
    margin-bottom: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 30px;
    font-weight: 700;
}

    .reward-marquee .section-title i {
        color: var(--gold);
    }



/*==================================================
  TABLET
==================================================*/

@media(max-width:991px) {

    .latest-rewards-wrapper {
        padding: 0 20px;
    }

    .reward-track {
        gap: 18px;
        padding: 20px;
    }
}



/*==================================================
  MOBILE
==================================================*/

@media(max-width:767px) {

    .latest-rewards-section {
        padding: 40px 0;
    }

    .latest-rewards-wrapper {
        padding: 0 12px;
    }

    .reward-marquee {
        border-radius: 18px;
    }

    .reward-track {
        gap: 15px;
        padding: 18px;
        animation-duration: 70s;
    }

    .reward-marquee .section-title {
        font-size: 22px;
        margin: 18px;
    }

    .reward-marquee::before,
    .reward-marquee::after {
        width: 35px;
    }
}



/*==================================================
  SMALL MOBILE
==================================================*/

@media(max-width:575px) {

    .reward-track {
        gap: 12px;
        padding: 15px;
    }
}
/*==================================================
  PREMIUM REWARD CARD
==================================================*/

.reward-card {
    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;
    flex: 0 0 250px !important;
    display: flex;
    flex-direction: column;
    background: #171717;
    border-radius: 18px;
    border: 1px solid rgba(212,175,55,.18);
    overflow: hidden;
    transition: .35s;
    box-sizing: border-box;
}

    .reward-card:hover {
        transform: translateY(-10px);
        border-color: var(--gold);
        box-shadow: 0 18px 45px rgba(212,175,55,.25);
    }



/*==================================================
  IMAGE
==================================================*/

.reward-image-wrapper {
    height: 160px;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient( circle, rgba(212,175,55,.10), #ffffff 75% );
}

.reward-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.reward-card:hover .reward-image {
    transform: scale(1.08);
}



/*==================================================
  BODY
==================================================*/

.reward-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}



/*==================================================
  NAME
==================================================*/

.reward-name {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 48px;
    margin-bottom: 8px;
}



/*==================================================
  CATEGORY
==================================================*/

.reward-category {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
}



/*==================================================
  POINTS BADGE
==================================================*/

.reward-points {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(212,175,55,.12);
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

    .reward-points i {
        color: var(--gold-light);
    }



/*==================================================
  BUTTON
==================================================*/

.reward-card .btn {
    margin-top: auto;
    width: 100%;
    font-size: 14px;
    padding: 10px 16px;
}



/*==================================================
  FEATURED CARD
==================================================*/

.reward-card.featured {
    border-color: var(--gold);
    position: relative;
}

    .reward-card.featured::before {
        content: "FEATURED";
        position: absolute;
        top: 12px;
        right: -34px;
        width: 120px;
        text-align: center;
        transform: rotate(45deg);
        background: var(--gold);
        color: #111;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 0;
    }



/*==================================================
  OUT OF STOCK
==================================================*/

.reward-card.disabled {
    opacity: .55;
    filter: grayscale(.25);
}

    .reward-card.disabled .btn {
        pointer-events: none;
    }



/*==================================================
  TABLET
==================================================*/

@media(max-width:991px) {

    .reward-card {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }

    .reward-image-wrapper {
        height: 145px;
    }
}



/*==================================================
  MOBILE
==================================================*/

@media(max-width:767px) {

    .reward-card {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }

    .reward-image-wrapper {
        height: 130px;
        padding: 10px;
    }

    .reward-body {
        padding: 15px;
    }

    .reward-name {
        font-size: 15px;
        min-height: 40px;
    }

    .reward-category {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .reward-points {
        font-size: 13px;
        padding: 7px 14px;
    }

    .reward-card .btn {
        font-size: 13px;
        padding: 9px 12px;
    }
}



/*==================================================
  SMALL MOBILE
==================================================*/

@media(max-width:575px) {

    .reward-card {
        width: 230px;
        min-width: 230px;
        max-width: 230px;
    }
}
/*==================================================
  RESPONSIVE UTILITIES & FINAL CLEANUP
==================================================*/

/*==================================================
  DESKTOP (1200px+)
==================================================*/

@media (min-width:1200px) {

    .container-xl,
    .container-lg {
        max-width: 1320px;
    }

    .section-title {
        font-size: 36px;
    }
}



/*==================================================
  LARGE TABLET
==================================================*/

@media (max-width:1199px) {

    .section-title {
        font-size: 32px;
    }
}



/*==================================================
  TABLET
==================================================*/

@media (max-width:991px) {

    section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 22px;
    }

    .section-subtitle {
        text-align: center;
    }
}



/*==================================================
  MOBILE
==================================================*/

@media (max-width:767px) {

    body {
        font-size: 15px;
    }

    section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .section-title {
        font-size: 24px;
        text-align: center;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    .btn {
        min-height: 42px;
    }
}



/*==================================================
  SMALL MOBILE
==================================================*/

@media (max-width:575px) {

    body {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }
}



/*==================================================
  UTILITIES
==================================================*/

.text-gold {
    color: var(--gold) !important;
}

.bg-dark-card {
    background: var(--card);
}

.rounded-xl {
    border-radius: 24px;
}

.shadow-gold {
    box-shadow: 0 15px 35px rgba(212,175,55,.20);
}

.border-gold {
    border: 1px solid rgba(212,175,55,.25);
}

.transition {
    transition: var(--transition);
}



/*==================================================
  SCROLLBAR
==================================================*/

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gold);
    }



/*==================================================
  SELECTION
==================================================*/

::selection {
    background: var(--gold);
    color: #111;
}



/*==================================================
  ACCESSIBILITY
==================================================*/

button:focus,
.btn:focus,
a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212,175,55,.35);
}



/*==================================================
  PERFORMANCE
==================================================*/

.reward-card,
.category-card,
.reward-banner,
.reward-image {
    backface-visibility: hidden;
    transform: translateZ(0);
}



/*==================================================
  REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion:reduce) {

    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}



/*==================================================
  PRINT
==================================================*/

@media print {

    .reward-coins,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none !important;
    }
}



/*==================================================
  END OF FILE
==================================================*/


.redemption-section {
    margin-top: 40px;
}

.redemption-title {
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 5px;
}

.redemption-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.redemption-card {
    background: linear-gradient( 180deg, #1c1c1c, #141414 );
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 18px;
    padding: 20px;
    transition: .3s;
}

    .redemption-card:hover {
        transform: translateY(-4px);
        border-color: rgba(212,175,55,.6);
    }

.redemption-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.request-number {
    color: #aaa;
    font-size: 13px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.status-pending {
    background: rgba(255,193,7,.15);
    color: #ffc107;
    border: 1px solid rgba(255,193,7,.35);
}

.status-approved {
    background: rgba(25,135,84,.15);
    color: #5bd693;
    border: 1px solid rgba(25,135,84,.4);
}

.status-rejected {
    background: rgba(220,53,69,.15);
    color: #ff7a87;
    border: 1px solid rgba(220,53,69,.4);
}

.redemption-reward {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.redemption-image {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 10px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .redemption-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.redemption-reward h5 {
    color: #fff;
    margin-bottom: 5px;
}

.redemption-reward span {
    color: #aaa;
    font-size: 13px;
}

.redemption-info {
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 14px 0;
}

    .redemption-info > div {
        display: flex;
        justify-content: space-between;
        margin: 7px 0;
    }

    .redemption-info span {
        color: #999;
    }

    .redemption-info strong {
        color: #fff;
    }

.btn-outline-gold {
    color: #D4AF37;
    border: 1px solid #D4AF37;
    border-radius: 10px;
}

    .btn-outline-gold:hover {
        background: #D4AF37;
        color: #111;
    }

@media(max-width: 768px) {

    .redemption-grid {
        grid-template-columns: 1fr;
    }

    .redemption-card {
        width: 100%;
    }
}

.redemption-modal {
    background: linear-gradient( 180deg, #1c1c1c, #121212 );
    color: #fff;
    border: 1px solid rgba(212,175,55,.4);
    border-radius: 18px;
}

    .redemption-modal .modal-header {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .redemption-modal .modal-footer {
        border-top: 1px solid rgba(255,255,255,.08);
    }

.modal-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

    .modal-detail-row span {
        color: #aaa;
    }

    .modal-detail-row strong {
        color: #fff;
    }

.admin-comments {
    background: rgba(212,175,55,.08);
    border-left: 3px solid #D4AF37;
    border-radius: 8px;
    padding: 15px;
}

    .admin-comments small {
        color: #D4AF37;
        font-weight: 700;
    }