/** Shopify CDN: Minification failed

Line 42:0 All "@import" rules must come first

**/
/* Overprompted Testing Store Styles */

/* 
==============================================
COLOR PALETTE & TYPOGRAPHY VARIABLES
Easy to edit - just change these values!
==============================================
*/
:root {
  /* Main Colors */
  --primary-color: #1a2a3a;      /* Dark blue for backgrounds, headers */
  --secondary-color: #007bff;    /* Blue for accents, links */
  --accent-color: #4ade80;       /* Green for call-to-action buttons */
  
  /* Testing Phase Colors */
  --alpha-color: #FF6B6B;        /* Red for Alpha testing phase */
  --beta-color: #48BEFF;         /* Blue for Beta testing phase */
  --rc-color: #4CAF50;           /* Green for Release Candidate phase */
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  
  /* Typography */
  --heading-font: 'JetBrains Mono', monospace;
  --body-font: 'Open Sans', sans-serif;
  --code-font: 'Roboto Mono', monospace;
}

/* 
==============================================
FONT IMPORTS
==============================================
*/
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Open+Sans:wght@400;600&family=Roboto+Mono:wght@400;700&display=swap');

/* 
==============================================
GLOBAL STYLES
==============================================
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: var(--dark-gray);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* 
==============================================
HEADER STYLES
==============================================
*/
header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

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

.logo {
  text-align: center;
  padding: 1rem 0;
}

.logo a {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo span.tech {
  color: var(--secondary-color);
}

.logo span.testing {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.nav-menu a {
  margin: 0 1rem;
  padding: 0.5rem 1rem;
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-weight: 400;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.cart-icon {
  display: flex;
  align-items: center;
}

.cart-icon a {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.cart-icon svg {
  margin-right: 0.5rem;
}

/* 
==============================================
PRODUCT PAGE STYLES
==============================================
*/
.product-container {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.product-image {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-details {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testing-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  border-radius: 4px;
  text-transform: uppercase;
}

.alpha {
  background-color: var(--alpha-color);
}

.beta {
  background-color: var(--beta-color);
}

.rc {
  background-color: var(--rc-color);
}

.product-price {
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.original-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--medium-gray);
  margin-left: 0.5rem;
}

.sale-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin-left: 0.5rem;
  background-color: #dc3545;
  color: white;
  font-size: 0.75rem;
  border-radius: 4px;
  vertical-align: middle;
}

.product-description {
  margin-bottom: 1.5rem;
}

.add-to-cart {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: var(--accent-color);
  color: white;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #3cbe70;
}

.product-features {
  margin-top: 2rem;
}

.size-selector {
  margin-bottom: 1.5rem;
}

.size-selector h3 {
  margin-bottom: 0.5rem;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-option {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-family: var(--heading-font);
  cursor: pointer;
  transition: all 0.3s ease;
}

.size-option:hover {
  border-color: var(--secondary-color);
}

.size-option.selected {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: white;
}

/* 
==============================================
PRODUCT GRID STYLES (for collection page)
==============================================
*/
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%; /* 1:1 Aspect Ratio */
}

.product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.25rem 0.5rem;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  border-radius: 4px;
  z-index: 1;
}

.product-card-info {
  padding: 1rem;
}

.product-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-card-price {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.product-card-current-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.product-card-original-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--medium-gray);
  margin-left: 0.5rem;
}

.product-card-button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background-color: var(--accent-color);
  color: white;
  font-family: var(--heading-font);
  font-size: 0.875rem;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card-button:hover {
  background-color: #3cbe70;
}

/* 
==============================================
FOOTER STYLES
==============================================
*/
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--light-gray);
}

.footer-section a:hover {
  color: var(--accent-color);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: var(--medium-gray);
}

/* 
==============================================
RESPONSIVE STYLES
==============================================
*/
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
  }
  
  .nav-menu {
    flex-wrap: wrap;
  }
  
  .nav-menu a {
    margin: 0.5rem;
  }
  
  .header-container {
    flex-direction: column;
  }
  
  .cart-icon {
    margin-top: 1rem;
  }
}

/* 
==============================================
UTILITY CLASSES
==============================================
*/
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}
