/**
 * Theme Variables
 *
 * CSS variables are used for Customizer support.
 */
:root {
  /* Primary */
  --eilmo-primary: #3a2355;
  --eilmo-primary-dark: #1b0d2b;
  /* Surface */
  --eilmo-background: #140a20;
  --eilmo-surface: #1A1026;
  --eilmo-surface-alt: rgba(168, 85, 247, 0.12);
  --eilmo-border: rgba(255,255,255,.10);
  --eilmo-border-alt: rgba(168, 85, 247, 0.22);
  /* Text */
  --eilmo-text: #c5c5ce;
  --eilmo-heading: #ffffff;
  --eilmo-muted: #8e8e98;
  /* Accent */
  --eilmo-accent: #ddf247;
  --eilmo-accent-alt: #C084FC;
  --eilmo-accent-hover: #cde93a;
  /* Button */
  --eilmo-button-background: var(--eilmo-accent);
  --eilmo-button-text: #000000;
  --eilmo-button-hover: var(--eilmo-accent-hover);
  /* Typography */
  --eilmo-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --eilmo-font-heading: inherit;
  --eilmo-font-size: 16px;
  --eilmo-line-height: 1.6;
  /* Layout */
  --eilmo-container-width: 1200px;
  --eilmo-content-width: 800px;
  /* Radius */
  --eilmo-radius-sm: 6px;
  --eilmo-radius: 12px;
  --eilmo-radius-lg: 22px;
  /* Transition */
  --eilmo-transition: 0.25s ease;
}

/**
 * Reset
 */
/**
 * Box Model
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
 * Document
 */
html {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
}

/**
 * Media
 */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

/**
 * Images
 */
img {
  height: auto;
  border-style: none;
}

/**
 * Forms
 */
button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

/**
 * Remove button defaults
 */
button,
[type=button],
[type=reset],
[type=submit] {
  appearance: none;
}

/**
 * Links
 */
a {
  text-decoration: none;
}

/**
 * Lists
 */
ul,
ol {
  padding-left: 0;
}

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Hidden
 */
[hidden] {
  display: none !important;
}

/**
 * Focus
 */
:focus-visible {
  outline: 2px solid var(--eilmo-accent);
  outline-offset: 3px;
}

/**
 * Typography
 */
body {
  font-family: var(--eilmo-font-body);
  font-size: var(--eilmo-font-size);
  line-height: var(--eilmo-line-height);
  color: var(--eilmo-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--eilmo-heading);
  font-family: var(--eilmo-font-heading);
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: 0.875em;
}

/**
 * Global Styles
 */
/**
 * Box sizing
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
 * HTML
 */
html {
  scroll-behavior: smooth;
}

/**
 * Body
 */
body {
  margin: 0;
  background: var(--eilmo-background);
  color: var(--eilmo-text);
  font-family: var(--eilmo-font-body);
  font-size: var(--eilmo-font-size);
  line-height: var(--eilmo-line-height);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/**
 * Heading
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--eilmo-heading);
  font-family: var(--eilmo-font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/**
 * Paragraph
 */
p {
  margin-top: 0;
}

/**
 * Links
 */
a {
  color: inherit;
  transition: var(--eilmo-transition);
}

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

/**
 * Media
 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/**
 * Images
 */
img {
  height: auto;
}

/**
 * Lists
 */
ul,
ol {
  margin-top: 0;
}

/**
 * Tables
 */
table {
  width: 100%;
  border-collapse: collapse;
}

/**
 * Selection
 */
::selection {
  background: var(--eilmo-accent);
  color: var(--eilmo-button-text);
}

/**
 * Scrollbar
 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--eilmo-background);
}

::-webkit-scrollbar-thumb {
  background: var(--eilmo-primary);
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--eilmo-accent);
}

/**
 * Accessibility
 */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/**
 * Utilities
 */
.eilmo-container {
  width: min(100% - 30px, var(--eilmo-container-width));
  margin-inline: auto;
}

.eilmo-full-width {
  width: 100%;
}

.eilmo-text-center {
  text-align: center;
}

.eilmo-no-scroll {
  overflow: hidden;
}

/**
 * Layout Container
 */
/**
 * Main Container
 */
.eilmo-container {
  width: 100%;
  max-width: var(--eilmo-container-width);
  margin-inline: auto;
  padding-inline: 20px;
}

/**
 * Site Wrapper
 */
.eilmo-site {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/**
 * Main Content
 */
.eilmo-main {
  flex: 1;
  padding-block: 50px;
}

/**
 * Content Width
 */
.eilmo-content {
  width: 100%;
  max-width: var(--eilmo-content-width);
  margin-inline: auto;
}

/**
 * Full Width Template
 */
.eilmo-full-width {
  width: 100%;
  max-width: none;
}

/**
 * Elementor Compatibility
 */
.elementor-page .eilmo-main {
  padding-block: 0;
}

.elementor-page .eilmo-container {
  max-width: none;
  padding-inline: 0;
}

/**
 * WooCommerce Pages
 */
.woocommerce-page .eilmo-main {
  padding-block: 60px;
}

/**
 * Section Spacing
 */
.eilmo-section {
  padding-block: 80px;
}

/**
 * Small Section
 */
.eilmo-section-sm {
  padding-block: 50px;
}

/**
 * Tablet
 */
@media (max-width: 1024px) {
  .eilmo-container {
    padding-inline: 18px;
  }
  .eilmo-section {
    padding-block: 60px;
  }
}
/**
 * Mobile
 */
@media (max-width: 767px) {
  .eilmo-container {
    padding-inline: 15px;
  }
  .eilmo-main {
    padding-block: 35px;
  }
  .eilmo-section {
    padding-block: 45px;
  }
}
/**
 * Grid
 */
.eilmo-grid {
  display: grid;
  gap: 24px;
}

.eilmo-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eilmo-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eilmo-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 767px) {
  .eilmo-grid-2,
  .eilmo-grid-3,
  .eilmo-grid-4 {
    grid-template-columns: 1fr;
  }
}
/**
 * Spacing
 */
.eilmo-section {
  padding-block: 60px;
}

.eilmo-section-sm {
  padding-block: 30px;
}

.eilmo-section-lg {
  padding-block: 90px;
}

@media (max-width: 767px) {
  .eilmo-section {
    padding-block: 40px;
  }
  .eilmo-section-lg {
    padding-block: 60px;
  }
}
/**
 * Buttons
 */
/**
 * Base Button
 */
button,
input[type=button],
input[type=submit],
.wp-element-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--eilmo-radius);
  background: var(--eilmo-button-background);
  color: var(--eilmo-button-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--eilmo-transition);
}

/**
 * Hover
 */
button:hover,
input[type=button]:hover,
input[type=submit]:hover,
.wp-element-button:hover,
.button:hover {
  background: var(--eilmo-button-hover);
  color: var(--eilmo-button-text);
}

/**
 * Focus
 */
button:focus,
input[type=button]:focus,
input[type=submit]:focus,
.button:focus {
  outline: 2px solid var(--eilmo-accent);
  outline-offset: 3px;
}

/**
 * Disabled
 */
button:disabled,
.button.disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/**
 * Outline Button
 */
.eilmo-button-outline {
  background: transparent;
  border: 1px solid var(--eilmo-border);
  color: var(--eilmo-heading);
}

.eilmo-button-outline:hover {
  background: var(--eilmo-accent);
  border-color: var(--eilmo-accent);
  color: var(--eilmo-button-text);
}

/**
 * Icon Button
 */
.eilmo-icon-button {
  width: 45px;
  height: 45px;
  min-height: 45px;
  padding: 0;
  border-radius: 50%;
}

/**
 * WooCommerce Loading
 */
.woocommerce .button.loading {
  position: relative;
  opacity: 0.7;
}

.woocommerce .button.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: eilmo-spin 0.7s linear infinite;
}

@keyframes eilmo-spin {
  to {
    transform: rotate(360deg);
  }
}
/**
 * Mobile
 */
@media (max-width: 767px) {
  button,
  input[type=button],
  input[type=submit],
  .wp-element-button,
  .button {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 14px;
  }
}
/**
 * Forms
 */
/**
 * Fields
 */
input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--eilmo-border);
  border-radius: var(--eilmo-radius);
  background: var(--eilmo-surface);
  color: var(--eilmo-text);
  font-size: 15px;
  font-family: var(--eilmo-font-body);
  transition: var(--eilmo-transition);
}

/**
 * Textarea
 */
textarea {
  min-height: 120px;
  padding-block: 14px;
  resize: vertical;
}

/**
 * Placeholder
 */
input::placeholder,
textarea::placeholder {
  color: var(--eilmo-muted);
}

/**
 * Focus
 */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--eilmo-accent);
  background: var(--eilmo-background);
}

/**
 * Label
 */
label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--eilmo-heading);
  font-size: 14px;
  font-weight: 600;
}

/**
 * Select
 */
select {
  appearance: none;
  cursor: pointer;
}

/**
 * Checkbox / Radio
 */
input[type=checkbox],
input[type=radio] {
  width: 18px;
  height: 18px;
  min-height: auto;
  padding: 0;
  accent-color: var(--eilmo-accent);
}

/**
 * Search
 */
input[type=search] {
  appearance: none;
}

/**
 * Quantity
 */
.quantity {
  display: inline-flex;
}

.quantity input {
  width: 75px;
  text-align: center;
}

/**
 * Required
 */
.required {
  color: var(--eilmo-accent);
}

/**
 * WooCommerce Form Row
 */
.woocommerce .form-row {
  margin-bottom: 18px;
}

.woocommerce .form-row label {
  display: block;
}

.woocommerce .form-row input,
.woocommerce .form-row textarea,
.woocommerce .form-row select {
  width: 100%;
}

/**
 * Validation
 */
.woocommerce-invalid input {
  border-color: #ff4d6d;
}

.woocommerce-validated input {
  border-color: var(--eilmo-accent);
}

/**
 * Mobile
 */
@media (max-width: 767px) {
  input,
  select,
  textarea {
    min-height: 42px;
    font-size: 14px;
  }
}
/**
 * Modal
 */
.eilmo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}

.eilmo-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.eilmo-modal-content {
  background: var(--eilmo-background);
  border-radius: var(--eilmo-radius-lg);
  padding: 24px;
  max-width: 500px;
  width: calc(100% - 30px);
}

/*
|--------------------------------------------------------------------------
| Eilmo Preloader
|--------------------------------------------------------------------------
*/
.eilmo-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--loader-bg);
  transition: 0.5s ease;
}

.eilmo-preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/*
|--------------------------------------------------------------------------
| Wrapper
|--------------------------------------------------------------------------
*/
.eilmo-loader {
  position: relative;
  width: var(--loader-size);
  height: var(--loader-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/*
|--------------------------------------------------------------------------
| Logo Full Fit Circle
|--------------------------------------------------------------------------
*/
.eilmo-loader-logo {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: cover;
  border-radius: 50%;
  z-index: 5;
  animation: none !important;
  transform: none !important;
}

/*
|--------------------------------------------------------------------------
| Main Ring
|--------------------------------------------------------------------------
*/
.eilmo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 3;
  border: 2px solid var(--ring-color);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

/*
|--------------------------------------------------------------------------
| Wave From Ring
|--------------------------------------------------------------------------
*/
.eilmo-ring::before,
.eilmo-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 0 0 var(--ring-color);
  opacity: 0.8;
  animation: eilmoWave var(--speed) ease-out infinite;
}

.eilmo-ring::after {
  animation-delay: calc(var(--speed) / 2);
}

@keyframes eilmoWave {
  0% {
    box-shadow: 0 0 0 0 var(--ring-color);
    opacity: 0.7;
  }
  100% {
    box-shadow: 0 0 35px 35px transparent;
    opacity: 0;
  }
}
/**
 * Header
 */
.eilmo-header {
  width: 100%;
  background: var(--eilmo-background);
  border-bottom: 1px solid var(--eilmo-border);
  overflow: hidden;
}

.eilmo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.eilmo-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--eilmo-heading);
}

.eilmo-logo img {
  max-height: 50px;
  width: auto;
}

/**
 * Navigation
 */
.eilmo-nav {
  display: flex;
  align-items: center;
}

.eilmo-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.eilmo-nav a {
  color: var(--eilmo-text);
  font-weight: 500;
  transition: var(--eilmo-transition);
}

.eilmo-nav a:hover,
.eilmo-nav .current-menu-item > a {
  color: var(--eilmo-accent);
}

/**
 * Mobile
 */
@media (max-width: 767px) {
  .eilmo-nav {
    display: none;
  }
}
/**
 * Breadcrumb
 */
/**
 * Wrapper
 */
.woocommerce-breadcrumb,
.eilmo-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  color: var(--eilmo-muted);
  font-size: 14px;
  line-height: 1.4;
}

/**
 * Links
 */
.woocommerce-breadcrumb a,
.eilmo-breadcrumb a {
  color: var(--eilmo-text);
  text-decoration: none;
  transition: var(--eilmo-transition);
}

.woocommerce-breadcrumb a:hover,
.eilmo-breadcrumb a:hover {
  color: var(--eilmo-accent);
}

/**
 * Current
 */
.eilmo-breadcrumb-current {
  color: var(--eilmo-heading);
}

/**
 * Separator
 */
.eilmo-breadcrumb-separator {
  color: var(--eilmo-muted);
  opacity: 0.6;
}

/**
 * WooCommerce separator fix
 */
.woocommerce-breadcrumb {
  overflow: hidden;
}

/**
 * Breadcrumb Box Style
 */
.eilmo-breadcrumb-box {
  display: inline-flex;
  padding: 10px 18px;
  background: var(--eilmo-surface);
  border: 1px solid var(--eilmo-border);
  border-radius: var(--eilmo-radius);
}

/**
 * Mobile
 */
@media (max-width: 767px) {
  .woocommerce-breadcrumb,
  .eilmo-breadcrumb {
    margin-bottom: 20px;
    font-size: 13px;
  }
}
/**
 * Pagination
 */
/**
 * Wrapper
 */
.woocommerce-pagination,
.eilmo-pagination {
  margin-top: 50px;
}

/**
 * List
 */
.woocommerce-pagination ul,
.eilmo-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

/**
 * Remove WooCommerce Border
 */
.woocommerce-pagination ul li {
  border: 0;
}

/**
 * Links
 */
.woocommerce-pagination a,
.woocommerce-pagination span,
.eilmo-pagination a,
.eilmo-pagination span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--eilmo-surface);
  border: 1px solid var(--eilmo-border);
  color: var(--eilmo-text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--eilmo-transition);
}

/**
 * Hover
 */
.woocommerce-pagination a:hover,
.eilmo-pagination a:hover {
  background: var(--eilmo-primary);
  color: var(--eilmo-heading);
}

/**
 * Active
 */
.woocommerce-pagination span.current,
.eilmo-pagination span.current {
  background: var(--eilmo-accent);
  border-color: var(--eilmo-accent);
  color: var(--eilmo-button-text);
}

/**
 * Prev Next
 */
.woocommerce-pagination .prev,
.woocommerce-pagination .next,
.eilmo-pagination .prev,
.eilmo-pagination .next {
  width: auto;
  padding-inline: 18px;
  border-radius: 50px;
}

/**
 * Mobile
 */
@media (max-width: 767px) {
  .woocommerce-pagination,
  .eilmo-pagination {
    margin-top: 35px;
  }
  .woocommerce-pagination a,
  .woocommerce-pagination span,
  .eilmo-pagination a,
  .eilmo-pagination span {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
/**
 * Footer
 */
.eilmo-footer {
  position: relative;
  background: var(--eilmo-surface);
  color: var(--eilmo-text);
  border-top: 1px solid var(--eilmo-border);
}

/**
 * Footer Inner
 */
.eilmo-footer-inner {
  padding-block: 60px;
}

/**
 * Footer Grid
 */
.eilmo-footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/**
 * Widget
 */
.eilmo-footer .widget {
  margin: 0;
}

.eilmo-footer .widget-title {
  margin: 0 0 20px;
  color: var(--eilmo-heading);
  font-size: 18px;
  font-weight: 700;
}

/**
 * Text
 */
.eilmo-footer p {
  margin: 0 0 15px;
  color: var(--eilmo-text);
  line-height: var(--eilmo-line-height);
}

/**
 * Links
 */
.eilmo-footer a {
  color: var(--eilmo-text);
  text-decoration: none;
  transition: var(--eilmo-transition);
}

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

/**
 * Menu
 */
.eilmo-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.eilmo-footer li {
  margin-bottom: 12px;
}

/**
 * Footer Bottom
 */
.eilmo-footer-bottom {
  padding-block: 22px;
  border-top: 1px solid var(--eilmo-border);
  text-align: center;
  color: var(--eilmo-muted);
  font-size: 14px;
}

/**
 * Social
 */
.eilmo-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eilmo-footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--eilmo-background);
  border: 1px solid var(--eilmo-border);
}

.eilmo-footer-social a:hover {
  background: var(--eilmo-accent);
  color: var(--eilmo-button-text);
}

/**
 * Tablet
 */
@media (max-width: 1024px) {
  .eilmo-footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}
/**
 * Mobile
 */
@media (max-width: 767px) {
  .eilmo-footer-inner {
    padding-block: 40px;
  }
  .eilmo-footer-widgets {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .eilmo-footer-bottom {
    font-size: 13px;
  }
}

/*# sourceMappingURL=main.css.map */
