/* Store Page Specific Styles */

/* Store Hero Section */
.store-hero {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: #fff;
    padding: 60px 0;
}

.store-hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.store-hero .store-logo {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.store-hero .store-logo img {
    max-width: 100%;
    max-height: 100%;
}

.store-info {
    flex: 1;
}

.store-info h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.store-info p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.store-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
}

.stat i {
    font-size: 16px;
}

/* Store About Section */
.store-about {
    padding: 60px 0;
    background: #f9f9f9;
}

.store-about h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.store-about p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.store-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature p {
    margin-bottom: 0;
    color: #777;
}

/* Store Coupons Section */
.store-coupons {
    padding: 60px 0;
}

.store-coupons h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.coupon-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.coupon-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
    color: #777;
}

.shop-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    background: var(--secondary-color);
}

.shop-btn:hover {
    background: #353e6b;
}

/* Store Tips Section */
.store-tips {
    padding: 60px 0;
    background: #f9f9f9;
}

.store-tips h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tip-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tip-card p {
    margin-bottom: 0;
    color: #777;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .store-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .store-stats {
        justify-content: center;
    }
    
    .store-about p {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .store-hero {
        padding: 40px 0;
    }
    
    .store-hero .store-logo {
        width: 120px;
        height: 120px;
    }
    
    .store-info h1 {
        font-size: 26px;
    }
    
    .store-info p {
        font-size: 16px;
    }
    
    .stat {
        font-size: 12px;
    }
}
