/* =========================================
   MAHADEV ASTROLOGER MA - DIVINE STORE CSS
   ========================================= */

/* Store Header - Padding added to prevent hiding behind the fixed navbar */
.store-header {
    padding-top: 90px; 
    text-align: center;
}

.store-header h1 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 2.8rem;
}

/* Intro Section */
.store-intro {
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    color: #ccc;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.store-intro p {
    margin-bottom: 15px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03); 
    border: 3px solid rgba(245, 197, 66, 0.15); 
    border-radius: 15px; 
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 197, 66, 0.15);
    border-color: #f5c542;
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.product-title {
    color: #f5c542;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Buy Button */
.buy-btn {
    background: transparent;
    border: 1px solid #f5c542;
    color: #f5c542;
    padding: 10px 25px;
    border-radius: 50px; 
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.buy-btn:hover {
    background: #f5c542;
    color: #111;
}

/* SEO Info Sections & FAQs */
.info-section, .faq-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(245, 197, 66, 0.1);
    margin-bottom: 40px;
}

.info-section h2, .faq-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.info-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #f5c542;
}

.info-box h4 {
    color: #f5c542;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-box p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Founder Message */
.astrologer-note {
    padding: 35px;
    background: rgba(245, 197, 66, 0.05);
    border: 1px solid rgba(245, 197, 66, 0.2);
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.astrologer-note p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Custom FAQ Details */
details.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 197, 66, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

details.faq-item[open] {
    border-color: #f5c542;
    background: rgba(245, 197, 66, 0.05);
}

summary.faq-question {
    color: #f5c542;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary.faq-question::-webkit-details-marker {
    display: none;
}

summary.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #f5c542;
}

details.faq-item[open] summary.faq-question::after {
    content: '-';
}

.faq-answer {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(245, 197, 66, 0.15);
}

/* Legal Disclaimer */
.disclaimer-box {
    padding: 25px;
    background: rgba(255, 50, 50, 0.05);
    border-left: 5px solid #f5c542;
    border-radius: 12px;
    margin-bottom: 10px;
}

.disclaimer-title {
    color: #f5c542;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-box p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
