/* Footer Pages Styling - Custom styles for locally created footer pages */

/* General page content styling */
.page .entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* FAQ Page Styling */
.faq-section h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.faq-section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #666;
}

/* Privacy Policy Styling */
.privacy-policy-content h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.privacy-policy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-policy-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Contact Page Styling */
.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info .contact-item {
    margin-bottom: 2rem;
}

.contact-info h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section h3,
.business-hours h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Return & Exchange Policy Styling */
.return-policy-content h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.return-policy-content ul,
.return-policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.return-policy-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Blog Page Styling */
.blog-page-content h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.blog-posts,
.blog-categories {
    margin: 2rem 0;
}

.blog-posts ul,
.blog-categories ul {
    list-style: none;
    padding: 0;
}

.blog-posts li,
.blog-categories li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

/* Search Page Styling */
.search-page-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    margin: 2rem 0;
}

.search-form input[type="search"] {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.search-form button {
    background: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #333;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.search-suggestions li {
    margin: 0.5rem 0;
}

.search-suggestions a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
}

.search-suggestions a:hover {
    color: #666;
}

.browse-button {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.browse-button:hover {
    background: #333;
    color: white;
}

/* About Page Styling */
.about-page-content {
    line-height: 1.6;
}

.about-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #333;
}

.our-story,
.our-mission,
.why-choose-us,
.contact-info {
    margin: 2.5rem 0;
}

.about-page-content h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
}

.why-choose-us li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.why-choose-us li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Terms and Shipping Info Styling */
.terms-content h3,
.shipping-info-content h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.terms-content p,
.shipping-info-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #666;
}

.terms-content ul,
.shipping-info-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-content li,
.shipping-info-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page .entry-content {
        padding: 1rem;
    }
    
    .search-form input[type="search"] {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-form button,
    .browse-button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .search-form,
    .browse-button {
        display: none;
    }
}
