.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.03);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-links a {
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.ip-btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    color: var(--primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ip-btn:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 203, 255, 0.3);
}

.hero-banner {
    background: linear-gradient(135deg, rgba(0, 203, 255, 0.85), rgba(0, 255, 255, 0.85));
    border-radius: 24px;
    padding: 50px;
    color: white;
    display: flex;
    box-shadow: 0 15px 35px rgba(0, 203, 255, 0.25);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-banner p {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 20px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-buy, .btn-more {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-buy {
    background-color: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
}

.btn-more {
    background: rgba(255,255,255,0.1);
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(5px);
}

.btn-more:hover {
    background: white;
    color: var(--primary);
}

.section-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 5px;
}

.mode-selector, .category-selector {
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 35px;
}

.mode-btn, .cat-btn {
    width: 100%;
    padding: 15px 20px;
    border-radius: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--text-main);
    background: transparent;
}

.mode-btn i, .cat-btn i {
    font-size: 18px;
    color: var(--primary);
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mode-btn:hover, .cat-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.mode-btn.active, .cat-btn.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 203, 255, 0.3);
}

.mode-btn.active i, .cat-btn.active i {
    color: white;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 25px;
    border-radius: 20px;
}

.store-header h2 {
    font-size: 24px;
    font-weight: 800;
}

.history-btn {
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.history-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 25px;
}

.product-card {
    border-radius: 20px;
    padding: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.4s ease forwards;
    opacity: 0;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

.product-image {
    height: 190px;
    width: calc(100% + 30px);
    margin: -15px -15px 15px -15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 20px 20px 0 0;
}

.product-title {
    display: none;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    background: rgba(255,255,255,0.6);
    padding: 10px;
    border-radius: 14px;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
}

.product-price span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    line-height: 1;
}

.btn-item-buy {
    background: var(--gradient);
    color: white;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-item-buy:hover {
    box-shadow: 0 5px 15px rgba(0, 203, 255, 0.4);
    transform: scale(1.05);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(0, 203, 255, 0.4);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}