/* ===== STORE INFO PAGE SPECIFIC STYLES ===== */

.main-content {
    padding: 60px 0;
}

/* Store Overview Section */
.store-overview {
    margin-bottom: 60px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.overview-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Lilita One', cursive;
}

.overview-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Store Details Section */
.store-details {
    margin-bottom: 60px;
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.details-text h2 {
    font-family: 'Lilita One', cursive;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #333;
}

.details-text h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #333;
}

.details-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.details-text ul {
    list-style: none;
    padding: 0;
}

.details-text li {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.details-image {
    text-align: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-placeholder span {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.image-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.image-placeholder p {
    opacity: 0.9;
}

/* Store Hours Section */
.store-hours {
    margin-bottom: 60px;
    text-align: center;
}

.store-hours h2 {
    font-family: 'Lilita One', cursive;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.hours-grid {
    max-width: 500px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
}

.day-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.hours {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.1rem;
}

.hours-note {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
}

/* Location Map Section */
.location-map {
    margin-bottom: 60px;
    text-align: center;
}

.location-map h2 {
    font-family: 'Lilita One', cursive;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder span {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Store Features Section */
.store-features {
    text-align: center;
}

.store-features h2 {
    font-family: 'Lilita One', cursive;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .details-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .overview-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .store-hours h2,
    .location-map h2,
    .store-features h2,
    .details-text h2 {
        font-size: 2rem;
    }
    
    .day-row {
        padding: 15px 20px;
    }
    
    .map-placeholder {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-card {
        padding: 25px 20px;
    }
    
    .day-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .map-placeholder {
        padding: 30px 15px;
    }
    
    .map-placeholder span {
        font-size: 3rem;
    }
}
