/*
Theme Name: NTL Master Theme
Theme URI: https://ntlofnyc.co/
Author: NTL
Author URI: https://ntlofnyc.co/
Description: A powerful, zero-CSS blank theme with built-in AI SEO Suite, complete Theme Options panel, code injection, schema management, and WooCommerce support. Designed as a raw canvas for developers who want full control over their HTML/CSS while having enterprise-level SEO features built-in.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: ntl-master
Tags: blank, developer, seo, woocommerce, custom-code, schema, ai

NTL Master Theme - The Ultimate Developer Theme with AI SEO Suite

Features:
- Zero default CSS output (complete control)
- Built-in AI-powered SEO meta generation (OpenAI)
- 15+ Schema types support
- Theme Options panel with 13 tabs
- Header/Body/Footer code injection
- Robots & indexing controls
- 301 redirect manager
- 404 monitoring
- Breadcrumb system with schema
- Title templates with variables
- Social profile integration
- Analytics & verification codes
- Performance optimization
- Full WooCommerce support
*/

/*
 * WooCommerce layout and styling
 * The theme ships with minimal CSS so you can build your own design.
 * These rules provide a sensible grid for product lists and layouts.
 */

/* Container for all WooCommerce pages */
.woocommerce-main {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

/* Product archive grid */
.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    border: 1px solid #e5e5e5;
    padding: 1rem;
    flex: 1 0 calc(25% - 2rem);
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

@media (max-width: 992px) {
    .woocommerce ul.products li.product {
        flex-basis: calc(50% - 2rem);
    }
}

@media (max-width: 600px) {
    .woocommerce ul.products li.product {
        flex-basis: 100%;
    }
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Single product page layout */
.woocommerce div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.woocommerce div.product div.images {
    flex: 1 1 45%;
}

.woocommerce div.product div.summary {
    flex: 1 1 50%;
}

@media (max-width: 768px) {
    .woocommerce div.product {
        flex-direction: column;
    }
}

/* Cart and checkout tables */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 1rem;
    border: 1px solid #ddd;
}

/* Button styling */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #review_form #submit {
    background: #111;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #review_form #submit:hover {
    background: #333;
}
