/*
Theme Name: Fast Gift Card Shop
Author: Magfar.com
Description: A lightning-fast custom WooCommerce theme for gift card shops with minimal assets.
Version: 1.0
License: GNU General Public License v2 or later
*/

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0d1117;
    color: #c9d1d9;
    line-height: 1.6;
}
a {
    color: #58a6ff;
    text-decoration: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #161b22;
    padding: 15px 0;
    border-bottom: 1px solid #30363d;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}
.nav-menu a {
    color: #c9d1d9;
    margin-left: 20px;
    font-weight: 500;
}
.nav-menu a:hover {
    color: #58a6ff;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle, #1f242c 0%, #0d1117 100%);
}
.hero h1 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}
.hero p {
    color: #8b949e;
    font-size: 18px;
    margin-bottom: 25px;
}

/* Product/Giftcard Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 0;
}
.card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-5px);
    border-color: #58a6ff;
}
.card-image {
    width: 100%;
    height: 180px;
    background: #21262d;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.card-info {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-title {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
}
.card-price {
    font-size: 16px;
    color: #58a6ff;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: auto;
}
.btn-buy {
    background-color: #238636;
    color: #ffffff;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    display: block;
}
.btn-buy:hover {
    background-color: #2ea44f;
    color: #ffffff;
}

/* Footer */
footer {
    background: #161b22;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #30363d;
    margin-top: 50px;
    color: #8b949e;
}