/*
Theme Name: Godzilla Theme
Description: Professional fitness and nutrition WooCommerce theme with Arabic RTL support
Author: Godzilla Nutrition
Version: 1.0.0
Text Domain: godzilla-theme
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Global Reset and Mobile Fixes */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100%;
    max-width: 100%;
}

/* Prevent horizontal scroll */
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

/* Mobile Viewport Fix */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Override any conflicting widths */
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
    .col-auto, .col-sm, .col-md, .col-lg, .col-xl {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Force full width on mobile */
    .header-inner,
    .content-inner,
    .footer-inner {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
