.shop-hero {
position: relative;
padding: 140px 32px 60px;
background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(76, 175, 80, 0.05));
text-align: center;
margin-bottom: 60px;
}

.shop-hero-content {
max-width: 800px;
margin: 0 auto;
}

.shop-hero h1 {
font-size: 3.5rem;
font-weight: 900;
margin-bottom: 20px;
background: linear-gradient(135deg, #fff, #aaa);
background-clip: text;
-webkit-text-fill-color: transparent;
}

.shop-hero p {
color: var(--muted);
font-size: 1.2rem;
line-height: 1.6;
max-width: 600px;
margin: 0 auto 30px;
}

.shop-filters {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
margin: 40px 0;
padding: 0 32px;
}

.filter-btn {
padding: 10px 24px;
background: var(--panel);
border: 1px solid var(--glass-border);
border-radius: 999px;
color: var(--muted);
cursor: pointer;
transition: all 0.3s ease;
font-weight: 600;
font-size: 0.95rem;
}

.filter-btn:hover {
background: rgba(255,255,255,0.1);
color: var(--text);
}

.filter-btn.active {
background: rgba(255,255,255,0.15);
color: var(--text);
border-color: rgba(255,255,255,0.3);
box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.shop-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 32px;
padding: 0 32px 80px;
max-width: 1400px;
margin: 0 auto;
}

.product-item {
background: var(--card-bg);
border: 1px solid var(--glass-border);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.3s ease;
position: relative;
}

.product-item:hover {
transform: translateY(-5px);
box-shadow: 0 20px 60px rgba(0,0,0,0.6);
border-color: rgba(255,255,255,0.2);
}

.product-image {
height: 220px;
background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
}

.product-image img {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
object-fit: contain;
transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
transform: scale(1.05);
}

.product-info {
padding: 24px;
}

.product-category {
display: inline-block;
padding: 4px 12px;
background: rgba(255,255,255,0.1);
border-radius: 12px;
font-size: 0.8rem;
color: var(--muted);
margin-bottom: 12px;
}

.product-title {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 8px;
color: var(--text);
}

.product-description {
color: var(--muted);
font-size: 0.95rem;
line-height: 1.5;
margin-bottom: 20px;
min-height: 70px;
}

.product-price {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
padding-top: 20px;
}

.price-value {
font-size: 1.5rem;
font-weight: 800;
background: linear-gradient(135deg, #fff, #aaa);
background-clip: text;
-webkit-text-fill-color: transparent;
}

.price-tax {
font-size: 0.85rem;
color: var(--muted-2);
}

.product-actions {
display: flex;
gap: 12px;
}

.product-actions .btn {
flex: 1;
justify-content: center;
}

.shop-empty {
text-align: center;
padding: 80px 32px;
color: var(--muted);
font-size: 1.1rem;
grid-column: 1 / -1;
}

.shop-cart {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 1000;
}

.cart-btn {
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, #2196f3, #1976d2);
color: white;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
transition: all 0.3s ease;
}

.cart-btn:hover {
transform: scale(1.1);
box-shadow: 0 15px 40px rgba(33, 150, 243, 0.6);
}

.cart-count {
position: absolute;
top: -5px;
right: -5px;
background: #ff4757;
color: white;
width: 24px;
height: 24px;
border-radius: 50%;
font-size: 0.8rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
animation: pulse 2s infinite;
}

@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}

.cart-modal {
display: none;
position: fixed;
top: 0;
right: 0;
width: 400px;
height: 100vh;
background: var(--bg-2);
border-left: 1px solid var(--glass-border);
z-index: 2000;
transform: translateX(100%);
transition: transform 0.3s ease;
}

.cart-modal.open {
display: block;
transform: translateX(0);
}

.cart-header {
padding: 24px;
border-bottom: 1px solid var(--glass-border);
display: flex;
justify-content: space-between;
align-items: center;
}

.cart-header h3 {
margin: 0;
font-size: 1.3rem;
}

.cart-close {
background: none;
border: none;
color: var(--muted);
font-size: 1.5rem;
cursor: pointer;
padding: 0;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
}

.cart-close:hover {
background: rgba(255,255,255,0.1);
color: var(--text);
}

.cart-items {
padding: 20px;
height: calc(100vh - 200px);
overflow-y: auto;
}

.cart-item {
display: flex;
gap: 12px;
padding: 16px;
background: rgba(255,255,255,0.03);
border-radius: 12px;
margin-bottom: 12px;
border: 1px solid rgba(255,255,255,0.05);
}

.cart-item-image {
width: 60px;
height: 60px;
border-radius: 8px;
overflow: hidden;
flex-shrink: 0;
}

.cart-item-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.cart-item-info {
flex: 1;
}

.cart-item-title {
font-size: 0.95rem;
font-weight: 600;
margin-bottom: 4px;
}

.cart-item-price {
font-size: 0.9rem;
color: var(--muted);
}

.cart-item-remove {
background: none;
border: none;
color: var(--muted);
cursor: pointer;
padding: 4px;
border-radius: 4px;
align-self: center;
}

.cart-item-remove:hover {
background: rgba(255, 87, 87, 0.1);
color: #ff5757;
}

.cart-footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
border-top: 1px solid var(--glass-border);
background: var(--bg-2);
}

.cart-total {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
font-size: 1.1rem;
font-weight: 600;
}

.cart-total-price {
background: linear-gradient(135deg, #fff, #aaa);
background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 1.3rem;
}

.cart-footer .btn {
width: 100%;
justify-content: center;
}

.cart-empty {
text-align: center;
padding: 60px 20px;
color: var(--muted);
}

@media (max-width: 768px) {
.shop-hero {
    padding: 120px 20px 40px;
}

.shop-hero h1 {
    font-size: 2.5rem;
}

.shop-filters {
    padding: 0 20px;
}

.shop-grid {
    padding: 0 20px 60px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.cart-modal {
    width: 100%;
}

.shop-cart {
    bottom: 20px;
    right: 20px;
}
}

@media (max-width: 480px) {
.shop-hero h1 {
    font-size: 2rem;
}

.shop-hero p {
    font-size: 1rem;
}

.shop-grid {
    grid-template-columns: 1fr;
}

.product-actions {
    flex-direction: column;
}

.filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}
}