/* =========================================================
   PARTEA 4 - CARDURI AMD RYZEN
   ========================================================= */

.rs-amd-card{
    --amd-orange:#ff6500;
    --amd-orange-light:#ff9a4a;
    --amd-red:#e51f2b;

    position:relative;
    width:100%;
    min-width:0;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border:1px solid rgba(255,101,0,.26);
    border-radius:26px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255,101,0,.18),
            transparent 38%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(229,31,43,.08),
            transparent 38%
        ),
        linear-gradient(
            155deg,
            rgba(24,17,15,.99),
            rgba(10,10,14,.99)
        );
    box-shadow:
        0 25px 75px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.025);
    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.rs-amd-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,101,0,.48);
    box-shadow:
        0 38px 95px rgba(0,0,0,.42),
        0 0 52px rgba(255,101,0,.11);
}

.rs-amd-card.featured{
    border-color:rgba(255,101,0,.48);
    box-shadow:
        0 30px 85px rgba(0,0,0,.36),
        0 0 55px rgba(255,101,0,.10);
}

.rs-amd-card.x3d{
    border-color:rgba(229,31,43,.42);
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(229,31,43,.20),
            transparent 38%
        ),
        radial-gradient(
            circle at 0% 100%,
            rgba(255,101,0,.12),
            transparent 38%
        ),
        linear-gradient(
            155deg,
            rgba(27,14,16,.99),
            rgba(9,9,13,.99)
        );
}

.rs-amd-card:before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(
            115deg,
            transparent 28%,
            rgba(255,255,255,.04) 48%,
            transparent 68%
        );
    transform:translateX(-120%);
    transition:transform .7s ease;
}

.rs-amd-card:hover:before{
    transform:translateX(120%);
}

.rs-amd-watermark{
    position:absolute;
    right:-15px;
    top:72px;
    color:rgba(255,101,0,.045);
    font-family:"Orbitron",sans-serif;
    font-size:76px;
    font-weight:900;
    letter-spacing:-.08em;
    pointer-events:none;
    user-select:none;
}

.rs-amd-top{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    padding:21px 21px 0;
}

.rs-amd-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.rs-amd-logo{
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    flex-shrink:0;
    border:1px solid rgba(255,101,0,.28);
    border-radius:15px;
    color:#fff;
    background:
        linear-gradient(
            145deg,
            rgba(255,101,0,.24),
            rgba(229,31,43,.08)
        );
    box-shadow:0 0 28px rgba(255,101,0,.11);
    font-family:"Orbitron",sans-serif;
    font-size:10px;
    font-weight:900;
}

.rs-amd-brand-copy small{
    display:block;
    color:#ff9957;
    font-size:9px;
    font-weight:900;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.rs-amd-brand-copy strong{
    display:block;
    margin-top:5px;
    font-family:"Orbitron",sans-serif;
    font-size:17px;
}

.rs-amd-stock{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:8px 10px;
    border:1px solid rgba(48,239,146,.16);
    border-radius:999px;
    color:#78ffc0;
    background:rgba(48,239,146,.06);
    font-size:8px;
    font-weight:900;
    letter-spacing:.08em;
    white-space:nowrap;
}

.rs-amd-stock:before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:#30ef92;
    box-shadow:0 0 10px rgba(48,239,146,.8);
}

.rs-amd-stock.preorder{
    color:#ffc878;
    border-color:rgba(255,173,50,.18);
    background:rgba(255,173,50,.07);
}

.rs-amd-stock.preorder:before{
    background:#ffad32;
    box-shadow:0 0 10px rgba(255,173,50,.7);
}

.rs-amd-body{
    position:relative;
    z-index:2;
    padding:22px 21px 0;
}

.rs-amd-title-row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
}

.rs-amd-title h3{
    margin:0;
    font-family:"Orbitron",sans-serif;
    font-size:23px;
    line-height:1.15;
    letter-spacing:-.035em;
}

.rs-amd-title p{
    margin:8px 0 0;
    color:#9e978f;
    font-size:12px;
    line-height:1.65;
}

.rs-amd-series{
    flex-shrink:0;
    padding:7px 9px;
    border:1px solid rgba(255,101,0,.17);
    border-radius:9px;
    color:#ffbd90;
    background:rgba(255,101,0,.07);
    font-size:8px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.rs-amd-core-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:9px;
    margin-top:19px;
}

.rs-amd-core-item{
    min-width:0;
    padding:12px 11px;
    border:1px solid rgba(255,101,0,.10);
    border-radius:13px;
    background:rgba(255,101,0,.035);
}

.rs-amd-core-item small{
    display:block;
    color:#8e7667;
    font-size:8px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.rs-amd-core-item strong{
    display:block;
    margin-top:6px;
    color:#fff;
    font-size:11px;
    line-height:1.35;
}

.rs-amd-spec-list{
    display:grid;
    gap:9px;
    margin-top:17px;
}

.rs-amd-spec{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:10px;
    min-height:47px;
    padding:10px 12px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:12px;
    background:rgba(255,255,255,.022);
}

.rs-amd-spec-icon{
    width:31px;
    height:29px;
    display:grid;
    place-items:center;
    border-radius:8px;
    color:#ff9a59;
    background:rgba(255,101,0,.08);
    font-family:"Orbitron",sans-serif;
    font-size:7px;
    font-weight:900;
}

.rs-amd-spec-label{
    color:#7c746f;
    font-size:9px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.07em;
}

.rs-amd-spec-value{
    color:#fff3ea;
    font-size:10px;
    font-weight:900;
    text-align:right;
}

.rs-amd-performance{
    margin-top:18px;
    padding:14px;
    border:1px solid rgba(255,101,0,.10);
    border-radius:14px;
    background:rgba(255,101,0,.025);
}

.rs-amd-performance-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:10px;
}

.rs-amd-performance-head span{
    color:#8b7568;
    font-size:9px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.rs-amd-performance-head strong{
    color:#fff;
    font-size:10px;
}

.rs-amd-performance-bar{
    height:6px;
    overflow:hidden;
    border-radius:999px;
    background:rgba(255,255,255,.055);
}

.rs-amd-performance-bar span{
    display:block;
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg,#ff6500,#e91f2b);
    box-shadow:0 0 14px rgba(255,101,0,.35);
}

.rs-amd-tags{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-top:15px;
}

.rs-amd-tag{
    padding:7px 9px;
    border:1px solid rgba(255,101,0,.11);
    border-radius:999px;
    color:#b69581;
    background:rgba(255,101,0,.035);
    font-size:8px;
    font-weight:900;
}

.rs-amd-footer{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:15px;
    margin-top:auto;
    padding:21px;
}

.rs-amd-price small{
    display:block;
    color:#806f65;
    font-size:9px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.rs-amd-price strong{
    display:block;
    margin-top:5px;
    font-family:"Orbitron",sans-serif;
    font-size:31px;
    letter-spacing:-.045em;
}

.rs-amd-price strong span{
    margin-left:3px;
    color:#887b73;
    font-family:"Inter",sans-serif;
    font-size:10px;
    font-weight:800;
    letter-spacing:0;
}

.rs-amd-order-btn{
    min-height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:0 16px;
    border-radius:12px;
    color:#fff;
    text-decoration:none;
    background:linear-gradient(135deg,#ff720f,#e91f2b);
    box-shadow:0 12px 30px rgba(255,101,0,.17);
    font-size:10px;
    font-weight:900;
    transition:.2s ease;
}

.rs-amd-order-btn:hover{
    transform:translateY(-2px);
    filter:brightness(1.08);
}

.rs-amd-order-btn svg{
    width:15px;
    height:15px;
    stroke:currentColor;
}

@media(max-width:430px){
    .rs-amd-top,
    .rs-amd-body,
    .rs-amd-footer{
        padding-left:16px;
        padding-right:16px;
    }

    .rs-amd-title-row{
        flex-direction:column;
    }

    .rs-amd-core-grid{
        grid-template-columns:1fr;
    }

    .rs-amd-footer{
        align-items:stretch;
        flex-direction:column;
    }

    .rs-amd-order-btn{
        width:100%;
    }
}