﻿/* Main Code */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter',Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: #303030;
  color: #2d2d2d;
  text-align: center;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}
.page {
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.container {
  width: min(1100px, 100%);
  margin: 2em auto;
  padding: 0 20px;
}

.section {
  padding: 80px 20px;
}

.text-center { 
	text-align: center; 
}
.header-minimal {
  width: 100%;
  background: #000000;
}
.launch-promo-banner {
  background: #ff3e96; /* Uses your high-contrast community pink */
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 62, 150, 0.25);
}
.privacy-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: #777777; /* Muted gray so it feels like a professional footnote */
  max-width: 500px;
  margin: 15px auto 0 auto;
  text-align: center;
}
.delivery-tiers-list {
  margin: 10px 0 0 0;
  padding-left: 20px;
  list-style-type: disc;
}

.delivery-tiers-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  text-align: left;
}

.delivery-tiers-list li:last-child {
  margin-bottom: 0;
}
.announcement-bar {
  background: #2c2c2c;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 20px;
  text-align: center;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #222;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}
.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 150px;
  width: auto;
  display: block;
}
.header-nav {
  display: flex;
  align-items: center;
}
.btn-shop-header {
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-shop-header:hover {
  background: #ff3e96;
  color: #ffffff;
}
@media (max-width: 768px) {
  .header-inner {
    padding: 10px 15px;
  }
  .logo img {
    max-height: 100px;
  }
  .btn-shop-header {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}
/* ==========================================================================
   1. MOBILE & TABLET DEFAULT STYLES (Everything below 1024px viewports)
   ========================================================================== */
.hero-section {
  display: flex;             /* FIX 1: Keeps your hero wrapper strictly unified on mobile screens */
  flex-direction: column;
  background: black;
  color: white;
  width: 100%;
  height: auto;              /* Allows the layout footprint to scale dynamically based on your image asset */
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;            /* Ensures no bottom alignment gap spacing errors occur */
}

.hero-overlay {
  padding: 2.5rem 1.5rem; 
  box-sizing: border-box;
  background: black;         /* Guarantees readability behind your white statement text blocks on mobile screens */
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.primary-statement, .secondary-statement {
  width: 100%;
  margin: 0 0 1rem 0;
  text-align: left;
}

/* FIX 2: Clear, structural baseline spacing for the lower content containers */
.container {
  display: block;
  width: 100%;
  padding: 3rem 1.5rem;      
  box-sizing: border-box;
  background: #ffffff;       /* Assumed crisp white background for your mission statement body copy layout */
  color: #000000;
}

/* ==========================================================================
   2. BREAKPOINT: DESKTOP ONLY (992px and up)
   ========================================================================== */
@media (min-width: 992px) {
  .hero-section {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: calc(100vh - 120px); 
    overflow: hidden;
  }

  .hero-image {
    grid-area: 1 / 1 / 2 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85); 
  }

  .hero-overlay {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns your container block to the upper top quadrant */
    align-items: flex-end;       /* Shoves the whole text block wrapper over to the right hand side */
    padding: 4rem 2rem 4rem 0;          
    z-index: 2;
    box-sizing: border-box;
    /* Clean radial gradient floor to enhance white text readability over your background imagery */
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 80%);
  }
  
  .hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;     /* Snaps headline lines and paragraphs flush against their left edges */
    text-align: left;
    width: max-content;          /* Keeps "gather" safely stretched out on exactly one horizontal line row */
    max-width: 100%;
  }

  .primary-statement, .secondary-statement {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.9);
    margin: 0;
  }

  .primary-statement {
    font-size: 2.5rem;      
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    width: max-content;          
    max-width: 100%;
  }

  .secondary-statement {
    font-size: 1.4rem; 
    line-height: 1.4;
    width: 100%;
    max-width: 580px;            /* Retains a tidy width envelope so long copy remains cozy and easy to scan */
  }
  
  .container {
    padding: 5rem 10% 4rem 10%; /* Expands your padding values dynamically on high resolution display outputs */
  }
}
.announcement-note {
  font-size: 15px;
  font-style: italic;
  color: #555;
  margin-top: 15px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.mission-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  text-align:left;
}

.main-title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 25px;
  color: #1a1a1a;
  line-height: 1.3;
}
.work-step {
  background: #fdfdfd;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.work-step h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
}

.work-step p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid.grid-3.preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  padding: 20px 0;
  align-items: stretch;
}

.grid.grid-3.preview .sticker-card {
  width: 100%;
  box-sizing: border-box;
  padding: 35px 20px 25px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fdfdfd;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grid.grid-3.preview .sticker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.grid.grid-3.preview .featured-card {
  border: 2px solid #1a1a1a;
}
.sticker-pricing-wrapper {
  padding: 10px 0;
  text-align: center;
}
.pricing-headline {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #2c2c2c;
  margin-bottom: 20px;
}
.wholesale-section {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.intro-text {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #555;
  line-height: 1.5;
}

.wholesale-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 50px;
  border-top: 1px solid #eef0f2;
  padding-top: 40px;
  text-align: left;
}

.wholesale-step-card {
  background: #fdfdfd;
  border: none;
  border-left: 3px solid #1a1a1a;
  padding: 15px;
}

.wholesale-step-card h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
}

.wholesale-step-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
  .wholesale-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .wholesale-steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  white-space: nowrap;
  z-index: 10;
}

/* --- Profit Summary Data Grid Lists --- */
.profit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  border-top: 1px dashed #ced4da;
  display: flex;
  flex-direction: column;
}

.profit-list li {
  font-size: 14px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profit-list li:last-child {
  border-bottom: none;
}

.profit-list strong {
  color: #2e7d32;
  font-weight: 700;
  font-size: 15px;
}

/* --- Ecwid Core Embed Override Controls --- */
.grid.grid-3.preview .ecsp {
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 15px;
}

/* --- Layout Device Media Adjustments --- */
@media (max-width: 1024px) {
  .grid.grid-3.preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mission-wrapper {
    padding: 15px;
  }
  .main-title {
    font-size: 22px;
  }
  .pricing-headline {
    font-size: 17px;
  }
  .grid.grid-3.preview {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.how-it-works-section {
  text-align: center;
  margin-bottom: 40px;
  padding: 10px;
}
.work-step {
    background: #fdfdfd;
    border: none; /* Soften the harsh borders */
    padding: 15px;
}
.work-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  text-align:left;
  color: #1a1a1a;
}
.work-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}
.product-specs-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #f8f9fa;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.spec-item strong {
    display: block;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-item span {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .product-specs-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .product-specs-bar {
        grid-template-columns: 1fr;
        text-align: left;
        padding-left: 30px;
    }
}
.stickers-wild {
  padding: 60px 0;
  background: #ffffff;
}
.spec-marketing-highlight span {
    color: #ff3e96 !important; /* Uses your high-contrast community pink to stand out */
}
.wild-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.wild-card {
  background: #faf9f8;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.2s ease;
}

.wild-card:hover {
  transform: scale(1.02);
}

.wild-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.wild-location {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  text-align: left;
}
.contact {
  background: #f4f1f3;
  padding: 20px 5px;
  display:flex;
  justify-content:center;
}
.contact .container {
	max-width: 600px;
	margin: 0 auto;
}
.contact h2 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #1a1a1a;
	padding:5px 0 0 0;
}
.contact p {
	font-size: 16px;
	color: #1a1a1a;
	margin-bottom: 15px;
}
.contact-links p {
	margin-bottom: 10px;
}
.contact a {
	color: #1a1a1a;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.2s ease;
}
.contact a:hover {
	border-bottom: 1px solid #1a1a1a;
}

.contact-social {
	margin-top: 25px;
}
.contact-social a {
	color: #1a1a1a;
	display: inline-block;
	transition: transform 0.2s ease, color 0.2s ease;
}
.contact-social a:hover {
	transform: translateY(-2px);
	color: #555555;
}
.social-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 12px auto;
  width:fit-content;
}

.social-bar a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  transition: opacity 0.2s ease;
}

.social-bar a:hover {
  opacity: 0.7;
}

.social-bar svg {
  flex-shrink: 0;
}
/* Store */
.storeblock {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 5px;
  background: #fefdff;
}

.store-intro {
  text-align: center;
  max-width: 800px;
  margin:0 auto;
  padding:0 2rem;
}

.store-intro h2 {
  margin-bottom: 10px;
}
.store-intro h1.store-title {
  font-weight: 700;
  margin-bottom: 35px;
  line-height: 1.3;
  text-align:center;
}

.mission-line {
  margin: 6px 0;
  font-size: 1rem;
}

.mission-line.subtle {
  opacity: 0.75;
  font-size: 0.95rem;
  margin-bottom:1em;
}
.mission-copy {
  text-align: center;
  margin-bottom: 10px;
}

.mission-copy p {
  margin: 6px 0;
}
.mission-copy .subtle {
  color: #666;
  font-size: 0.95rem;
}
/* CART becomes a “badge module,” not a section */
.cartdiv {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.cart-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cart-label {
  font-size: 0.75rem;
  opacity: 0.8;
}
/* MOBILE */
@media (max-width: 768px) {
  .storeblock {
    grid-template-columns: 1fr;
    text-align: center;
  }

}
.storeblock .storefrontblock {
	width:95%;
	padding:0;
	margin:0 auto;
}
.storeblock .storefrontblock p.storetitle {	
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  text-align:left;
}
.storeblock .storepolicies {
	width:70%;
	padding:0;
	margin:0 auto;
}
.storeblock .storepolicies p.storeblockinfo {
	width:55%;
	text-align:left;
	margin:0 auto;
	padding:0;
	font-size:1em;
	color:#1a1a1a;
}
@media (max-width: 768px) {
	.storeblock .storeintro {
		width:95%;
		padding:0;
		margin:1em auto;
		}
	.storeblock .storefrontblock {
		width:95%;
		padding:0;
		margin:1em auto;
		}
	.storeblock .storepolicies p.storeblockinfo {
		width:95%;
  }
}
/* TABLET */
@media (min-width:768px) and (max-width:1279px) and (orientation:portrait) {
	.storeblock .storeintro {
		width:95%;
		padding:0;
		margin:1em auto;
		}
	.storeblock .storefrontblock {
		width:95%;
		padding:0;
		margin:1em auto;
		}
	.storeblock .storepolicies p.storeblockinfo {
		width:95%;
  }
}
.storeblock .storepolicies p.storeblockinfo em {
	text-align:center;
	display:block;
	font-size:1.4em;
	margin-top:2em;
	color:#1a1a1a;
}
.storeblock .storepolicies p.storeblockinfo img, .storeblock .storepolicies img.storeheaderlogo {	
	width:100%;
	display:block;
	padding:1em 0;
	margin:1em 0;
}
.storeblock .storepolicies h4 a, .storeblock .storepolicies h4 a:visited, .storeblock .storepolicies h4 a:hover, .storeblock .storepolicies h4 a:active, .storeblock .storepolicies h4 a:focus {
	text-align:center;
	margin:0;
	padding:1em 0;
	font-size:1em;
	display:block;
	color: #1a1a1a !important;
	transition: transform 0.2s ease, color 0.2s ease;
}
.termsblock {
  padding: 2rem 1rem; /* Generous breathing room top/bottom and sides */
  background: #fff;
  color: #333;
}

/* THE FIX: Apply the layout constraints ONCE to a wrapper container */
.terms-content {
  width: min(90%, 800px); /* 90% width on mobile, caps beautifully at 800px on desktop */
  margin: 0 auto; /* Centers the entire document block cleanly */
  text-align: left;
}

.termsblock h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Clean, modern list layout */
.termsblock ul.termslist {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0; /* Big gap below the table of contents */
}

.termsblock ul.termslist li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0; /* Soft dividers make it highly readable */
}

.termsblock ul.termslist li a {
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

.termsblock ul.termslist li a:hover {
  text-decoration: underline;
}

/* Elegant spacing for legal text sections */
.termsblock .termssection {
  margin-bottom: 2.5rem;
}

.termsblock .termssection h3 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem 0; /* Snugs title closely to its paragraph */
  color: #000;
}

.termsblock .termssection p {
  font-size: 1rem;
  line-height: 1.6; /* Maximizes legibility for long walls of text */
  margin: 0;
  color: #444;
}
/* Footer */
.footer {
  padding: 40px 5px;
  background: black;
  color: white;
}
.footer img {
 margin: 0 auto;
}
.footer-links {
	margin-bottom: 15px;
}

.footer-links a {
	margin: 0 10px;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
}

.footer-note {
	font-size: 13px;
	color: #e6e0e3;
	max-width: 600px;
	margin: 0 auto;
}
.footer-logo {
	width: 175px;
	margin-bottom: 20px;
	opacity: 0.8;
}
