/* Shearline - Essential styles */

/* Base styles */
html {
  scroll-padding-top: 90px; /* Add scroll padding to fix anchor offset */
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

body {
  background-color: #151517 !important;
  color: #919191;
}

h1, h2, h3, h4, h5, h6 {
  color: #FFDB91;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

h2 {
  font-size: 44px;
}

a {
  color: #FF7100;
  text-decoration: none;
}

a:hover {
  color: #cc5a00;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin: 0 0 10px 0;
}

/* Navigation styles moved to navigation.css */

/* Layout */
#sp-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.sp-el-section {
  width: 100%;
  max-width: 100%;
  padding: 10px;
}

.sp-el-row {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.sp-el-col {
  width: calc(50% - 0px);
}

.sp-w-full {
  width: 100%;
}

/* Components */
.sp-image-wrapper {
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp-image-wrapper div {
  width: 100%;
  text-align: center;
}

.sp-image-wrapper img {
  margin: 0 auto;
}

.sp-spacer {
  height: 27px;
}

.sp-divider {
  width: 90%;
  border-top: 1px dashed #FB9003;
}

.sp-divider-wrapper {
  display: flex;
  margin: 0;
  justify-content: center;
  padding: 10px 0;
}

.sp-button-wrapper {
  margin: 0 0 20px 0;
}

.sp-button {
  display: inline-block;
  background: linear-gradient(-180deg, #FB9003, #D87C03 90%);
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 22px;
  width: 100%;
  text-align: center;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px inset;
}

.sp-button:hover {
  text-decoration: none;
  opacity: 0.9;
}

.sp-mr-2 {
  margin-right: 0.5rem;
}

.sp-text-wrapper {
  margin: 0;
  text-align: left;
}

/* Price formatting */
.price {
  font-size: 1.2em;
  font-weight: 500;
  color: #FFDB91;
}

.price-dollars {
  font-size: 1.1em;
}

.price-cents {
  font-size: 0.7em;
  position: relative;
  top: -0.5em;
  font-weight: 400;
  margin-left: 1px;
  border-bottom: 1px solid #FB9003;
  padding-bottom: 1px;
}

.price-currency {
  font-weight: 400;
  color: #FB9003;
  margin-right: 3px;
}

/* Background styles */
.spBgcover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 100%;
}

/* Product Sections */
section:nth-of-type(4) .sp-el-col:last-child {
  padding-left: 15px;
}

section:nth-of-type(6) .sp-el-col:first-child {
  padding-right: 15px;
}

section:nth-of-type(6) .sp-el-col:last-child {
  padding-left: 15px;
}

section:nth-of-type(8) .sp-el-col:last-child {
  padding-left: 15px;
}

/* Footer */
section:last-of-type {
  margin-top: 20px;
}

section:last-of-type .sp-el-row {
  padding: 25px 30px;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-radius: 12px !important;
}

section:last-of-type .sp-text-wrapper {
  padding: 5px 10px;
}

section:last-of-type .sp-el-col:first-child {
  border-right: 1px solid rgba(251, 144, 3, 0.3);
}

section:last-of-type strong {
  font-size: 1.2em;
  letter-spacing: 0.5px;
}

section:last-of-type p {
  line-height: 1.6;
  margin-bottom: 15px;
}

section:last-of-type p:last-child {
  margin-bottom: 0;
}

/* Fix TM superscript size */
sup {
  font-size: 60%;
  vertical-align: super;
  opacity: 0.8;
}

/* Email and phone links in footer */
section:last-of-type a {
  color: #FFDB91;
  border-bottom: 1px dashed #FFDB91;
  padding-bottom: 1px;
}

section:last-of-type a:hover {
  color: #FB9003;
  border-bottom: 1px dashed #FB9003;
}

/* These styles have been moved to navigation.css */

/* Responsive */
@media only screen and (max-width: 768px) {
  .sp-el-row {
    flex-direction: column;
  }
  
  .sp-el-col {
    width: 100%;
  }
  
  h2 {
    font-size: 36px;
    text-align: center;
  }
  
  .sp-text-wrapper {
    text-align: center;
  }
  
  section:last-of-type .sp-el-col:first-child {
    order: 2;
    margin-top: 20px;
  }

  /* Mobile navigation styles moved to navigation.css */
} 