/*
Theme Name: fftopupapp Custom
Theme URI: https://fffftopupapp.com
Author: fftopupapp
Description: Custom Theme for fftopupapp - Dark Mode
Version: 1.0.0
*/

/* ==========================================
   ROOT VARIABLES - DARK MODE
   ========================================== */
:root {
    --ff-primary: #0d0d1a;
    --ff-primary-dark: #080812;
    --ff-primary-light: #1a1a2e;
    --ff-surface: #141424;
    --ff-surface-light: #1e1e32;
    --ff-accent: #ff6b00;
    --ff-accent-hover: #e65c00;
    --ff-accent-glow: rgba(255, 107, 0, 0.3);
    --ff-white: #ffffff;
    --ff-gray: #1e1e2e;
    --ff-gray-light: #2a2a3e;
    --ff-text: #e8e8e8;
    --ff-text-muted: #9999aa;
    --ff-text-dark: #666677;
    --ff-border: rgba(255, 255, 255, 0.06);
    --ff-border-light: rgba(255, 255, 255, 0.1);
    --ff-success: #28a745;
    --ff-shadow: rgba(0, 0, 0, 0.3);
    --ff-shadow-hover: rgba(0, 0, 0, 0.5);
    --ff-card-bg: #141424;
    --ff-input-bg: #1a1a2e;
}

/* ==========================================
   GLOBAL RESET - DARK MODE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--ff-primary-dark);
    color: var(--ff-text);
    min-height: 100vh;
}

/* ==========================================
   SCROLLBAR - DARK MODE
   ========================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ff-primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--ff-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ff-accent-hover);
}

/* ==========================================
   SELECTION - DARK MODE
   ========================================== */
::selection {
    background: var(--ff-accent);
    color: var(--ff-white);
}

/* ==========================================
   HEADER - DARK MODE
   ========================================== */
.ff-site-header {
    background: var(--ff-primary);
    padding: 12px 0;
    border-bottom: 2px solid var(--ff-accent);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.ff-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ff-brand {
    color: var(--ff-white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.ff-brand span {
    color: var(--ff-accent);
}

.ff-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.ff-nav-menu li a {
    color: var(--ff-text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ff-nav-menu li a:hover {
    color: var(--ff-white);
}

.ff-nav-menu li.current-menu-item a {
    color: var(--ff-accent);
}

.ff-balance-text {
    color: var(--ff-accent);
    font-size: 16px;
    font-weight: 700;
    background: rgba(255, 107, 0, 0.15);
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

/* ==========================================
   FOOTER - DARK MODE
   ========================================== */
.site-footer {
    background: var(--ff-primary);
    color: var(--ff-text-muted);
    padding: 40px 0 20px;
    border-top: 3px solid var(--ff-accent);
    margin-top: 40px;
}

.ff-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.ff-footer-brand h3 {
    color: var(--ff-white);
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 5px 0;
}

.ff-footer-brand h3 span {
    color: var(--ff-accent);
}

.ff-footer-brand p {
    color: var(--ff-text-muted);
    font-size: 14px;
    margin: 0;
}

.ff-footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.ff-footer-links a {
    color: var(--ff-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.ff-footer-links a:hover {
    color: var(--ff-accent);
}

.ff-footer-copy p {
    color: var(--ff-text-dark);
    font-size: 13px;
    margin: 0;
}

/* ==========================================
   BUTTONS - DARK MODE
   ========================================== */
.ff-btn-primary {
    background: var(--ff-accent);
    color: var(--ff-white);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ff-btn-primary:hover {
    background: var(--ff-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--ff-accent-glow);
}

.ff-btn-secondary {
    background: var(--ff-surface-light);
    color: var(--ff-white);
    border: 1px solid var(--ff-border);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ff-btn-secondary:hover {
    background: var(--ff-surface);
    border-color: var(--ff-accent);
}

/* ==========================================
   CARDS - DARK MODE
   ========================================== */
.ff-card {
    background: var(--ff-card-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--ff-border);
    box-shadow: 0 2px 12px var(--ff-shadow);
    transition: all 0.3s ease;
}

.ff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--ff-shadow-hover);
    border-color: var(--ff-accent);
}

/* ==========================================
   SECTION TITLES - DARK MODE
   ========================================== */
.ff-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--ff-white);
    margin: 0 0 5px 0;
}

.ff-section-subtitle {
    font-size: 16px;
    color: var(--ff-text-muted);
    margin: 0 0 25px 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .ff-nav-menu {
        gap: 20px;
    }
    
    .ff-brand {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ff-brand {
        font-size: 18px;
    }
    
    .ff-footer-links {
        gap: 15px;
    }
    
    .ff-footer-links a {
        font-size: 13px;
    }
}















/*,.................Home page Design*/


/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: #0b1226; font-family: 'Poppins', sans-serif; color: #fff; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 15px; }

/* Section Layout */
.section-block { padding: 40px 0; margin-top: 20px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-header h2 { font-size: 24px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.view-all { color: #4db6ac; text-decoration: none; font-size: 14px; }

/* Product Grid (Responsive) */
.product-grid, .service-grid, .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* Card Style */
.product-card {
    background: #1a233a;
    border-radius: 12px;
    padding: 10px;
    transition: 0.3s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.card-img { position: relative; }
.card-img img { width: 100%; border-radius: 8px; object-fit: cover; aspect-ratio: 1/1; }
.card-img .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
}
.card-info h4 { font-size: 14px; margin-top: 10px; }
.stars { color: #f39c12; font-size: 12px; }
.status-badge { 
    display: inline-block; 
    background: #e74c3c; 
    color: #fff; 
    padding: 2px 6px; 
    font-size: 10px; 
    border-radius: 4px; 
    margin-top: 5px;
}

/* App Grid Style (Different Layout) */
.app-card { background: #1a233a; padding: 15px; border-radius: 12px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.app-logo { width: 60px; height: 60px; background: #fff; border-radius: 12px; padding: 5px; margin-bottom: 10px; }
.buy-btn { background: #ff6b6b; color: #fff; padding: 5px 15px; text-decoration: none; border-radius: 20px; font-size: 12px; margin-top: 5px; display: inline-block; }

/* Services Section */
.services-section { background: #161f35; padding: 60px 0; margin-top: 40px; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title .small-text { font-size: 12px; letter-spacing: 2px; color: #4db6ac; display: block; margin-bottom: 5px; }
.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-box { background: #0f182b; padding: 20px; border-radius: 10px; text-align: center; border: 1px solid #25324d; }
.service-box h3 { font-size: 16px; margin: 10px 0; }
.service-box p { font-size: 12px; color: #a0b1d3; }

/* Footer */
.footer-widgets { background: #090f20; padding: 50px 0; border-top: 1px solid #1a233a; }
.footer-grid { grid-template-columns: repeat(4, 1fr); }
.footer-col h4 { font-size: 16px; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { color: #a0b1d3; font-size: 13px; margin-bottom: 5px; }

/* View More Button */
.view-more-btn { background: #2b3a61; color: #fff; border: none; padding: 10px 40px; border-radius: 30px; margin-top: 30px; cursor: pointer; }
.text-center { text-align: center; }

/* Responsive Mobile */
@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .service-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}



.ff-account-clean {
    padding: 0px 0px !important;
    background: #0d1428 !important;
}





/* ✅ WooCommerce My Account - Orders Title Hide */
.woocommerce-account .woocommerce h1.entry-title,
.woocommerce-account .woocommerce h1.page-title,
.woocommerce-account .woocommerce h1,
.woocommerce-account h1.entry-title,
.woocommerce-account .entry-title,
.woocommerce-account .page-title,
.woocommerce-orders h1,
.woocommerce-orders .entry-title,
.woocommerce-orders .page-title {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}