@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Orbitron:wght@700&display=swap');

:root {
    --primary-color: #367BF5; /* A vibrant blue */
    --background-color: #121212; /* Dark mode background */
    --surface-color: #1E1E1E; /* Card background */
    --text-color: #EAEAEA;
    --muted-text-color: #888;
    --border-color: #333;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --green: #28a745;
    --orange: #fd7e14;
	--yellow: #ffd700;
    --gray: #6c757d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    background-color: var(--background-color);
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6))/* , url(https://i.imgur.com/7QqC5fV.jpeg) center center/cover no-repeat */;
    padding: 6rem 0;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 15px var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-top: 10px;
}

main {
    padding: 50px 0;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px var(--shadow-color);
    transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.product-image-wrapper {
    position: relative;
    height: 250px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-in-stock { background-color: var(--green); }
.status-coming-soon { background-color: var(--orange); }
.status-limited-stock { background-color: var(--yellow); }
.status-sold-out { background-color: var(--gray); }

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 5px;
}

.product-tagline {
    color: var(--muted-text-color);
    font-style: italic;
    margin-bottom: 15px;
}

.product-description {
    margin-bottom: 20px;
}

.product-features {
    list-style-type: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-features li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
}

.product-features li::before {
    content: '›';
    color: var(--primary-color);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.5rem;
}

.product-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: auto;
}

.compatibility-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag i {
    margin-right: 5px;
    color: var(--primary-color);
}

.price-buy-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.buy-button {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.buy-button:hover {
    background-color: #2667D3;
}

.buy-button:disabled {
    background-color: var(--gray);
    cursor: not-allowed;
}

.contact-section {
    background-color: var(--surface-color);
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
}

.contact-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-button {
    color: var(--text-color);
    background-color: #333;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
    background-color: var(--primary-color);
}

.contact-button i {
    margin-right: 10px;
}

.copyright-notice {
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--muted-text-color);
}