/* Store Access Styles - Enhanced for Novania */

/* Store Access Hero Section */
.store-access-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/store-bg.jpg') center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.store-access-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: rgba(255, 215, 0, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    z-index: 1;
    animation: floatAnimation 60s infinite linear;
}

.store-access-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.store-access-title {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    animation: titleGlow 3s infinite alternate;
}

.store-access-subtitle {
    font-size: 1.5rem;
    color: var(--light);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

/* Store Access Main Section */
.store-access-main {
    padding: 60px 0;
    background: url('../images/subtle-pattern.png') repeat;
}

.store-access-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--darker);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.store-access-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.1));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.store-access-icon i {
    font-size: 4rem;
    color: var(--primary);
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.store-access-heading {
    font-size: 2.2rem;
    color: var(--light);
    text-align: center;
    margin-bottom: 20px;
}

.store-access-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Benefits Section */
.store-access-benefits {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.store-access-benefits h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    color: var(--light);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Actions Section */
.store-access-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-large {
    padding: 15px 35px !important;
    font-size: 1.1rem !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Store Preview Section */
.store-preview {
    text-align: center;
}

.store-preview h3 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.preview-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.preview-item {
    width: 280px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.preview-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.preview-image i {
    font-size: 3.5rem;
}

.preview-item h4 {
    color: var(--light);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.preview-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Animation Keyframes */
@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.5); }
}

@keyframes floatAnimation {
    0% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-50px) translateX(30px); opacity: 0.7; }
    50% { transform: translateY(-100px) translateX(-30px); opacity: 0.5; }
    75% { transform: translateY(-50px) translateX(-50px); opacity: 0.7; }
    100% { transform: translateY(0) translateX(0); opacity: 0.3; }
}

/* Responsive Styles */
/* Responsive Styles */
@media (max-width: 1200px) {
    .store-access-container {
        max-width: 90%;
    }
    
    .benefits-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .store-access-title {
        font-size: 2.8rem;
    }
    
    .store-access-subtitle {
        font-size: 1.3rem;
    }
    
    .store-access-container {
        padding: 35px 30px;
    }
    
    .store-access-heading {
        font-size: 2rem;
    }
    
    .store-access-description {
        font-size: 1.1rem;
    }
    
    .store-access-benefits h3 {
        font-size: 1.7rem;
    }
    
    .benefit-item h4 {
        font-size: 1.1rem;
    }
    
    .preview-item {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .store-access-hero {
        padding: 60px 0;
    }
    
    .store-access-title {
        font-size: 2.5rem;
    }
    
    .store-access-subtitle {
        font-size: 1.2rem;
    }
    
    .store-access-main {
        padding: 40px 0;
    }
    
    .store-access-container {
        padding: 30px 25px;
    }
    
    .store-access-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }
    
    .store-access-icon i {
        font-size: 3rem;
    }
    
    .store-access-heading {
        font-size: 1.8rem;
    }
    
    .store-access-description {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .store-access-benefits {
        padding: 25px;
    }
    
    .store-access-benefits h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 20px;
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .benefit-item i {
        font-size: 2rem;
        margin-bottom: 0;
        margin-right: 20px;
        min-width: 40px;
        text-align: center;
    }
    
    .benefit-item h4 {
        margin-bottom: 5px;
    }
    
    .store-access-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .store-preview h3 {
        font-size: 1.5rem;
    }
    
    .preview-images {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .preview-item {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .store-access-hero {
        padding: 50px 0;
    }
    
    .store-access-title {
        font-size: 2rem;
    }
    
    .store-access-subtitle {
        font-size: 1.1rem;
    }
    
    .store-access-main {
        padding: 30px 0;
    }
    
    .store-access-container {
        padding: 25px 20px;
    }
    
    .store-access-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .store-access-icon i {
        font-size: 2.5rem;
    }
    
    .store-access-heading {
        font-size: 1.6rem;
    }
    
    .store-access-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .store-access-benefits {
        padding: 20px 15px;
    }
    
    .store-access-benefits h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-item i {
        font-size: 1.8rem;
        margin-right: 15px;
    }
    
    .benefit-item h4 {
        font-size: 1.05rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .store-preview {
        margin-top: 30px;
    }
    
    .store-preview h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .preview-item {
        padding: 25px 15px;
    }
    
    .preview-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    
    .preview-image i {
        font-size: 3rem;
    }
    
    .preview-item h4 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .preview-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .store-access-title {
        font-size: 1.8rem;
    }
    
    .store-access-subtitle {
        font-size: 1rem;
    }
    
    .store-access-container {
        padding: 20px 15px;
    }
    
    .store-access-icon {
        width: 70px;
        height: 70px;
    }
    
    .store-access-icon i {
        font-size: 2.2rem;
    }
    
    .store-access-heading {
        font-size: 1.4rem;
    }
    
    .store-access-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .store-access-benefits h3 {
        font-size: 1.3rem;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .benefit-item i {
        font-size: 1.6rem;
        margin-right: 12px;
        min-width: 30px;
    }
    
    .benefit-item h4 {
        font-size: 1rem;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn-large i {
        font-size: 0.9rem;
        margin-right: 5px;
    }
    
    .preview-image {
        width: 80px;
        height: 80px;
    }
    
    .preview-image i {
        font-size: 2.5rem;
    }
    
    .preview-item h4 {
        font-size: 1.1rem;
    }
    
    .preview-item p {
        font-size: 0.85rem;
    }
}