/*
Theme Name: GiftPro
Theme URI: https://giftpro.com
Author: GiftPro Team
Author URI: https://giftpro.com
Description: Premium Gift Card Store Theme - Minimal, Luxury, Tech
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: giftpro
Tags: woocommerce, e-commerce, gift-cards, custom-colors, custom-logo

GiftPro is a lightweight, premium theme for gift card stores.
*/

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 72px;
}
@media (max-width: 480px) {
    body {
        padding-top: 64px;
    }
}

:root {
    --gp-bg-start: #F3F5F7;
    --gp-bg-end: #EDEFF2;
    --gp-white: #FFFFFF;
    --gp-text-primary: #1A1D21;
    --gp-text-secondary: #6B7280;
    --gp-text-muted: #9CA3AF;
    --gp-cta-yellow: #F5B800;
    --gp-cta-yellow-hover: #E5AB00;
    --gp-accent-red: #E84855;
    --gp-accent-green: #22C55E;
    --gp-visa-blue: #1A73E8;
    --gp-uber-black: #000000;
    --gp-apple-mint: #00C853;
    --gp-glass-bg: rgba(255, 255, 255, 0.7);
    --gp-glass-border: rgba(255, 255, 255, 0.4);
    --gp-shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
    --gp-shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.12);
    --gp-radius-lg: 24px;
    --gp-radius-md: 16px;
    --gp-radius-sm: 12px;
    --gp-radius-pill: 50px;
    --gp-transition: 0.3s ease;
    --gp-header-bg: rgba(243, 245, 247, 0.9);
    --gp-footer-bg: #1A1D21;
    --gp-footer-text: #FFFFFF;
}

[data-theme="dark"] {
    --gp-bg-start: #111318;
    --gp-bg-end: #0D0F12;
    --gp-white: #1A1D21;
    --gp-text-primary: #F3F4F6;
    --gp-text-secondary: #D1D5DB;
    --gp-text-muted: #9CA3AF;
    --gp-cta-yellow: #F5B800;
    --gp-cta-yellow-hover: #E5AB00;
    --gp-accent-red: #E84855;
    --gp-accent-green: #22C55E;
    --gp-glass-bg: rgba(26, 29, 33, 0.8);
    --gp-glass-border: rgba(255, 255, 255, 0.08);
    --gp-shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.4);
    --gp-shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.5);
    --gp-header-bg: rgba(17, 19, 24, 0.95);
    --gp-footer-bg: #0D0F12;
    --gp-footer-text: #F3F4F6;
    color-scheme: dark;
}

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

html {
    scroll-behavior: smooth;
    transition: background 0.3s ease, color 0.3s ease;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, var(--gp-bg-start) 0%, var(--gp-bg-end) 100%);
    min-height: 100vh;
    color: var(--gp-text-primary);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--gp-transition);
}

a:hover {
    color: var(--gp-cta-yellow);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input, select, textarea {
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--gp-radius-pill);
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: all var(--gp-transition);
}

.btn-primary {
    background: var(--gp-cta-yellow);
    color: var(--gp-text-primary);
}

.btn-primary:hover {
    background: var(--gp-cta-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 184, 0, 0.4);
}

.btn-secondary {
    background: var(--gp-white);
    color: var(--gp-text-secondary);
    border: 1px solid #E5E7EB;
}

[data-theme="dark"] .btn-secondary {
    background: var(--gp-white);
    color: var(--gp-text-secondary);
    border-color: rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: #F9FAFB;
    border-color: var(--gp-text-muted);
}

[data-theme="dark"] .btn-secondary:hover {
    background: #252830;
    border-color: rgba(255,255,255,0.2);
}

.btn-accent {
    background: linear-gradient(135deg, #E84855, #D63447);
    color: var(--gp-white);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 72, 85, 0.3);
}

[data-theme="dark"] .btn-accent {
    background: var(--gp-cta-yellow);
    color: #1A1D21;
}
[data-theme="dark"] .btn-accent:hover {
    background: var(--gp-cta-yellow-hover);
    box-shadow: 0 10px 30px rgba(245, 184, 0, 0.35);
}

.glass-panel {
    background: var(--gp-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gp-glass-border);
    border-radius: var(--gp-radius-lg);
    box-shadow: var(--gp-shadow-soft);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--gp-radius-pill);
    font-size: 13px;
    font-weight: 600;
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--gp-accent-green);
}

.badge-success::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gp-accent-green);
    border-radius: 50%;
    margin-right: 8px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gp-text-secondary);
    margin-bottom: 48px;
}

/* WooCommerce styles are in assets/css/woocommerce.css */
