/* OneClick Plugin Styles */

/* Header Styles */
.oc-header {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.oc-header-top {
    background-color: #1e2330;
    padding: 12px 0;
}

.oc-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.oc-logo img {
    height: 40px;
    width: auto;
}

.oc-search-bar {
    display: flex;
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.oc-search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.oc-search-btn {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oc-search-btn-green {
    background-color: #10b981;
    color: white;
}

.oc-search-btn-orange {
    background-color: #f97316;
    color: white;
    border-radius: 0 4px 4px 0;
}

.oc-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oc-btn {
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.oc-btn:hover {
    opacity: 0.9;
}

.oc-btn-offers {
    background: transparent;
    color: #fbbf24;
    border: 1px solid #fbbf24;
}

.oc-btn-upload {
    background: transparent;
    color: white;
    border: 1px solid #4b5563;
}

.oc-btn-login {
    background: transparent;
    color: white;
}

.oc-btn-signup {
    background-color: #06b6d4;
    color: white;
}

.oc-header-nav {
    background-color: #1e2330;
    border-top: 1px solid #2d3548;
    padding: 10px 0;
}

.oc-nav {
    display: flex;
    gap: 30px;
}

.oc-nav a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.oc-nav a:hover {
    color: white;
}

/* Main Content Styles */
.oc-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
}

.oc-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.oc-intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

/* Products List - Vertical Format */
.oc-products-list {
    margin-bottom: 50px;
}

.oc-product-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.oc-product-item:last-child {
    border-bottom: none;
}

.oc-product-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.oc-product-image {
    margin-bottom: 20px;
}

.oc-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.oc-product-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.oc-product-download {
    margin-top: 15px;
}

.oc-download-btn {
    display: inline-block;
    background-color: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s;
}

.oc-download-btn:hover {
    background-color: #059669;
    color: white;
}

/* FAQ Section */
.oc-faq-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.oc-faq-heading {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.oc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.oc-faq-item {
    border: 1px solid #e5e7eb;
    border-bottom: none;
}

.oc-faq-item:last-child {
    border-bottom: 1px solid #e5e7eb;
}

.oc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background: #f9fafb;
    transition: background-color 0.2s;
}

.oc-faq-question:hover {
    background: #f3f4f6;
}

.oc-faq-q-text {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    flex: 1;
    padding-right: 15px;
}

.oc-faq-toggle {
    font-size: 20px;
    font-weight: 300;
    color: #666;
    width: 24px;
    text-align: center;
}

.oc-faq-answer {
    display: none;
    padding: 20px;
    background: white;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    border-top: 1px solid #e5e7eb;
}

.oc-faq-item.active .oc-faq-answer {
    display: block;
}

/* Footer Styles */
.oc-footer {
    background-color: #1e2330;
    color: #9ca3af;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.oc-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.oc-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.oc-footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.oc-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oc-footer-col li {
    margin-bottom: 12px;
}

.oc-footer-col a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.oc-footer-col a:hover {
    color: white;
}

.oc-social-links {
    display: flex;
    gap: 15px;
}

.oc-social-icon {
    color: #9ca3af;
    transition: color 0.2s;
}

.oc-social-icon:hover {
    color: white;
}

.oc-footer-bottom {
    border-top: 1px solid #2d3548;
    padding-top: 20px;
    text-align: center;
}

.oc-footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .oc-header-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .oc-search-bar {
        order: 3;
        max-width: 100%;
        margin: 10px 0 0;
        width: 100%;
    }

    .oc-header-actions {
        flex-wrap: wrap;
        gap: 8px;
    }

    .oc-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .oc-footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .oc-page-title {
        font-size: 26px;
    }

    .oc-product-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .oc-footer-columns {
        grid-template-columns: 1fr;
    }
}
