/* Styles for the store page */
body {
    background-color: #0D0D0D;
    color: #a0a0a0;
}

.store-section {
    padding: 50px 50px;
    text-align: center;
}

.store-header {
    margin-bottom: 60px;
}

.store-header h1 {
    font-family: 'Geometos', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.store-header p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #a0a0a0;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #2a2a2a;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-image {
    width: 100%;
    height: 180px;
    background-color: #252525;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: 20px;
}

.product-price .original-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
    font-weight: 400;
}

.promotion-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f03535;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 5px;
    z-index: 1;
    font-family: 'Outfit', sans-serif;
}

.product-button {
    background-color: #A135F0; /* Vibrant purple color */
    color: #fff;
    font-family: 'Geometos', sans-serif;
    text-align: center;
    padding: 12px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.product-button:hover {
    background-color: #8e2ddb;
}

/* Adjustments for header and footer on the store page */
header .nav-banner a[href="#store"] {
    color: #A135F0; /* Highlight for the store link */
    font-weight: bold;
}

/* Store Hero Section */
.store-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60vh;
    min-height: 400px;
    background: url('/images/store/dungeon_props.png') no-repeat center center/cover;
    position: relative;
}

.store-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-title {
    font-family: 'Geometos', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.hero-cta-button {
    font-family: 'Geometos', sans-serif;
    background-color: #A135F0;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.hero-cta-button:hover {
    background-color: #8e2ddb;
    transform: translateY(-3px);
} 