/*
Theme Name: GiftSwap Africa Theme
Theme URI: https://giftswap.africa
Author: GiftSwap Team
Author URI: https://giftswap.africa
Description: A high-fidelity, high-performance, geometric-styled theme optimized for the GiftSwap Africa P2P platform.
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: giftswap-theme
*/

/* Custom base layout constraints matching high-premium dark tech design */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #111111;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll/swaying */
    position: relative;
    -webkit-text-size-adjust: 100%; /* Prevent automatic text size changes on rotation */
}

/* Prevent mobile auto-zoom on input elements focus */
@media screen and (max-width: 767px) {
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    input[type="search"],
    input[type="tel"],
    input[type="url"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Ensure the WordPress page container spans full width and allows full-bleed layouts */
#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
    overflow-x: hidden;
}

.site-header {
    margin: 0;
    padding: 0;
}

