/* =========================================================
   J2 Studios - Complete Redesign CSS
   Modern, kantig, professional gaming aesthetic
   ========================================================= */

:root {
    /* Colors */
    --bg-main: #0a0a0a;
    --bg-surface: #111;
    --bg-elevated: #161616;

    --border-main: rgba(255, 255, 255, 0.1);
    --border-subtle: rgba(255, 255, 255, 0.05);

    --text-primary: #fff;
    --text-secondary: #888;
    --text-muted: #666;

    /* Accent Colors - matching product page */
    --accent-gameplay: #6366f1;
    --accent-plugin: #8b5cf6;
    --accent-models: #ec4899;
    --accent-primary: #6366f1;

    /* Border Radius - goldene Mitte */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.3s ease;
    --trans-slow: 0.4s ease;
}

/* =========================================================
   Reset & Base
   ========================================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--trans-fast);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
}

/* =========================================================
   Button System
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--trans-normal);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-main);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-text {
    padding: 0;
    background: none;
    color: var(--accent-primary);
    font-weight: 500;
}

.btn-text:hover {
    color: var(--accent-plugin);
}

/* =========================================================
   Card System
   ========================================================= */

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all var(--trans-normal);
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* =========================================================
   Header (kept from original, styled updated)
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-main);
    transition: transform var(--trans-normal);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent-gameplay), var(--accent-plugin));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.site-logo-text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.main-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all var(--trans-fast);
}

.main-nav-link:hover {
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.nav-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--trans-fast);
}

.nav-item--has-dropdown:hover .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    padding: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--trans-fast);
    box-shadow: var(--shadow-md);
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown.nav-item--open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--trans-fast);
}

.nav-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-marketplace-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all var(--trans-fast);
}

.header-marketplace-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.discord-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #5865F2;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all var(--trans-normal);
}

.discord-cta:hover {
    background: #4752C4;
    transform: translateY(-2px);
    color: #fff;
}

.discord-icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Mobile Navigation */
.header-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.header-menu-bar {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--trans-fast);
}

@media (max-width: 900px) {
    .header-menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 57px;
        left: 0;
        right: 0;
        background: var(--bg-surface);
        border-bottom: 1px solid var(--border-main);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--trans-normal);
    }

    .site-header.is-menu-open .main-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        border-bottom: 1px solid var(--border-subtle);
        padding: 12px 0;
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 8px;
    }
}

/* =========================================================
   Hero Section (Homepage)
   ========================================================= */

.hero {
    padding: 100px 0 80px;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.eyebrow-badge {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gameplay);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-gameplay), var(--accent-plugin));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    /*margin-bottom: 32px;*/
    max-width: 600px;
}


.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta span::before {
    content: "→";
    color: var(--accent-primary);
}

/* Hero Card */
.hero-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
}

.hero-card-inner {
    padding: 32px;
}

.hero-card-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hero-card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.hero-card-sub {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.chip {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-stat-row {
    padding: 20px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 20px;
}

.hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.hero-stat-value {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.hero-grid-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.hero-grid-pill {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    text-align: center;
    transition: all var(--trans-fast);
}

.hero-grid-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-main);
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================================
   Home Highlight Section
   ========================================================= */

.home-highlight {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.home-highlight-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.home-highlight-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.home-highlight-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.home-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.home-highlight-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--trans-normal);
}

.home-highlight-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-main);
    transform: translateY(-4px);
}

.home-highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.home-highlight-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* =========================================================
   Home Products Section
   ========================================================= */

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.home-product-card {
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    transition: all var(--trans-normal);
}

.home-product-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.home-product-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.home-product-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.home-product-actions {
    display: flex;
    gap: 12px;
}

/* =========================================================
   Home News Section
   ========================================================= */

.home-news-list {
    display: grid;
    gap: 20px;
}

.news-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--trans-normal);
}

.news-item:hover {
    border-color: var(--border-main);
    transform: translateX(4px);
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 100px;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.news-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.news-tag {
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #a5b4fc;
}

.home-news-footer {
    text-align: center;
    margin-top: 40px;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-main);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent-gameplay), var(--accent-plugin));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.footer-logo-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-link-list {
    list-style: none;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--trans-fast);
}

.footer-link-list a:hover {
    color: var(--text-primary);
}

.footer-contact-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
}

.footer-contact-row {
    margin-bottom: 16px;
}

.footer-contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-contact-value {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-value a {
    color: var(--accent-primary);
}

.footer-contact-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 16px 0;
}

.footer-contact-cta {
    display: block;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--trans-fast);
}

.footer-contact-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-right {
    display: flex;
    gap: 16px;
}

.footer-dot {
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* =========================================================
   Product Grid (from products page)
   ========================================================= */

.filter-nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.filter-btn {
    padding: 12px 28px;
    background: var(--bg-main);
    border: 2px solid var(--border-main);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--trans-normal);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.filter-btn.active.all {
    border-color: #fff;
    background: #fff;
    color: #000;
}

.filter-btn.active.gameplay {
    border-color: var(--accent-gameplay);
    background: rgba(99, 102, 241, 0.2);
    color: var(--accent-gameplay);
}

.filter-btn.active.plugin {
    border-color: var(--accent-plugin);
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-plugin);
}

.filter-btn.active.models {
    border-color: var(--accent-models);
    background: rgba(236, 72, 153, 0.2);
    color: var(--accent-models);
}

.product-count {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    grid-auto-rows: 280px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    cursor: pointer;
    transition: all var(--trans-slow);
    border: 3px solid;
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* Grid Layout */
.product-card:nth-child(1) { grid-column: span 8; grid-row: span 2; }
.product-card:nth-child(2) { grid-column: span 4; grid-row: span 2; }
.product-card:nth-child(3) { grid-column: span 5; grid-row: span 1; }
.product-card:nth-child(4) { grid-column: span 7; grid-row: span 1; }
.product-card:nth-child(5) { grid-column: span 4; grid-row: span 2; }
.product-card:nth-child(6) { grid-column: span 8; grid-row: span 2; }
.product-card:nth-child(7) { grid-column: span 7; grid-row: span 2; }
.product-card:nth-child(8) { grid-column: span 5; grid-row: span 2; }

.product-card[data-category="gameplay"] {
    border-color: rgba(99, 102, 241, 0.4);
}

.product-card[data-category="plugin"] {
    border-color: rgba(139, 92, 246, 0.4);
}

.product-card[data-category="models"] {
    border-color: rgba(236, 72, 153, 0.4);
}

.product-card[data-category="gameplay"]:hover {
    border-color: var(--accent-gameplay);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.product-card[data-category="plugin"]:hover {
    border-color: var(--accent-plugin);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.product-card[data-category="models"]:hover {
    border-color: var(--accent-models);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.95) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.9rem;
    font-weight: 900;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.2);
}

.product-card[data-category="gameplay"] .card-category {
    background: rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.6);
    color: #a5b4fc;
}

.product-card[data-category="plugin"] .card-category {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    color: #c4b5fd;
}

.product-card[data-category="models"] .card-category {
    background: rgba(236, 72, 153, 0.3);
    border-color: rgba(236, 72, 153, 0.6);
    color: #f9a8d4;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.card-description {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tag {
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    color: #999;
}

.card-links {
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--trans-slow);
}

.product-card:hover .card-links {
    opacity: 1;
    transform: translateY(0);
}

.card-link {
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--trans-normal);
}

.card-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.card-link.primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.card-link.primary:hover {
    background: #f0f0f0;
}

/* Responsive */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .product-card:nth-child(1),
    .product-card:nth-child(2),
    .product-card:nth-child(5),
    .product-card:nth-child(6),
    .product-card:nth-child(7),
    .product-card:nth-child(8) {
        grid-column: span 6;
    }
    .product-card:nth-child(3),
    .product-card:nth-child(4) {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 380px;
    }
    .product-card:nth-child(1),
    .product-card:nth-child(2),
    .product-card:nth-child(3),
    .product-card:nth-child(4),
    .product-card:nth-child(5),
    .product-card:nth-child(6),
    .product-card:nth-child(7),
    .product-card:nth-child(8) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .card-links {
        opacity: 1;
        transform: translateY(0);
    }
}
