/* RKNSTD Store Premium Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --rkn-black: #0a0a0a;
    --rkn-white: #ffffff;
    --rkn-gray: #f4f4f4;
    --rkn-accent: #2563eb; /* Royal Blue accent or keep monochrome */
    --rkn-text-muted: #888888;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--rkn-black);
    background-color: var(--rkn-white);
    overflow-x: hidden;
}

/* Navbar */
.navbar-store {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--rkn-black);
    font-size: 0.95rem;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--rkn-black);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.cart-icon {
    font-size: 1.4rem;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    font-size: 0.7rem;
    padding: 3px 6px;
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-text h1 {
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.btn-store {
    background: var(--rkn-black);
    color: var(--rkn-white);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--rkn-black);
}

.btn-store:hover {
    background: transparent;
    color: var(--rkn-black);
}

/* Product Card */
.product-card {
    border: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 125%; /* 4:5 Aspect Ratio */
    background: #f4f4f4;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px 0;
}

.product-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-weight: 400;
    color: var(--rkn-text-muted);
}

.product-price .active-price {
    color: var(--rkn-black);
    font-weight: 600;
}

/* Slanted New Ribbon */
.ribbon-wrapper {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    z-index: 10;
}

.ribbon-new {
    position: absolute;
    top: 20px;
    right: -35px;
    width: 120px;
    background: var(--rkn-black);
    color: var(--rkn-white);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 0;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background: var(--rkn-black);
    color: var(--rkn-white);
    padding: 60px 0 30px;
}


.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.7;
}

.footer-link:hover {
    color: var(--rkn-white);
    opacity: 1;
}

.btn-black { background-color: #000; color: #fff; border: 1px solid #000; } .btn-black:hover { background-color: #333; color: #fff; border-color: #333; }
