/*
Theme Name: Mobile Shop
Theme URI: https://elementor.com/
Description: A premium, vibrant, full-width WooCommerce child theme for modern service websites.
Author: Arnav Prakash
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.5
Text Domain: hello-elementor-child
*/

:root {
    /* Vibrant Color System */
    --color-primary: #0f172a;
    /* Deep Navy */
    --color-accent: #ff7a18;
    /* Strong Orange */
    --color-teal: #0891b2;
    --color-green: #16a34a;
    --color-border: #dbe3ea;

    /* Vibrant Gradients */
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #0891b2 100%);
    /* Deep Navy to Vibrant Teal */
    --gradient-accent: linear-gradient(135deg, #ff9a44 0%, #ff7a18 100%);
    --gradient-subtle: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);

    /* Soft Icon Backgrounds */
    --bg-icon-blue: rgba(14, 165, 233, 0.1);
    --bg-icon-green: rgba(34, 197, 94, 0.1);
    --bg-icon-orange: rgba(255, 122, 24, 0.1);

    /* Text Colors */
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #f8fafc;

    /* Alternating Backgrounds */
    --bg-light: #f1f5f9;
    /* Soft light gray for alternate sections */
    --bg-white: #ffffff;
    --bg-dark: #0f172a;

    /* Structural variables */
    --border-radius-sm: 8px;
    --border-radius-md: 8px;
    --border-radius-lg: 8px;

    /* Shadows - Deep but soft to elevate cards */
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.1);

    /* Spacing Scale */
    --space-sm: 24px;
    --space-md: 40px;
    --space-lg: 80px;

    /* Z-Index Layers */
    --z-bg: 0;
    --z-content: 1;
    --z-header: 100;
    --z-dropdown: 500;
    --z-floating: 999;
}

/* Global Reset & Typography Setup */
body {
    background-color: var(--bg-white);
    color: var(--text-muted);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 1.7;
    font-size: 16px;
}

/* Force Hello Elementor parent to allow full-width sections */
.site-main,
#content,
.page-content,
.entry-content,
.post-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 800;
    /* Bold Navy Headings */
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: var(--space-sm);
    letter-spacing: 0;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

a {
    color: #0ea5e9;
    transition: color 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    display: block;
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 21px;
    }
}