
/*
 Theme Name: FZ Bargains
 Theme URI: https://example.com/fz-bargains
 Author: ChatGPT
 Description: Dark premium-style WooCommerce-ready theme for FZ Bargains, auto-listing products from eBay via WooCommerce plugins.
 Version: 1.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: fz-bargains
*/

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background: #050509;
    color: #f5f5f5;
}

a {
    color: #facc6b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    background: linear-gradient(90deg, #050509, #111827);
    border-bottom: 1px solid #1f2937;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-title span {
    color: #facc6b;
}

.site-nav a {
    margin-left: 1.2rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero {
    min-height: 70vh;
    background: radial-gradient(circle at top, #1f2937 0, #020617 55%, #000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 7vw;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: #facc6b;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 32rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #facc6b, #f97316);
    color: #111827;
    font-weight: 700;
}

.btn-secondary {
    background: transparent;
    color: #facc6b;
    border-color: #facc6b33;
}

.section {
    padding: 4rem 7vw;
}

.section.dark {
    background: #020617;
}

.section.muted {
    background: #0b1120;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.4rem;
}

.section-description {
    color: #9ca3af;
    max-width: 32rem;
    margin-bottom: 2rem;
}

.grid {
    display: grid;
    gap: 1.8rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: radial-gradient(circle at top left, #1f2937 0, #020617 60%);
    border-radius: 1.4rem;
    padding: 1.6rem;
    border: 1px solid #111827;
    box-shadow: 0 18px 45px rgba(0,0,0,0.9);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(250,204,21,0.07), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.card:hover {
    transform: translateY(-4px) translateZ(0);
    border-color: #facc6b33;
    box-shadow: 0 22px 65px rgba(0,0,0,1);
}

.card:hover::before {
    opacity: 1;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: rgba(15,23,42,0.9);
    border: 1px solid #111827;
    margin-bottom: 0.8rem;
    color: #9ca3af;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.card-body {
    font-size: 0.9rem;
    color: #9ca3af;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
}

.product-card {
    background: radial-gradient(circle at top left, #111827 0, #020617 60%);
    border-radius: 1.2rem;
    padding: 1rem;
    border: 1px solid #111827;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.product-card img {
    width: 100%;
    border-radius: 0.9rem;
    object-fit: cover;
}

.product-card-title {
    font-size: 0.95rem;
}

.product-card-price {
    font-weight: 600;
    color: #facc6b;
}

.product-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9ca3af;
}

.site-footer {
    padding: 2.5rem 7vw;
    background: #020617;
    border-top: 1px solid #111827;
    font-size: 0.85rem;
    color: #6b7280;
}

.site-footer a {
    color: #9ca3af;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .hero {
        padding-top: 5rem;
    }
}
