/* Store Hero Section */
.store-hero {
    background: linear-gradient(135deg, #101012, #1b1b1e);
    padding: 100px 0 60px;
    text-align: center;
}

.hero-content {
    color: white;
}

.store-brand {
    display: inline-block;
    position: relative;
}

.brand-prefix {
    font-size: 1rem;
    color: #757575;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.brand-title {
    font-family: 'Proxima Nova Alt Bold Italic';
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0;
    color: #FFFFFF;
    letter-spacing: 1px;
    position: relative;
}

.brand-title .accent {
    color: #FF5454;
}

.brand-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF5454, #ff7676);
    border-radius: 2px;
}

.brand-tagline {
    font-size: 1.1rem;
    color: #757575;
    margin-top: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Proxima Nova Alt Bold Italic';
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hero-title .accent {
    color: #FF5454;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #757575;
    margin-bottom: 2rem;
}

/* Products Showcase */
.products-showcase {
    padding: 80px 0;
    background-color: #101012;
    min-height: 100vh;
}

.products-showcase .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 1400px;
}

/* Large Featured Product - Custom Plugins */
.product-large {
    grid-column: 1;
    grid-row: 1;
    background: linear-gradient(135deg, #FF5454, #ff7676);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.product-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.product-large .product-content {
    position: relative;
    z-index: 2;
}

.product-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.product-large .product-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.product-large h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-large p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.product-cta {
    background: white;
    color: #FF5454;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Right Side Products */
.products-right {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-medium {
    background: linear-gradient(145deg, #1b1b1e, #2a2a2e);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #3a3a3e;
    flex: 1;
}

.product-medium:hover {
    transform: translateY(-5px);
    border-color: #FF5454;
    box-shadow: 0 15px 30px rgba(255, 84, 84, 0.1);
}

.product-medium .product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF5454, #ff7676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.product-medium h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.product-medium p {
    color: #757575;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-cta-small {
    background: linear-gradient(135deg, #3a3a3e, #4a4a4e);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.product-cta-small:hover {
    background: linear-gradient(135deg, #FF5454, #ff7676);
    transform: translateY(-2px);
}

/* Featured Product - Minecraft Analysis */
.product-featured {
    grid-column: 1 / -1;
    grid-row: 2;
    background: linear-gradient(145deg, #1b1b1e, #2a2a2e);
    border: 2px solid #FF5454;
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.featured-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.featured-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.featured-left .product-icon.large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF5454, #ff7676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.featured-info h2 {
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.featured-info p {
    color: #757575;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.features-list span {
    color: #FFFFFF;
    font-size: 0.9rem;
}

.features-list i {
    color: #FF5454;
    margin-right: 0.5rem;
}

.featured-right {
    text-align: center;
    flex-shrink: 0;
}

.price-display {
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    color: #757575;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    color: #FF5454;
    font-weight: bold;
    font-family: 'Proxima Nova Alt Bold Italic';
    display: block;
}

.product-cta-primary {
    background: linear-gradient(135deg, #FF5454, #ff7676);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-cta-primary:hover {
    background: linear-gradient(135deg, #ff7676, #ff9999);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 84, 84, 0.3);
}

/* Quick Contact */
.quick-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF5454, #ff7676);
    text-align: center;
}

.contact-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-btn {
    background: white;
    color: #FF5454;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-showcase .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .product-large {
        grid-column: 1;
        grid-row: 1;
    }
    
    .products-right {
        grid-column: 1;
        grid-row: 2;
        flex-direction: row;
    }
    
    .product-featured {
        grid-column: 1;
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .product-large {
        padding: 2rem;
        min-height: 300px;
    }
    
    .product-large h2 {
        font-size: 2rem;
    }
    
    .products-right {
        flex-direction: column;
    }
    
    .featured-content {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-left {
        flex-direction: column;
        text-align: center;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .product-large {
        padding: 1.5rem;
    }
    
    .product-medium {
        padding: 1.5rem;
    }
    
    .product-featured {
        padding: 2rem;
    }
    
    .featured-left .product-icon.large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}