/* Font Face Definitions */
@font-face {
  font-family: 'Soleil';
  src: url('./assets/soleil/SoleilRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Soleil';
  src: url('./assets/soleil/SoleilBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Soleil';
  src: url('./assets/soleil/SoleilBook.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Soleil';
  src: url('./assets/soleil/SoleilLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Abril Fatface';
  src: url('./assets/Abril_Display_Bold.otf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('./assets/Inter_18pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

p:empty {
  display: none;
}

br {
  line-height: 0;
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600 !important;
}

.single #page {
  padding-top: 1% !important;
}

html {
  font-size: 16px !important;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    'Soleil',
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
  background-color: white;
  color: #0a0e27;
  line-height: 1.5;
}

/* Layout Classes */
.min-h-screen {
  min-height: 100vh;
}

.bg-white {
  background-color: white;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-830px {
  max-width: 830px;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.space-x-2 > * + * {
  margin-left: 0.5rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

/* Typography */
.font-abril {
  font-family: 'Abril Fatface', serif;
  font-weight: 500;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-26px {
  font-size: 26px;
}

.text-16px {
  font-size: 16px;
}

.text-24px {
  font-size: 26px;
}

.text-32px {
  font-size: 32px;
}

.text-30px {
  font-size: 32px;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.25;
}

.leading-1-4 {
  line-height: 1.4;
}

.leading-1-6 {
  line-height: 1.6;
}

.tracking-003em {
  letter-spacing: 0.03em;
}

.tracking-004em {
  letter-spacing: 0.04em;
}

.uppercase {
  text-transform: uppercase;
}

/* Colors */
.text-black {
  color: #000000;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-yellow-500 {
  color: #eab308;
}

.text-link {
  color: #4e60a8;
}

.text-link-hover {
  color: #3e5098;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

/* Borders */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-b-2 {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-gray-100 {
  border-color: #f3f4f6;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.border-link {
  border-color: #4e60a8;
}

.rounded-lg {
  border-radius: 0.5rem;
}

/* Flexbox */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-row {
  flex-direction: row;
}

.justify-between {
  justify-content: space-between;
}

/* Grid */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Components */
.h-10 {
  height: 2.5rem;
}
.h-20 {
  height: 5rem;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-80px {
  width: 80px;
}

.h-80px {
  height: 80px;
}

.h-103px {
  height: 103px;
}

.h-280px {
  height: 280px;
}

.max-w-350px {
  max-width: 350px;
}

.overflow-hidden {
  overflow: hidden;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* Buttons */
.btn-primary {
  background-color: #87cdbf;
  color: black;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #7bbfb2;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

.product-title-link {
  text-decoration-color: #4e60a8 !important;
}

.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.text-inherit {
  color: inherit;
}

.cursor-pointer {
  cursor: pointer;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

/* Transitions */
.transition-colors {
  transition-property: color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-0-5 {
  margin-top: 0.125rem;
}

.hidden {
  display: none;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Add some scroll margin to account for any fixed headers */
[id] {
  scroll-margin-top: 20px;
}

/* Hover States */
.hover-text-link:hover {
  color: #4e60a8;
}

.hover-text-link-hover:hover {
  color: #3e5098;
}

/* Responsive Classes for Medium Screens */
@media (min-width: 768px) {
  .md-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md-py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md-mb-2 {
    margin-bottom: 0.5rem;
  }

  .md-mb-4 {
    margin-bottom: 1rem;
  }

  .md-mb-5 {
    margin-bottom: 1.25rem;
  }

  .md-mb-6 {
    margin-bottom: 1.5rem;
  }

  .md-mb-8 {
    margin-bottom: 2rem;
  }

  .md-mb-9 {
    margin-bottom: 2.25rem;
  }

  .md-mb-10 {
    margin-bottom: 2.5rem;
  }

  .md-mb-12 {
    margin-bottom: 3rem;
  }

  .md-mb-16 {
    margin-bottom: 4rem;
  }

  .md-mb-25 {
    margin-bottom: 6.25rem;
  }

  .md-p-6 {
    padding: 1.5rem;
  }

  .md-gap-3 {
    gap: 0.75rem;
  }

  .md-gap-6 {
    gap: 1.5rem;
  }

  .md-gap-8 {
    gap: 2rem;
  }

  .md-space-y-3 > * + * {
    margin-top: 0.75rem;
  }

  .md-text-13px {
    font-size: 13px;
  }

  .md-text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md-text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md-text-26px {
    font-size: 26px;
  }

  .md-text-32px {
    font-size: 32px;
  }

  .md-w-5 {
    width: 1.25rem;
  }

  .md-h-5 {
    height: 1.25rem;
  }

  .md-w-100px {
    width: 100px;
  }

  .md-h-100px {
    height: 100px;
  }

  .md-h-237px {
    height: 237px;
  }

  .md-w-355px {
    width: 355px;
  }

  .md-h-358px {
    height: 358px;
  }

  .md-flex-row {
    flex-direction: row;
  }

  .md-text-left {
    text-align: left;
  }

  .md-justify-start {
    justify-content: flex-start;
  }

  .md-tracking-004em {
    letter-spacing: 0.04em;
  }

  .md-hidden {
    display: none;
  }

  .md-block {
    display: block;
  }

  .md-flex {
    display: flex;
  }

  .md-h-auto {
    height: auto;
  }

  .btn-primary {
    padding: 0.625rem 2rem;
  }

  .btn-primary.w-full {
    width: auto;
  }
}
