:root {
    /* These will be overridden by the config */
    --primary-color: #003B6F;
    --secondary-color: #00FF9F;
    --tertiary-color: #6A0DAD;
    --highlight-color: #FFD700;
    --alert-color: #FF5722;
    --background-color: #0A0E17;
    --text-color: #FFFFFF;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Styles */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--background-color) 0%, #000000 100%);
    z-index: -10;
    overflow: hidden;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    padding: 20px 0;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
    margin-right: 15px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 59, 111, 0.7);
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--secondary-color), 0 0 20px var(--secondary-color);
    letter-spacing: 1px;
}

.legal-disclaimer {
    padding: 15px 0;
    margin-top: 2rem;
}

.legal-disclaimer p {
    font-size: 0.7rem;
    color: #888;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 159, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

nav a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

nav a:hover::before {
    left: 100%;
}

#cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-badge {
    background-color: var(--secondary-color);
    color: var(--background-color);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 300px);
}

/* Partner Showcase Section */
.partner-section {
    background: rgba(10, 14, 23, 0.8);
    border-top: 2px solid var(--primary-color);
    padding: 50px 0;
    margin-top: 50px;
}

.partner-section h2 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Enhanced Cards Style */
.partners-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.partner-card {
    background: rgba(10, 14, 23, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0, 255, 159, 0.3);
}

.partner-card-image {
    height: 150px;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px 15px 0 0;
    margin-bottom: 0;
}

.partner-card-text {
    padding: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(10, 14, 23, 0.95);
    border-radius: 0 0 15px 15px;
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.partner-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
    color: var(--text-color);
}

/* Logo Strip Style */
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.partner-logo-link {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.partner-logo-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo-small {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
}

/* Sliding Banner Style */
.partners-banner {
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    position: relative;
    height: 100px;
}

.partners-slider {
    display: flex;
    align-items: center;
    height: 100%;
    animation: slide 20s linear infinite;
}

.partner-banner-item {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.partner-banner-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.partner-banner-logo:hover {
    opacity: 1;
}


/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 10px;
    border: 2px solid var(--tertiary-color);
    box-shadow: 0 0 30px rgba(106, 13, 173, 0.5);
    overflow: hidden;
    /* No background-image here - will be set via JS */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 159, 0.3) 0%, transparent 70%);
    z-index: 0;
    animation: pulseGlow 5s ease-in-out infinite;
}

.hero-section.full-image {
    height: 500px !important; /* Fixed height to match 1920x500 aspect ratio */
    padding: 0 !important; /* Remove padding that might affect size */
    border: none !important; /* Remove borders that might affect appearance */
    box-shadow: none !important; /* Remove shadows */
    background-size: cover !important;
    background-position: center !important;
}

.hero-section:not(.full-image)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 159, 0.3) 0%, transparent 70%);
    z-index: 0;
    animation: pulseGlow 5s ease-in-out infinite;
}

.hero-section.full-image::before {
    display: none !important;
}

/* Hide text elements in full image mode */
.hero-section.full-image h1,
.hero-section.full-image p {
    display: none !important;
}



@keyframes pulseGlow {
    0% { opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { opacity: 0.3; }
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--secondary-color), 0 0 20px var(--secondary-color);
    position: relative;
    z-index: 1;
}

.hero-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

/* Filter Section */
.filter-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-button {
    background: rgba(10, 14, 23, 0.7);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.filter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 159, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.filter-button:hover, .filter-button.active {
    background: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 159, 0.3);
}

.filter-button:hover::before, .filter-button.active::before {
    left: 100%;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: rgba(10, 14, 23, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 159, 0.3);
    border-color: var(--secondary-color);
}

.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: all 0.3s;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Add to base-styles.css after the product-img styles */
.product-card.has-hover-image {
    position: relative;
}

.product-card.has-hover-image .product-img {
    transition: opacity 0.3s ease;
}

.product-card.has-hover-image:hover .product-img {
    opacity: 0;
}

.product-card.has-hover-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Set a fixed aspect ratio matching your product images */
    height: 0;
    padding-top: 100%; /* This creates a 1:1 aspect ratio */
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card.has-hover-image:hover::after {
    opacity: 1;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
    text-shadow: 0 0 5px var(--secondary-color);
}

.product-type {
    display: inline-block;
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.card-description {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-item {
    background: rgba(0, 59, 111, 0.5);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-color);
}

.product-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 5;
}

.product-status.sold-out {
    background: var(--alert-color);
    color: var(--text-color);
}
.product-status.coming-soon {
    background: var(--highlight-color);
    color: var(--background-color);
}

.unavailable {
    opacity: 0.7;
    cursor: default;
}

.unavailable:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: rgba(10, 14, 23, 0.95);
    margin: 50px auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 10px;
    border: 2px solid var(--tertiary-color);
    box-shadow: 0 0 30px rgba(106, 13, 173, 0.5);
    position: relative;
    overflow-y: auto; /* Add this line */
    max-height: 90vh; /* Add this line */
    padding: 30px;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 159, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-color);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.close-modal:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.modal-image-container {
    position: relative;
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.modal-thumbnail-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: flex-start; /* Left-align instead of center */
    align-items: center;
    max-width: 100%;
    overflow-x: auto; /* Allow horizontal scrolling if needed */
    padding-bottom: 10px;
}

.modal-thumbnail {
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevent thumbnails from shrinking */
}

.modal-thumbnail:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.modal-thumbnail.active {
    opacity: 1;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.info-row {
    display: flex;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 59, 111, 0.3);
    padding-bottom: 5px;
}

.info-label {
    font-weight: bold;
    width: 100px;
    color: var(--secondary-color);
}

.info-value {
    flex: 1;
}

.info-tabs {
    display: flex;
    border-bottom: 1px solid var(--primary-color);
    margin: 20px 0;
}

.info-tab {
    padding: 10px 15px;
    cursor: pointer;
    color: #aaa;
    transition: all 0.3s;
    font-family: var(--font-heading);
}

.info-tab.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.info-tab-content {
    display: none;
    padding: 10px 0;
}

.info-tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#product-editor-modal > div {
    max-height: 85vh;
    overflow-y: auto;
    margin: 20px auto;
    background: var(--background-color);
}

#product-editor-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    padding: 10px 0;
}

#product-editor-modal textarea {
    max-height: 100px;
}

#pack-options, #additional-images {
    max-height: 150px;
    overflow-y: auto;
}

.pack-options {
    margin-top: 20px;
}

.pack-options h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.pack-option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pack-option {
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
}

.pack-option:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 255, 159, 0.2);
}

#add-pack-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#add-pack-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pack-option-button {
    background: rgba(10, 14, 23, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.pack-option-button.selected, .pack-option-button:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 255, 159, 0.3);
    transform: translateY(-2px);
}

.pack-size {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.pack-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.regular-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9rem;
}

.sale-price {
    font-weight: bold;
    color: var(--secondary-color);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: var(--text-color);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

/* Cart Modal Styles */
.cart-container {
    padding: 30px;
}

.cart-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 10px;
}

.cart-title {
    font-family: var(--font-heading);
    color: var(--text-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: 15px;
    background: rgba(10, 14, 23, 0.8);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-info h4 {
    margin-bottom: 5px;
}

.cart-item-type {
    font-size: 0.8rem;
    color: #aaa;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: var(--secondary-color);
    color: var(--background-color);
}

.quantity-value {
    font-weight: bold;
}

.cart-item-price {
    font-weight: bold;
    color: var(--secondary-color);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-item-remove:hover {
    color: var(--alert-color);
    transform: scale(1.2);
}

.cart-empty {
    text-align: center;
    padding: 50px 0;
    color: #aaa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--primary-color);
}

#totalAmount {
    color: var(--secondary-color);
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Checkout Form */
.form-group {
    margin-bottom: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--text-color);
    margin-top: 5px;
    transition: all 0.3s;
    font-family: var(--font-body);
}

input:focus, textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 255, 159, 0.3);
    outline: none;
}

label {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.form-actions {
    margin-top: 20px;
    text-align: right;
}

/* Footer */
footer {
    background: rgba(10, 14, 23, 0.8);
    padding: 50px 0 20px;
    border-top: 2px solid var(--primary-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(0, 59, 111, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
text-shadow: 0 0 5px var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 59, 111, 0.3);
    color: #aaa;
    font-size: 0.9rem;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

#cancel-image-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--alert-color);
    color: white;
}

#cancel-image-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--alert-color), #d32f2f);
}

.about-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

#about {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 20px;
    /* Add these two lines to center the content properly */
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* This is the ONLY panel we want */
.about-container {
    width: 100%;
    max-width: 1000px;
    background-color: rgba(10, 21, 25, 0.9);
    border-radius: 10px;
    border: 2px solid var(--tertiary-color);
    padding: 30px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 39, 89, 0.5);
	margin: 0 auto;
}

/* Style close button */
.close-about {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 10;
}

.close-about:hover {
    color: var(--text-color);
    background-color: var(--alert-color);
}

.about-section h2 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.about-section h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0.8;
}

.about-content {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image-container {
    flex: 1;
    min-width: 300px;
}

.about-image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--tertiary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 2;
    min-width: 300px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    margin: 60px 0;
}

.team-section h3 {
    text-align: center;
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-member-card {
    background: rgba(10, 14, 23, 0.6);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.team-member-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-member-info {
    padding: 20px;
}

.team-member-name {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-member-title {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-member-bio {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Timeline Section */
.history-section {
    margin: 60px 0;
}

.history-section h3 {
    text-align: center;
    margin-bottom: 30px;
}

/* Use this simplified timeline for all screen sizes */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 2px solid var(--tertiary-color);
}

.timeline::before {
    display: none; /* Remove the center line */
}

.timeline-item {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    padding: 0;
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: 5px;
    left: -38px;
}

.timeline-content {
    background: rgba(10, 14, 23, 0.6);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--primary-color);
    position: relative;
}

.timeline-year {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-description {
    line-height: 1.6;
}

/* Additional Content Sections */
.about-additional-section {
    margin: 40px 0;
    padding: 20px;
    background: rgba(10, 14, 23, 0.6);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.about-additional-section h3 {
    text-align: left;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Strain Tree Visualization Styles */
#strain-tree-section {
    margin: 50px 0;
    padding: 20px 0;
}

.genetics-tree-container {
    background: rgba(10, 14, 23, 0.8);
    border-radius: 10px;
    border: 2px solid var(--tertiary-color);
    box-shadow: 0 0 30px rgba(106, 13, 173, 0.5);
    overflow: hidden;
    margin-bottom: 40px;
}

.genetics-tree {
    height: 400px;
    padding: 20px;
    overflow: hidden;
    background-color: #251a12;
    border-radius: 8px;
}

.node-bubble {
    fill: #b87333;
    stroke: #b87333;
    stroke-width: 2;
}

.link {
    fill: none;
    stroke: #c69c6d;
    stroke-width: 2;
}

.genetics-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-top: 1px solid rgba(184, 115, 51, 0.2);
}

.genetics-info {
    padding: 25px;
    color: #f5f0e6;
    line-height: 1.8;
    font-size: 16px;
    max-height: 300px;
    overflow-y: auto;
    background-color: rgba(37, 26, 18, 0.4);
    border-radius: 0 0 8px 8px;
}

.error-message {
    text-align: center;
    color: #ff6b6b;
    font-style: italic;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.partners-banner:hover .partners-slider {
    animation-play-state: paused;
}

/* Compact Grid Style */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.partner-grid-item {
    background: rgba(10, 14, 23, 0.6);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.partner-grid-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.partner-grid-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.partner-grid-name {
    font-size: 0.9rem;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .genetics-tree {
        height: 300px;
    }
    
    .genetics-controls {
        flex-direction: column;
        align-items: center;
    }
	
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .cart-item-img {
        grid-row: span 2;
    }
    
    .quantity-selector {
        grid-column: 1;
        grid-row: 3;
    }
    
    .cart-item-price {
        grid-column: 2;
        grid-row: 3;
        text-align: right;
    }
    
    .cart-item-remove {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }
    
    .cart-buttons {
        flex-direction: column;
    }

    .filter-section {
        flex-direction: column;
        align-items: center;
    }

    .filter-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .pack-option-buttons {
        flex-direction: column;
    }

    .modal-thumbnail {
        width: 60px;
        height: 60px;
    }

    .about-content {
        flex-direction: column;
    }

    .partners-cards {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        gap: 15px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }	
}