/* ========================================
   STORE STYLES - Seven Role Play
======================================== */

/* Shop Header */
.shop-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.shop-title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.shop-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #9912E6, #9912E6, #9912E6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(153, 18, 230, 0.5);
    position: relative;
     font-family: 'Tajawal', sans-serif !important;
}

.shop-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
     font-family: 'Tajawal', sans-serif !important;
}

/* Filters */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
     font-family: 'Tajawal', sans-serif !important;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
     font-family: 'Tajawal', sans-serif !important;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #9912E6, #9912E6);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(153, 18, 230, 0.4);
     font-family: 'Tajawal', sans-serif !important;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
     font-family: 'Tajawal', sans-serif !important;
}

/* Shop Item */
.shop-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.shop-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.shop-item:hover::before {
    left: 100%;
}

.shop-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(153, 18, 230, 0.5);
}

/* Item Badge */
.item-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #9912E6, #9912E6);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    animation: pulse 2s infinite;
}

.special-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.lifetime {
    background: linear-gradient(135deg, #00d4ff, #00f5ff);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Item Glow */
.item-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #9912E6, #9912E6, #9912E6, #9912E6);
    border-radius: 22px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-item:hover .item-glow {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Item Image */
.item-image1 {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.item-image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-item:hover .item-image img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(153, 18, 230, 0.9), rgba(165, 180, 252, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay i {
    font-size: 2.5rem;
    color: #000;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Item Content */
.item-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.item-features {
    margin-bottom: 1.5rem;
}

.item-features span {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-features i {
    color: #9912E6;
    width: 16px;
}

/* Item Price */
.item-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #9912E6;
    text-shadow: 0 2px 10px rgba(153, 18, 230, 0.5);
}

.old-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

/* Buy Button */
.buy-btn {
    width: 100%;
    background: linear-gradient(135deg, #9912E6, #9912E6);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: not-allowed;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
     font-family: 'Tajawal', sans-serif !important;
}

.buy-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(153, 18, 230, 0.4);
}

/* Shop Footer */
.shop-footer {
    text-align: center;
    padding: 3rem 0;
}

.coming-soon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon i {
    font-size: 3rem;
    color: #9912E6;
    margin-bottom: 1rem;
    display: block;
}

.coming-soon h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .shop-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .item-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .shop-header {
        padding: 1rem 0;
    }
    
    .shop-title {
        font-size: 2rem;
    }
    
    .coming-soon {
        padding: 2rem 1.5rem;
    }
}

/* Filter Animation */
.shop-item {
    opacity: 1;
    transform: scale(1);
}

.shop-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

/* Loading Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.shop-item:nth-child(1) { animation: float 6s ease-in-out infinite; }
.shop-item:nth-child(2) { animation: float 6s ease-in-out 1s infinite; }
.shop-item:nth-child(3) { animation: float 6s ease-in-out 2s infinite; }
.shop-item:nth-child(4) { animation: float 6s ease-in-out 3s infinite; }
.shop-item:nth-child(5) { animation: float 6s ease-in-out 4s infinite; }
.shop-item:nth-child(6) { animation: float 6s ease-in-out 5s infinite; }