/* Info Pages Styles (Shipping Info, Care Guide) */

.info-page {
    padding: 3rem 0 5rem;
    min-height: calc(100vh - 200px);
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Info Section */
.info-section {
    margin-bottom: 4rem;
}

.info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 1rem;
}

.info-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

/* Info Box */
.info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.info-box p {
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Shipping FAQ */
.shipping-faq {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shipping-faq .faq-item {
    background: white;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.shipping-faq .faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.shipping-faq .faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.shipping-faq .faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Notice Box */
.notice-box {
    background: #fff8dc;
    border: 1px solid #ffd700;
    padding: 1.5rem;
    border-radius: 8px;
}

.notice-box ul {
    list-style: none;
    padding: 0;
}

.notice-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.notice-box ul li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Care Grid */
.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.care-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.care-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.care-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.care-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Storage Tips */
.storage-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tip-item {
    background: white;
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
}

.tip-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tip-item ul {
    list-style: none;
    padding: 0;
}

.tip-item ul li {
    padding: 0.5rem 0;
    line-height: 1.5;
}

/* Special Tips */
.special-tips {
    display: grid;
    gap: 1.5rem;
}

/* Warning Box */
.warning-box {
    background: #ffebee;
    border: 2px solid #f44336;
    padding: 2rem;
    border-radius: 8px;
}

.warning-box p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #d32f2f;
}

.warning-box ul {
    list-style: none;
    padding: 0;
}

.warning-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #d32f2f;
}

.warning-box ul li::before {
    content: "×";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 3rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-page {
        padding: 2rem 0 80px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .info-section {
        margin-bottom: 3rem;
    }
    
    .info-section h2 {
        font-size: 1.5rem;
    }
    
    .care-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .storage-tips {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-box,
    .notice-box,
    .warning-box {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
}