/* Shop Page Styles - Clean High Tech */

.shop-page-wrapper {
    background-color: #f8fafc;
    color: #1e293b;
    min-height: 80vh;
    padding-bottom: 80px;
}

.shop-hero {
    background: white;
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    /* Dot pattern */
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
}

.shop-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #0f172a;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}

.shop-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    padding-top: 60px;
}

.shop-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    /* Sharper */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.shop-card:hover {
    border-color: #FDBA74;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Corner Accents */
.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0f172a;
    transition: width 0.3s ease;
}

.shop-card:hover::before {
    width: 100%;
}

.shop-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.shop-icon-box {
    width: 100px;
    height: 100px;
    background: #f1f5f9;
    background-image: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 3rem;
    position: relative;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-icon-box {
    transform: scale(1.05);
}

.shop-item-title {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -0.5px;
}

.shop-item-desc {
    color: #64748b;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.shop-price {
    font-family: 'Courier New', monospace;
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: #ffedd5;
    padding: 4px 12px;
    border-radius: 4px;
}

.btn-shop {
    width: 100%;
    background: #0f172a;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.btn-shop:hover {
    background: #334155;
}