/*
 * Theme Name:   Woostify Child - IGNOU Store
 * Theme URI:    https://ignoustore.example.com
 * Description:  Amazon-inspired WooCommerce child theme for selling IGNOU solved assignments & question papers. Built on Woostify.
 * Author:       IGNOU Store Dev
 * Author URI:   https://ignoustore.example.com
 * Template:     woostify
 * Version:      1.0.0
 * License:      GNU General Public License v2 or later
 * License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain:  woostify-child-ignou
 * Tags:         e-commerce, education, woocommerce, ignou, assignments
 * Requires at least: 6.0
 * Tested up to: 6.5
 * Requires PHP: 7.4
 *
 * Amazon-Inspired Color Palette:
 * --color-header-bg:      #131921  (Dark Navy)
 * --color-header-text:    #ffffff  (White)
 * --color-search-btn:     #febd69  (Amazon Gold)
 * --color-cta-btn:        #f0c14b  (CTA Gold)
 * --color-body-bg:        #f3f3f3  (Light Gray)
 * --color-card-bg:        #ffffff  (White)
 * --color-link-accent:    #007185  (Teal)
 */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
    /* Primary palette */
    --ignou-header-bg:       #131921;
    --ignou-header-text:     #ffffff;
    --ignou-search-btn:      #febd69;
    --ignou-search-btn-hover:#f3a847;
    --ignou-cta-btn:         #f0c14b;
    --ignou-cta-btn-hover:   #e7b63c;
    --ignou-body-bg:         #f3f3f3;
    --ignou-card-bg:         #ffffff;
    --ignou-link:            #007185;
    --ignou-link-hover:      #c7511f;

    /* Secondary palette */
    --ignou-star-yellow:     #ffa41c;
    --ignou-price-red:       #b12704;
    --ignou-sale-red:        #cc0c39;
    --ignou-success-green:   #067d62;
    --ignou-border:          #ddd;
    --ignou-border-dark:     #bbb;
    --ignou-text-dark:       #0f1111;
    --ignou-text-muted:      #565959;
    --ignou-announcement-bg: #232f3e;

    /* Typography */
    --ignou-font-primary:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ignou-font-heading:    'Outfit', 'Inter', sans-serif;

    /* Spacing */
    --ignou-radius:          4px;
    --ignou-radius-lg:       8px;
    --ignou-shadow:          0 2px 5px rgba(0,0,0,.1);
    --ignou-shadow-hover:    0 4px 12px rgba(0,0,0,.15);

    /* Layout */
    --ignou-max-width:       1440px;
    --ignou-content-width:   1200px;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

/* ==========================================================================
   Base Overrides (minimal — heavy styles in assets/css/custom.css)
   ========================================================================== */
body {
    font-family: var(--ignou-font-primary);
    background-color: var(--ignou-body-bg);
    color: var(--ignou-text-dark);
}

a {
    color: var(--ignou-link);
    text-decoration: none;
    transition: color .2s ease;
}
a:hover {
    color: var(--ignou-link-hover);
    text-decoration: underline;
}
