/*
Theme Name: fullzpro Child Theme
Theme URI: https://datahub.store
Description: Clean and minimal child theme for datahub marketplace with top navigation
Author: Development Team
Author URI: https://datahub.store
Template: storefront
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fullzpro-child
*/

/* Import parent theme styles */
@import url('../storefront/style.css');

/* ============================================
   FULLZPRO THEME STYLES
   ============================================ */

:root {
    --primary: #14b8a6;
    --primary-dark: #0d9488;
    --secondary: #f97316;
    --accent: #06b6d4;
    --dark: #0f172a;
    --gray: #64748b;
    --light-gray: #f1f5f9;
    --border: #e2e8f0;
    --white: #ffffff;
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--light-gray);
    color: var(--dark);
    line-height: 1.6;
}

/* Remove default theme header if exists */
.site-header {
    display: none !important;
}

.storefront-primary-navigation,
.site-branding,
.storefront-handheld-footer-bar {
    display: none !important;
}

/* Main content area */
.site-content {
    min-height: calc(100vh - 140px);
    padding: 0;
}
