/* =========================================
   Base Resets & Color Variables
========================================= */
:root {
  /* Replace these hex codes if your original site uses specific custom shades */
  --bg-color: #0c1a2d;          /* Main page background */
  --text-color: #dbe3eb;        /* Standard body text */
  --primary-color: #ffffff;     /* Headings and logo */
  --light-bg: #162e4a;          /* Background for placeholders and footer */
  --border-color: #1f3c5f;      /* Subtle lines separating sections */
  --accent-color: #60cafc;      /* Review star color */
  --sale-color: #d32f2f;        /* Color for 'Sale price' text if needed */
  --button-bg: #60cafc;         /* Standard button background */
  --button-text: #ffffff;       /* Standard button text */
}

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

body { 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
  color: var(--text-color); 
  background-color: var(--bg-color);
  line-height: 1.6; 
}

a { 
  text-decoration: none; 
  color: var(--text-color); 
  transition: color 0.2s ease, opacity 0.2s ease; 
}

ul { 
  list-style: none; 
}

img {
    border-radius: 10%;
}

.container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 0 20px; 
}

/* =========================================
   Header Navigation
========================================= */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: var(--bg-color); 
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-wrapper { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap;
}

.logo { 
  font-size: 1.8rem; 
  font-weight: 700; 
  letter-spacing: -0.5px; 
  z-index: 1001;
  color: var(--primary-color); 
}

.logo:hover { color: var(--primary-color); }

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

/* ===================
	Hero Section
=================== */
.hero {
  position: relative;
  padding: 5rem 0 0 0;
}

.hero-content {
  text-align: center;
}

.hero-content h1 { 
  font-size: 3rem; 
  margin: 1.5rem 0;
  color: var(--primary-color); 
}

.hero-content p { 
  font-size: 1.2rem; 
}

/* =========================================
   Product Grid
========================================= */
.product-section { 
/*  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 50px; 
  padding: 60px 20px; 
  align-items: start; */
  padding: 3rem 0 3rem 0;
}
/*
.shopify-placeholder { 
  background: var(--light-bg); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border: 1px solid var(--border-color); 
  border-radius: 4px; 
  color: #666; 
  text-align: center; 
  padding: 30px; 
  min-height: 150px; 
  width: 100%; 
  font-size: 0.9rem;
}

.product-gallery .shopify-placeholder { 
  min-height: 450px; 
}

.product-details h1 { 
  font-size: 2.2rem; 
  margin-bottom: 15px; 
  color: var(--primary-color); 
  line-height: 1.2; 
}

.price { 
  font-size: 1.6rem; 
  font-weight: 600; 
  margin-bottom: 25px; 
  color: var(--primary-color); 
}

.tax-info { 
  font-size: 0.9rem; 
  font-weight: 400; 
  color: #666; 
  display: block; 
  margin-top: 5px; 
}

.description { 
  margin-bottom: 30px; 
  font-size: 1.05rem; 
}

.description ul { 
  margin-top: 20px; 
  padding-left: 20px; 
  list-style: disc; 
}

.description li { 
  margin-bottom: 10px; 
}
*/

/* ==================
   Photo grid
================== */   
.photo-grid { 
    display: flex; 
    flex-direction: row;
    align-items: center;
}

.photo-img img {
    width: 80%;
    height: 80%;
/*    border-radius: 10%; */
}

/* =========================================
   Three-Column Info Layout
========================================= */
.info-section { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 40px; 
  padding: 60px 0; 
  border-top: 1px solid var(--border-color); 
  border-bottom: 1px solid var(--border-color); 
  margin-bottom: 60px; 
}

.info-block h2 { 
  margin-bottom: 15px; 
  font-size: 1.4rem; 
  color: var(--primary-color); 
}

/* =========================================
   Reviews Carousel
========================================= */
.reviews-section { 
  padding: 20px 20px 80px; 
  text-align: center; 
}

.reviews-section h2 { 
  margin-bottom: 40px; 
  font-size: 2rem; 
  color: var(--primary-color);
}

.carousel-container { 
  max-width: 800px; 
  margin: 0 auto; 
  overflow: hidden; 
  position: relative; 
  background: var(--light-bg); 
  border-radius: 8px; 
  border: 1px solid var(--border-color);
}

.carousel-track { 
  display: flex; 
  transition: transform 0.6s ease-in-out; 
}

.review-card { 
  min-width: 100%; 
  padding: 50px 30px; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
}

.stars { 
  color: var(--accent-color); 
  font-size: 1.4rem; 
  margin-bottom: 20px; 
  letter-spacing: 2px; 
}

.review-text { 
  font-size: 1.2rem; 
  font-style: italic; 
  margin-bottom: 25px; 
  max-width: 600px; 
  line-height: 1.5; 
  color: var(--text-color); 
}

.review-author { 
  font-weight: 600; 
  color: var(--text-color); 
  font-size: 0.95rem; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}

/* =========================================
   Footer
========================================= */
.site-footer { 
  background: var(--bg-color); 
  border-top: 1px solid var(--border-color); 
  padding: 30px 0; 
  text-align: center; 
  font-size: 0.9rem; 
}

.footer-strap {
  font-size: 1.2rem; 
  font-style: italic;
  color: var(--primary-color);
}

.footer-wrapper { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  align-items: center; 
}

.footer-links { 
  display: flex; 
  gap: 20px; 
  flex-wrap: wrap; 
  justify-content: center; 
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* ===================
	Page Content
=================== */
.page-content {
  position: relative;
  padding: 7rem 0 2rem 0;
/*  max-width: 1100px; */
  width: 60%;
  margin: 0 auto; 
}

.page-content h1 { 
  color: var(--primary-color); 
  margin-top: 2rem; 
  margin-bottom: 30px;
  font-size: 2.2rem;
  text-align: center;
}

.page-content h2 { 
  color: var(--primary-color); 
  margin-top: 2rem; 
}

.page-content p { 
  margin-top: 0.8rem; 
}

.page-content ol { 
  margin-top: 0.8rem; 
/*  position: relative; */
  padding-left: 2rem; 
}
        
.page-content ul { 
  margin-top: 0.8rem; 
/*  position: relative; */
  padding-left: 2rem; 
}
        
.page-content span {
  font-weight: bold;
  color: var(--primary-color); 
}

.page-content a {
  text-decoration: underline; 
}

.mugshot {
  display: block;
  height: auto;
  width: 35%;
  margin-left: auto;
  margin-right: auto;
}

.instr {
  display: block;
  height: auto;
  width: 60%;
  margin-left: 0;
  margin-right: auto;
  margin-top: 1rem;
}

/* =========================================
   Responsive Adjustments (Tablet/Mobile)
========================================= */
@media (max-width: 1000px) {
  .page-content {
    width: 75%;
  }
}
@media (max-width: 850px) {
  .hero {
    padding: 8rem 0 0 0;
  }

  .photo-grid { 
    flex-direction: column;
    margin: 0 5rem;
  }
  
  .nav-wrapper { 
    flex-direction: column; 
    gap: 20px; 
    text-align: center; 
  }
  .page-content {
    width: 90%;
  }
}