/* ============================================
   MAXXECU DESIGN SYSTEM
   Modern design tokens & CSS variables
   ============================================ */
:root {
  /* ===== COLOR PALETTE ===== */
  /* Primary Brand */
  --maxx-primary: #febd12;
  --maxx-primary-dark: #d9a30f;
  --maxx-primary-light: #ffd24d;
  --maxx-primary-rgb: 254, 189, 18;
  
  /* Accent */
  --maxx-accent: #ea1c24;
  --maxx-accent-dark: #c41920;
  --maxx-accent-rgb: 234, 28, 36;
  
  /* Links */
  --maxx-link: #136fa1;
  --maxx-link-hover: #5b9dc1;
  --maxx-link-dark: #0b557d;
  
  /* Surfaces */
  --surface-0: #000000;
  --surface-1: #050505;
  --surface-2: #0a0a0a;
  --surface-3: #111111;
  --surface-4: #1a1a1a;
  --surface-5: #222222;
  --surface-6: #2a2a2a;
  --surface-7: #333333;
  --surface-8: #3a3a3a;
  
  /* Legacy background aliases */
  --maxx-bg: var(--surface-5);
  --maxx-bg-dark: var(--surface-3);
  --maxx-bg-darker: var(--surface-2);
  --maxx-bg-black: var(--surface-0);
  --maxx-gray: var(--surface-4);
  --maxx-gray-light: var(--surface-6);
  --maxx-gray-medium: var(--surface-8);
  --maxx-gray-input: #272727;
  
  /* Text */
  --maxx-text: #ffffff;
  --maxx-text-light: #cecece;
  --maxx-text-muted: #888888;
  --maxx-text-dark: #222222;
  
  /* Borders */
  --maxx-border: #2b2b2b;
  --maxx-border-light: #dedede;
  --maxx-border-gray: #4c4c4c;
  --maxx-border-dark: #191919;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  
  /* Status */
  --maxx-success: #22c55e;
  --maxx-success-dark: #16a34a;
  --maxx-danger: #ef4444;
  --maxx-danger-light: #f87171;
  --maxx-warning: #f59e0b;
  --maxx-warning-dark: #d97706;
  --maxx-info: #3b82f6;
  --maxx-info-light: #60a5fa;
  
  /* ===== GRADIENTS ===== */
  --gradient-brand: linear-gradient(135deg, var(--maxx-primary) 0%, var(--maxx-accent) 100%);
  --gradient-brand-reverse: linear-gradient(135deg, var(--maxx-accent) 0%, var(--maxx-primary) 100%);
  --gradient-brand-diagonal: linear-gradient(-18deg, var(--maxx-primary) 0%, var(--maxx-accent) 100%);
  --gradient-dark: linear-gradient(180deg, var(--surface-4) 0%, var(--surface-1) 100%);
  --gradient-surface: linear-gradient(145deg, var(--surface-4), var(--surface-2));
  --gradient-glow: radial-gradient(ellipse at 50% 50%, rgba(var(--maxx-primary-rgb), 0.15) 0%, transparent 70%);
  
  /* Legacy aliases */
  --maxx-gradient-primary: var(--gradient-brand-diagonal);
  --maxx-gradient-primary-reverse: linear-gradient(18deg, var(--maxx-primary) 0%, var(--maxx-accent) 100%);
  
  /* ===== TYPOGRAPHY ===== */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'SF Mono', Monaco, Consolas, monospace;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 3rem;
  --text-5xl: 4rem;
  --text-6xl: 5rem;
  
  --leading-tight: 0.9;
  --leading-snug: 1.1;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;
  
  --tracking-tight: -0.03em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  
  /* ===== SPACING ===== */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Legacy spacing aliases */
  --spacing-xs: var(--space-1);
  --spacing-sm: var(--space-2);
  --spacing-md: var(--space-4);
  --spacing-lg: var(--space-6);
  --spacing-xl: var(--space-8);
  
  /* ===== RADIUS ===== */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-3xl: 24px;
  --radius-full: 9999px;
  
  /* ===== SHADOWS ===== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
  --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(var(--maxx-primary-rgb), 0.3);
  --shadow-glow-lg: 0 0 60px rgba(var(--maxx-primary-rgb), 0.4);
  
  /* ===== TRANSITIONS ===== */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 700ms;
  
  /* Legacy transition aliases */
  --transition-smooth: var(--ease-smooth);
  --transition-base: var(--duration-base) ease;
  
  /* ===== Z-INDEX ===== */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  
  /* ===== LAYOUT ===== */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1400px;
  
  --header-height: 135px;
  --header-height-mobile: 98px;
  
  /* ===== BUTTON TOKENS ===== */
  --btn-padding: 1rem 2rem;
  --btn-padding-sm: 0.5rem 1rem;
  --btn-padding-lg: 1.25rem 2.5rem;
  --btn-radius: var(--radius-lg);
  --btn-radius-full: var(--radius-full);
  --btn-font-weight: 600;
  --btn-font-size: var(--text-base);
  --btn-transition: all var(--duration-base) var(--ease-smooth);
  --btn-hover-lift: translateY(-3px);
  
  --btn-gradient-primary: var(--gradient-brand);
  --btn-gradient-primary-hover: var(--gradient-brand-reverse);
  --btn-gradient-success: linear-gradient(135deg, var(--maxx-success) 0%, var(--maxx-success-dark) 100%);
  --btn-gradient-success-hover: linear-gradient(135deg, var(--maxx-success-dark) 0%, var(--maxx-success) 100%);
  --btn-gradient-warning: linear-gradient(135deg, var(--maxx-warning) 0%, var(--maxx-warning-dark) 100%);
  --btn-gradient-warning-hover: linear-gradient(135deg, var(--maxx-warning-dark) 0%, var(--maxx-warning) 100%);
  --btn-gradient-link: linear-gradient(135deg, var(--maxx-link) 0%, var(--maxx-link-dark) 100%);
  --btn-gradient-link-hover: linear-gradient(135deg, var(--maxx-link-dark) 0%, var(--maxx-link) 100%);
  
  --btn-shadow-primary: 0 15px 30px rgba(var(--maxx-primary-rgb), 0.3);
  --btn-shadow-primary-hover: 0 20px 40px rgba(var(--maxx-primary-rgb), 0.4);
  --btn-shadow-success: 0 15px 30px rgba(34, 197, 94, 0.3);
  --btn-shadow-success-hover: 0 20px 40px rgba(34, 197, 94, 0.4);
  --btn-shadow-warning: 0 15px 30px rgba(245, 158, 11, 0.3);
  --btn-shadow-warning-hover: 0 20px 40px rgba(245, 158, 11, 0.4);
  --btn-shadow-link: 0 4px 12px rgba(19, 111, 161, 0.3);
  
  /* ===== CARD TOKENS ===== */
  --card-bg: var(--gradient-surface);
  --card-border: var(--border-subtle);
  --card-radius: var(--radius-2xl);
  --card-padding: var(--space-6);
  --card-shadow: var(--shadow-lg);
  --card-hover-lift: translateY(-5px);
  --card-hover-border: var(--border-medium);
  --card-hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   BASE STYLES
   ============================================ */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 100!important;
}
a {
  color: var(--maxx-link);
  text-decoration: none;
}
a:hover {
  color: var(--maxx-link-hover);
  text-decoration: none;
}
.admin .input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.admin .input-group > .form-control,
.admin .input-group > .form-control-plaintext,
.admin .input-group > .custom-select,
.admin .input-group > .custom-file {
  position: relative;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
}
.admin .input-group .btn {
  border-radius: 3px;
  font-weight: 400;
  line-height: 1;
  color: var(--maxx-text);
  background-color: var(--maxx-gray-light);
  border-color: var(--maxx-gray-light);
}
.admin .input-group > .form-control + .form-control,
.admin .input-group > .form-control + .custom-select,
.admin .input-group > .form-control + .custom-file,
.admin .input-group > .form-control-plaintext + .form-control,
.admin .input-group > .form-control-plaintext + .custom-select,
.admin .input-group > .form-control-plaintext + .custom-file,
.admin .input-group > .custom-select + .form-control,
.admin .input-group > .custom-select + .custom-select,
.admin .input-group > .custom-select + .custom-file,
.admin .input-group > .custom-file + .form-control,
.admin .input-group > .custom-file + .custom-select,
.admin .input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.admin .input-group > .form-control:focus,
.admin .input-group > .custom-select:focus,
.admin .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.admin .input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.admin .input-group > .form-control:not(:last-child),
.admin .input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.admin .input-group > .form-control:not(:first-child),
.admin .input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.admin .input-group > .custom-file {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.admin .input-group > .custom-file:not(:last-child) .custom-file-label,
.admin .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.admin .input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.admin .input-group-prepend,
.admin .input-group-append {
  display: -ms-flexbox;
  display: flex;
}

.admin .input-group-prepend .btn,
.admin .input-group-append .btn {
  position: relative;
  z-index: 2;
}

.admin .input-group-prepend .btn:focus,
.admin .input-group-append .btn:focus {
  z-index: 3;
}

.admin .input-group-prepend .btn + .btn,
.admin .input-group-prepend .btn + .input-group-text,
.admin .input-group-prepend .input-group-text + .input-group-text,
.admin .input-group-prepend .input-group-text + .btn,
.admin .input-group-append .btn + .btn,
.admin .input-group-append .btn + .input-group-text,
.admin .input-group-append .input-group-text + .input-group-text,
.admin .input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.admin .input-group-prepend {
  margin-right: -1px;
}

.admin .input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.content-left
{
    display: flex;
    align-items: left;
	justify-content: left;
}
.content-right
{
    display: flex;
    align-items: right;
	justify-content: right;
}
#blog-posts-container p {
    margin-bottom: 0;
}
#blog-posts-container .btn {
    margin-top: 5px;
    border-radius: 15px;
    padding: .25rem .8rem;
}
.page-product_pdm20 {
  background-image: url(/../../img/bg-maxxecu_sport.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: white;
  height: 250px;
}
.page-plugin-gm_e38ecm:before {
background-image:url(../../img/bg-corvette_c6.jpg);
-webkit-background-size:cover;
background-size:cover;
background-repeat:no-repeat;
background-position:50% 42%;
color:#fff;height:200px}

.page-plugin-ford_focus_2010:before {
background-image:url(../../img/bg-ford_forcus_rs_2010.jpg);
-webkit-background-size:cover;
background-size:cover;
background-repeat:no-repeat;
background-position:50% 50%;
color:#fff;height:200px}

.page-plugin-bmw_m54:before {
background-image:url(../../img/bg-bmw_m54.jpg);
-webkit-background-size:cover;
background-size:cover;
background-repeat:no-repeat;
background-position:50% 50%;
color:#fff;height:200px}

.video-thumbnail-container {
	display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.video-title {

}
.video-thumbnail-container i {
	position: absolute;
	color: #1a1b1a;
	transition: all 0.3s;
}
.video-thumbnail-container:hover i {
	color: #eb3323;
}
.modal .modal-footer {
	width: 100%;
	display: flex;
justify-content: flex-end;
align-items: center;
}
.modal .modal-footer button, .modal .modal-footer a {
	transition: all 0.3s;
}
.modal .modal-footer .social-video-modal a {
color: #136fa1;
}
.modal .modal-footer .social-video-modal a:hover {
	color: #0b5177;
}
.modal.fade .modal-dialog {
	box-shadow: 0 0 15px 0 rgba(11, 11, 11, 0.45);
}
.filler {
	background: white;
width: 25px;
height: 25px;
position: absolute;
}
@media (max-width: 768px) {
.video-column:not(:last-child) {
	margin-bottom: 10px;
}
}





.table th,
.table td,
.table tbody + tbody {
  border-color: var(--maxx-border);
}

.thead-default th {
  background-color: transparent;
}


.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.table thead th,
.table-bordered th,
.table-bordered td {
  border-color: var(--maxx-border);
}
.table-dark {
  --bs-table-bg: transparent;
  color: var(--maxx-text-light);
}
.table-dark.table>:not(:last-child)>:last-child>* {
  border-color: var(--maxx-border-gray);
}

.card {
  background: var(--maxx-bg);
  color: var(--maxx-text-light);
  border: none;
}

.card-deck .card {
  margin-bottom: 15px;
  background: var(--maxx-bg);
  color: var(--maxx-text-light);
  border: none;
}

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
  }
  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;

  }
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-top,
  .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-top,
  .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-bottom,
  .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-top,
  .card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-bottom,
  .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}



/* Testimonials */
.hero.testimonials, .hero.testimonials-details {
  height: 70vh;
  display: flex;
  align-items: center;
  color: white;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.31);
  position: relative;
}
.hero.testimonials-details {
  height: 70vh;
  text-align: center;
}
.hero.testimonials .btn {
  background: var(--maxx-gray-medium);
  border-radius: var(--btn-radius-full);
  font-size: var(--btn-font-size);
  color: var(--maxx-text);
  letter-spacing: -0.03em;
  padding: var(--btn-padding);
  font-weight: var(--btn-font-weight);
  transition: var(--btn-transition);
  border: none;
}
.hero.testimonials .btn:hover {
  background: var(--btn-gradient-primary);
  color: var(--maxx-bg-black);
  transform: var(--btn-hover-lift);
}
.hero.testimonials .col-md-6 {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .hero.testimonials .container .row {
    display: flex;
    align-items: center!important;
  }
  .hero.testimonials .col-md-6 {
    margin-bottom: 0;
  }
}
.hero.testimonials:before, .hero.testimonials-details:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: .75;
  background-image: var(--maxx-gradient-primary-reverse);
}
.hero.testimonials .carousel-indicators, .hero.testimonials-details .carousel-indicators {
  position: relative;
  top: 10px;
}
.testimonial-stories h2, .testimonial-stories h5 {
  text-align: center;
}
.testimonial-stories .card-footer a {
  font-weight: 700;
}


.hero > .container-fluid {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero > .container-fluid > .trans-border {
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.checkbox_green{color: var(--maxx-success-dark); text-align: center;}
.checkbox_red{color: var(--maxx-danger); text-align: center;}




.hero2 {
	    padding: 4rem 0;
	    background-image: var(--maxx-gradient-primary);
	    color: var(--maxx-text);
	    position: relative;
	    justify-content: center;
			align-items: center;
			display: flex;
		}
		.hero2:before {
		    content: '';
		    background: url(img/bg-hero.jpg);
		    background-size: cover;
		    background-position: center center;
		    width: 100%;
		    height: 100%;
		    position: absolute;
		    top: 0;
		    left: 0;
		    display: block;
		    opacity: 0.15;
		}
		.btn-outline {
			border: 2px solid rgba(255, 255, 255, 0.3);
			background: transparent;
			color: var(--maxx-text);
			cursor: pointer;
			transition: var(--btn-transition);
			border-radius: var(--btn-radius);
			padding: var(--btn-padding);
			font-weight: var(--btn-font-weight);
		}
		.btn-outline:hover {
			background: rgba(255,255,255,0.1);
			border-color: var(--maxx-text);
			transform: var(--btn-hover-lift);
		}

.hero2 > .container,
.hero > .container,
.content-start > .container-fluid {
  z-index: 20;
}


.card-group {
	display: flex;
	flex-wrap: wrap-reverse;
}
.card-group .card {
		flex: 1 1 50%;
		padding-left: 0;
		padding-right: 0;
	}
@media (min-width: 992px) {
	.card-group .card {
		flex: 1 1 33.333333%;
	}
}
/*
.col:not(:first-child) {
  flex: 1!important;
}

.col:nth-child(1) {
  width: 100%!important;
}
*/
.video-thumbnail-container {
	display: flex;
	justify-content: center;
	align-items: center;
}
.video-title {
	margin-top: 7px;
}
.video-thumbnail-container svg {
	position: absolute;
	color: var(--maxx-gray);
	transition: all var(--transition-base);
}
.video-thumbnail-container:hover svg {
	color: var(--maxx-accent);
}
.modal .modal-footer {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.modal .modal-footer button, .modal .modal-footer a {
	transition: all 0.3s;
}
.modal .modal-footer .social-video-modal a {
	color: var(--maxx-link);
}
.modal .modal-footer .social-video-modal a:hover {
	color: var(--maxx-link-dark);
}
.modal.fade .modal-dialog {
	box-shadow: 0 0 15px 0 rgba(11, 11, 11, 0.45);
}
.filler {
	background: white;
	width: 25px;
	height: 25px;
	position: absolute;
}
@media (max-width: 768px) {
	.video-column:not(:last-child) {
		margin-bottom: 10px;
	}
}


#map {
  width: 100%;
  height: 70vh;
  position: relative;
}
.mapboxgl-popup {
    max-width: 300px;
    font: 14px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
.marker {
	background-image: url('/img/icons/mapbox-icon.png');
	background-size: cover;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
}

.marker-distributor {
	background-image: url('/img/icons/mapbox-icon-distributor.png');
	background-size: cover;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
}

.marker-asshole {
  background-image: url('/img/icons/mapbox-icon-asshole.png');
  background-size: cover;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  animation: orb 1.8s infinite;
}
/* animates orb glow */
@keyframes orb {
  0%,100% {
    box-shadow: 0 0 2px 1px #e44545;
  }
  50% {
    box-shadow: 0 0 10px 3px #e44545;
  }
}
.mapboxgl-popup {
  max-width: 300px;
}

.mapboxgl-popup-content {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}
.awselect .back_face {
    overflow-y: scroll;
}
.awselect .placeholder {
	font-weight: 700;
}
.awselect .back_face ul li {
	padding: 5px 0;
}



.hero {
background-image: -moz-linear-gradient(-18deg, #febd11 0%, #ea1c24 100%);
background-image: -webkit-linear-gradient(-18deg, #febd11 0%, #ea1c24 100%);
background-image: -ms-linear-gradient(-18deg, #febd11 0%, #ea1c24 100%);
background-image: linear-gradient(-18deg, #febd11 0%, #ea1c24 100%);
color: #fff;
position: relative;
justify-content: center;
align-items: center;
display: flex;
}
.hero:before {
content: '';
background: url(img/bg-hero.jpg);
background-size: cover;
background-position: center center;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
display: block;
opacity: 0.15;
}
.help-section h3>svg.svg-inline--fa, .help-section h3>i {
margin-right: 0.8rem;
}
.help-section .fa-ul {
/*margin-left: 4.9rem;*/
margin-bottom: 0;
}

.download .fa-ul {
margin-left: 1.6rem;
margin-bottom: 0;
}

.download .sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.help-section .fa-ul>li, .list-unstyled>li {
line-height: 1.8rem;
}

.sidebar li>svg, .sidebar li a svg, .sidebar li>i, .sidebar li a i {
margin-right: 0.4rem;
}
.sidebar .alert-danger a {
  color: #a94442;
}
.sidebar .alert-danger a:hover {
  color: #882d2b;
}
.help-main {
border-right: 1px solid var(--maxx-border);
}
.page-header, .help-row {
border-bottom: 1px solid var(--maxx-border);
}
.help-row ul {
margin-bottom: 0;
}
.help-row a:hover {
  text-decoration: none;
}
.more-support {
  background: var(--maxx-bg);
  color: var(--maxx-text-light);
  border-radius: var(--radius-md);
}
.sidebar .tag.tag-danger {
  background: rgba(217, 83, 79, 1);
  box-shadow: 0 0 0 0 rgba(217, 83, 79, 1);
  animation: pulse-red 2s infinite;
  font-size: 70%;
}
.sidebar .help-row .alert-danger h5 {
  display: flex;
  align-items: center;
}
.sidebar .help-row .alert-danger h5 .tag {
  margin-right: 5px;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(217, 83, 79, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(217, 83, 79, 0);
  }
}
/* Override variables */
/* Generic */
body {
  font-family: "Open Sans";
  background-color: var(--maxx-border-dark)!important;
  color: var(--maxx-text-light);

}

button {
  letter-spacing: -.03em;
}

a {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
}

a.btn-outline-secondary {
  color: var(--maxx-link) !important;
  border-radius: 15px;
}

a.btn-outline-secondary:hover {
  color: white !important;
}

.dropdown.open a:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.status {
  display: block;
  font-weight: 600;
}

.product-buy .input-group {
  width: 100%;
  font-weight: 700;
}

.product-buy .input-group input {
  line-height: 1.6;
}

.product-buy .input-group .input-group-addon {
  font-weight: 700;
  font-size: 80%;
}

.product-buy .input-group-btn {
  margin-top: 0;
  width: 38px;
}

.product-buy .input-group-btn .btn {
  margin-top: 0;
  line-height: 1.6;
  outline: none;
  padding: .5rem .75rem;
  width: 40px;
  border-radius: 0;
}

.product-buy .input-group-btn .btn:hover {
  background-color: var(--maxx-link);
  color: var(--maxx-text);
}

.product-buy .input-group-btn .btn.btn-plus {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.full-spec .tab-content {
  background: var(--maxx-bg);
  color: var(--maxx-text-light);
  border-color: transparent;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  display: flex;
}

.full-spec .tab-pane {
  width: 100%;
}

.full-spec .tab-pane .table td {
  border-top: none;
}

.full-spec ul.nav-tabs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  border: none;
}

.full-spec .nav-link {
  font-weight: 700;
}

.full-spec .nav-link:not(.active) { 
  background: var(--maxx-gray-medium);
  color: var(--maxx-text-light);
  border-color: transparent;
}

.full-spec .nav-tabs .nav-link:focus,
.full-spec .nav-tabs .nav-link:hover {
  border-color: transparent;
  background-color: #7e7e7e;
}

.full-spec .nav-tabs .nav-link.active,
.full-spec .nav-tabs .nav-link.active:focus,
.full-spec .nav-tabs .nav-link.active:hover,
.full-spec .nav-tabs .nav-item.open .nav-link,
.full-spec .nav-tabs .nav-item.open .nav-link:focus,
.full-spec .nav-tabs .nav-item.open .nav-link:hover {
  background: var(--maxx-bg);
  color: var(--maxx-text-light);
  border-color: transparent;
}

@media (min-width: 768px) {
  .btn-block + .btn-block {
    margin-top: 15px!important;
  }
}
.content-page .table-responsive .table, .content-box {
  background: var(--maxx-bg);
  color: var(--maxx-text-light);
  border-radius: var(--radius-sm);
  padding: 15px;
  
}
.download .content-box {
  display: flex;
  flex-direction: column;
}
.download .help-row {
  font-size: 0.95rem;
}
.download h4 {
  margin-bottom: 1rem;
}
.download .help-row .list-unstyled>li {
  line-height: 1.2;
  margin-bottom: .5rem;
}
.download .page-header .first {
  border-right: 1px solid #d0e9c6;
  text-align: center;
}
.alert-clean {
  background-color: var(--maxx-bg);
  border: none;
  color: var(--maxx-text-light);
  box-shadow: var(--shadow-xl);
}

/* Header */
header {
  background: var(--maxx-bg-dark);
  display: inline-block;
  vertical-align: top;
  width: 100%;
  transition: all 0.35s linear;
  -moz-transition: all 0.35s linear;
  -webkit-transition: all 0.35s linear;
  position: fixed;
  z-index: 400;
  /* Menu */
}

header.default {
    top: 0;
}

header.fixed {
  position: fixed;
  top: 0;
  /*top: -51px;*/
}
header + section {
  margin-top: 83px;
}
header .admin-alert {
  color: var(--maxx-text);
  background-color: var(--maxx-danger);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 700;
}
header .admin-alert + .container {
    margin-top: 48px;
  }
@media (min-width: 992px) {
  header .admin-alert + .container {
    margin-top: 32px;
  }
}
@media (min-width: 992px) {
  header.fixed {
    top: -70px;
  }
  header + section {
    margin-top: 135px;
  }
}
header.adminstate + section {
  margin-top: 170px;
}
@media (min-width: 992px) {
  header.adminstate + section, header.adminstate + form {
    margin-top: 172px;
  }
}
header .admin-alert a {
  color: white;
  text-decoration: underline;
}
header a {
  color: var(--maxx-primary);
}
header a:hover {
  color: var(--maxx-primary-dark);
  text-decoration: none;
}


header .logo > a {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  /* padding: 50px 20px 50px 20px; */
}

header .logo > a svg {
  display: block;
  max-width: 100%;
  height: auto;
  will-change: transform;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  -o-transition: -o-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease, -o-transform 200ms ease;
  width: 80px;
}

@media (min-width: 768px) {
  header .logo > a svg {
    max-width: 100%;
    width: 80px;
  }
}

@media (min-width: 992px) {
  header .logo > a svg {
    width: 170px;
  }
}

header .top-bar {
  width: 100%;
  height: 35px;
  background: transparent;
  position: relative;
}

@media (min-width: 992px) {
  header .top-bar {
    height: 65px;
    border: none;
  }
}

header .top-section {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: flex-end;
          justify-content: flex-end;
  color: white;
}
.language-se a {
  margin-right: 11px;
}
.language-se:after {
  content: "|";
  position: absolute;
  top: -1px;
  height: auto;
  display: inline-block;
  overflow: initial;
  visibility: visible;
  font-weight: 400;
  color: #cbcbcb!important;
  right: 21px;
}
header .top-section.contact {
  width: 25%;
}

header .top-section.contact address {
  display: block;
  margin-bottom: 0;
  font-size: 12px;
}

header .top-section.contact address:first-child {
  font-weight: 700;
}

@media (min-width: 768px) {
  header .top-section.contact address {
    font-size: 17px;
  }
}

header .top-section.contact.hidden-lg-up {
  width: 50%;
}
/*
header .top-section.social {
  width: 35%;
  padding-right: 40px;
}
*/
header .top-section.social ul {
  margin-bottom: 0;
}

header .top-section.separation {
  width: 20%;
  border-right: none;
}

@media (min-width: 544px) {
  header .top-section.separation {
    width: 25%;
  }
}

@media (min-width: 768px) {
  header .top-section.separation {
    width: 23%;
  }
}

header .top-section.language {
  width: 40%;
  position: absolute;
  right: 40%;
}

header .top-section.language ul {
  margin-bottom: 0;
}

header .top-section.language ul li {
  line-height: 1;
}

header .top-section.language ul li:not(:last-child) {
  margin-right: 10px;
}

header .top-section.language ul svg, header .top-section.language ul i {
  width: 30px;
  height: auto;
  border-radius: 2px;
}

@media (min-width: 544px) {
  header .top-section.language {
    width: 25%;
    right: 40%;
  }
}

@media (min-width: 768px) {
  header .top-section.language {
    width: 20%;
    right: 30%;
  }
  header .top-section.language ul li:not(:last-child) {
    margin-right: 5px;
  }
}

@media (min-width: 992px) {
  header .top-section.language {
    width: auto;
    position: relative;
    right: auto;
  }
}

header .top-section.login {
  width: 20%;
  position: absolute;
  right: 20%;
  font-size: 90%;
}

@media (min-width: 768px) {
  header .top-section.login {
    width: 15%;
    right: 15%;
  }
}

@media (min-width: 992px) {
  header .top-section.login {
    width: 9%;
    position: relative;
    right: auto;
  }
}

header .top-section.cart {
  width: 20%;
  position: absolute;
  right: 0;
  font-size: 90%;
}

header .top-section.cart a {
  position: absolute;
  top: 50%;
  margin-top: -14px;
  left: 50%;
  margin-left: -20px;
}

header .top-section.cart .cart-number {
  position: absolute;
  right: -3px;
  top: -14px;
  color: white;
}

@media (min-width: 544px) {
  header .top-section.cart .cart-number {
    right: -7px;
    top: -15px;
  }
}

@media (min-width: 768px) {
  header .top-section.cart {
    width: 15%;
  }
}

@media (min-width: 992px) {
  header .top-section.cart {
    width: 9%;
    position: relative;
    right: auto;
  }
}

header .main-menu {
  background: transparent;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  header .main-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    justify-content: space-between;
    z-index: 900;
  }
}
header .main-menu .navbar {
  padding: 0;
  margin-top: 10px;
}
header .main-menu .account-menu {
  justify-content: flex-end;
}
@media (min-width: 992px)  {
  header .main-menu .account-menu {
    justify-content: space-between;
  }
}
header .main-menu .account-menu .badge {
  padding: .15rem .35rem;
  background-color: #4a4a4a;
}
header .main-menu .account-menu ul {
  flex-direction: row;
}



header .main-menu nav {
  padding-left: 30px;
  padding-right: 30px;
}

/* header .main-menu ul {
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: distribute;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
*/
header .main-menu ul li {
  font-weight: 200;
  letter-spacing: -.03em;
  font-size: .85rem
}

header .main-menu ul li a {
  color: var(--maxx-text-light)!important;
}
header .main-menu ul li a.active {
  color: var(--maxx-text)!important;
}
header .main-menu ul li a:hover {
  color: var(--maxx-text)!important;
}

@media (min-width: 992px) {
  header .main-menu ul ul {
    margin: 0;
  }
}
header .main-menu ul.navbar-nav {
  padding-top: 50px;
}
@media (min-width: 992px) {
  header .main-menu {
    height: 70px;
  }
  header .main-menu ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
            justify-content: space-around;
  }
  header .main-menu .navbar-container {
    display: flex!important;
    justify-content: flex-start;
  }
  header .main-menu ul.navbar-nav {
    padding-top: 0;
  }
}

header .main-menu ul.flags {
  position: relative;
}

header .main-menu .dropdown-menu {
  border: none;
  border-top: 1px solid var(--maxx-primary);
  background-color: var(--maxx-bg-black);
  padding: 0;
  margin: 8px 0 0;
  border-radius: 0;
}

header .main-menu .dropdown-menu .dropdown-item {
  font-weight: 200;
  padding: 8px 15px;
  letter-spacing: 0;
  font-size: .8rem;
}
header .main-menu .dropdown-menu .dropdown-item:hover {
  background-color: var(--maxx-bg);
}

@media (max-width: 991px) {
  header .main-menu ul li a {
    line-height: 2.2em;
    font-size: 1.1em;
  }
}

header .navbar-toggler {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 2.5em;
  color: var(--maxx-primary);
  outline: none;
  border: 1px solid transparent;
  z-index: 200;
}
header .navbar-toggler-icon {
  width: 1em;
  height: 1em;
}
.dropdown .dropdown-backdrop {
  display: none;
}
header .navbar-toggler:not(.collapsed) {
  color: var(--maxx-primary-dark);
}

/* Headroom */
header.headroom--not-top {
  position: relative;
  top: 0;
  z-index: 400;
}

header.headroom--not-top .logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--maxx-bg-dark);
  z-index: 700;
  box-shadow: var(--shadow-md);
  padding: 0;
}

@media (min-width: 992px) {
  header.headroom--not-top .logo {
    height: 70px;
  }
}

header.headroom--not-top .logo a {
  padding: 0;
}

header.headroom--not-top .logo svg {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
       -o-transform: scale(0.8);
          transform: scale(0.8);
  width: 140px;
  top: 10px;
  position: absolute;
}

@media (min-width: 992px) {
  header.headroom--not-top .logo {
    width: 16.666%;
    padding: 10px;
  }
}

header.headroom--not-top .navbar-toggler {
  top: 50px;
  left: 5px;
  position: fixed;
  z-index: 900;
}

header.headroom--not-top .main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: var(--shadow-md);
  top: 49px;
  background: var(--maxx-bg-dark);
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  header.headroom--not-top .main-menu {
    width: 83.344%;
    top: 0;
    left: 16.666%;
    background: var(--maxx-bg-dark);
  }
}

@media (min-width: 992px) {
  header.headroom--not-top .account-menu {
    margin-right: 2rem;
  }
}

header.headroom--not-top .cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 60px;
  display: block;
  z-index: 900;
  background: #111;
  width: 9%;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

header.headroom--not-top .cart .cart-number {
  right: -6px;
  top: -13px;
  font-size: 1em;
}

.hero-content {
  background: var(--maxx-bg);
  padding: 30px 0;
  color: var(--maxx-text);
}

.hero-content span {
  display: block;
  font-size: 70%;
}

@media (min-width: 544px) {
  .hero-content span {
    font-size: 80%;
  }
}
header .admin-menu {
  position: fixed;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background: var(--maxx-bg);
  height: 37px;
  align-items: center;
  top: 0;
}

header .admin-menu + .container {
  margin-top: 37px;
}
header .admin-menu .navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 90%;
}
header.headroom--not-top .admin-menu {
  position: fixed;
  top: 70px;
  left: 0;
}
/* Maxxecu */
.maxxecu .product-light {
  background: var(--maxx-text);
  border: 1px solid var(--maxx-border-light);
  margin-bottom: 15px;
}

.maxxecu .product-light .img-product {
  max-width: 70%;
}

.maxxecu .product-light .product-price {
  font-weight: 700;
}

.maxxecu .product-light .product-price money {
  font-size: 1.6em;
}

@media (min-width: 992px) {
  .maxxecu .product-light {
    margin-bottom: 0;
  }
  .maxxecu .product-light .product-price money {
    font-size: 1.9em;
  }
}

/* Maxxecu can */
.maxxecu-can {
  background: white;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

.maxxecu-can .flickity-slider > [class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.maxxecu-can .carousel-cell:nth-child(odd) .maxxecu-can-container {
  background: #7b7b7b;
  color: white;
}

.maxxecu-can .carousel-cell:nth-child(odd) .maxxecu-can-container a {
  color: white !important;
}

.maxxecu-can .carousel-cell:nth-child(odd) .maxxecu-can-container .btn-buy {
  border-color: white;
}

.maxxecu-can .carousel-cell:nth-child(odd) .maxxecu-can-container .btn-buy:hover {
  background: white;
  color: #136fa1 !important;
}

.maxxecu-can .carousel-cell:nth-child(even) .maxxecu-can-container {
  background: #f4f4f4;
  color: #222;
}

.maxxecu-can .maxxecu-can-container .maxxecu-can-hero {
  width: 100%;
  height: 140px;
}

.maxxecu-can .maxxecu-can-container .maxxecu-can-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.maxxecu-can .maxxecu-can-container .maxxecu-can-content p, .maxxecu-can .maxxecu-can-container .maxxecu-can-content .spec {
  font-size: 1em;
  line-height: 1.3;
}

.maxxecu-can .maxxecu-can-container .maxxecu-can-content .btn-buy {
  padding: .8em 1em;
  width: 100%;
  display: inline-block;
  margin-top: 10px;
  position: relative;
  font-size: 1.1em;
}

.maxxecu-can .maxxecu-can-container .maxxecu-can-content .btn-buy i {
  font-size: 29px;
  left: 6px;
  position: absolute;
  top: 4px;
}

@media (min-width: 544px) {
  .maxxecu-can .maxxecu-can-container .maxxecu-can-hero {
    height: 170px;
  }
  .maxxecu-can .maxxecu-can-container .maxxecu-can-content p, .maxxecu-can .maxxecu-can-container .maxxecu-can-content .spec {
    font-size: 0.9em;
    line-height: 1.4;
  }
  .maxxecu-can .maxxecu-can-container .maxxecu-can-content .btn-buy {
    padding: .7em 1.5em;
    width: auto;
    position: relative;
    padding-left: 37px;
  }
  .maxxecu-can .maxxecu-can-container .maxxecu-can-content .btn-buy i {
    font-size: 27px;
    left: 6px;
    position: absolute;
    top: 4px;
  }
}

@media (min-width: 768px) {
  .maxxecu-can .maxxecu-can-container .maxxecu-can-content .btn-buy {
    padding: .55em 1.5em;
    width: auto;
    position: relative;
    padding-left: 38px;
  }
  .maxxecu-can .maxxecu-can-container .maxxecu-can-content .btn-buy i {
    font-size: 26px;
    left: 6px;
    position: absolute;
    top: 4px;
  }
}

@media (min-width: 992px) {
  .maxxecu-can .maxxecu-can-container .maxxecu-can-hero {
    height: 200px;
  }
  .maxxecu-can .maxxecu-can-container .maxxecu-can-content .btn-buy {
    padding: .45em 1.7em;
    width: auto;
    position: relative;
    padding-left: 40px;
  }
  .maxxecu-can .maxxecu-can-container .maxxecu-can-content .btn-buy i {
    font-size: 28px;
    left: 6px;
    position: absolute;
    top: 4px;
  }
}


.product-hero {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background: url(../../img/bg-hero.jpg);
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.product-hero:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(11, 11, 11, 0.5);
}

.product-hero .breadcrumbs {
  margin-bottom: 0;
}

.product-hero .breadcrumbs li {
  color: white;
}

.product-hero .breadcrumbs li a {
  color: white;
}

.product-hero .breadcrumbs li a.active {
  color: var(--maxx-primary);
}
/* Product page 
.product-single {
  /* arrow color */
  /* position outside 
}

.product-single .product-category-menu {
  background: var(--maxx-text);
  border: 1px solid var(--maxx-border-light);
}

.product-single .product-category-menu .nav-item > a {
  font-weight: 600;
  padding: 2px 0;
  display: block;
  width: 100%;
  color: var(--maxx-text-dark);
  background-color: transparent;
}

.product-single .product-category-menu .nav-item > a:hover {
  color: var(--maxx-link);
}

.product-single .product-category-menu .dropdown-menu {
  position: relative;
  width: 100%;
  border: none;
  margin: 0;
  padding: 2px 0;
  margin-bottom: 5px;
  min-width: auto;
}

.product-single .product-category-menu .dropdown-menu .dropdown-item {
  padding: 1px 5px;
  white-space: normal;
  font-size: 85%;
  line-height: 1.3;
  padding: 4px;
}

.product-single .product-carousel {
  height: 360px;
}

.product-single .product-carousel .carousel-cell img {
  height: 360px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.product-single .product-carousel-nav {
  margin-top: 10px;
}

.product-single .product-carousel-nav .carousel-cell {
  height: 80px;
  width: 100px;
  margin-right: 5px;
}

.product-single .product-carousel-nav .carousel-cell.is-nav-selected img {
  border-color: var(--maxx-link);
}

.product-single .product-carousel-nav .carousel-cell img {
  height: inherit;
  width: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid transparent;
}

.product-single .product-social {
  border-top: 1px solid var(--maxx-border);
  border-bottom: 1px solid var(--maxx-border);
}

.product-single .product-social ul {
  margin-bottom: 0;
}

.product-single .product-social ul li a {
  color: var(--maxx-text-muted);
  font-size: 1.2em;
  line-height: 1;
}

.product-single .product-social ul li a:hover {
  color: var(--maxx-link);
}

.product-single .product-buy .input-group {
  width: 75%;
}

.product-single .fullspec-toggle {
  font-weight: 600;
  font-size: .9rem;
}

.product-single .fullspec-toggle:hover {
  text-decoration: none;
}

.product-single .products-related {
  background: var(--maxx-text);
  border: 1px solid var(--maxx-border-light);
}

.product-single .products-related img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 992px) {
  .product-single .products-related img {
    width: 70px;
    height: 70px;
  }
}

@media (min-width: 1200px) {
  .product-single .products-related img {
    width: 90px;
    height: 90px;
  }
}

.product-single .products-related h5 {
  font-size: 95%;
}

.product-single .products-related h6 {
  font-size: 70%;
  line-height: 1.4;
}

.product-single .products-related h6 a {
  color: var(--maxx-text-dark);
}

.product-single .products-related h6 a:hover {
  text-decoration: none;
  color: var(--maxx-link);
}

.product-single .products-related .btn-buy {
  padding: .20em .7em .20em 25px;
}

.product-single .products-related .btn-buy i {
  font-size: 21px;
  top: 1px;
  left: 3px;
}

.product-single .products-related ul {
  margin-bottom: 0;
}

.product-single .products-related ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--maxx-border-light);
}

.product-single .products-related ul li:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.product-single .product-includes .panel-collapse {
  padding: 1rem 0.43rem !important;
}

.product-single .pruduct-includes-list li:not(:last-child) {
  margin-bottom: 10px;
}

.product-single .pruduct-includes-list li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-single .pruduct-includes-list li h6 {
  font-size: 75%;
  line-height: 1.4;
}

.product-single .pruduct-includes-list li h6 a {
  color: var(--maxx-text-dark);
}

.product-single .pruduct-includes-list li h6 a:hover {
  text-decoration: none;
  color: var(--maxx-link);
}

.product-single .pruduct-includes-list li .header {
  padding-left: 0;
}

.product-single .product-fullspec, .product-single .product-includes {
  background: var(--maxx-text);
  border: 1px solid var(--maxx-border-light);
}

.product-single .product-fullspec .panel-title, .product-single .product-includes .panel-title {
  margin-bottom: 0;
}

.product-single .product-fullspec .panel-title a, .product-single .product-includes .panel-title a {
  display: block;
  margin-bottom: 0;
}

.product-single .product-fullspec .panel-title a:hover, .product-single .product-fullspec .panel-title a:focus, .product-single .product-includes .panel-title a:hover, .product-single .product-includes .panel-title a:focus {
  background: var(--maxx-link);
  color: var(--maxx-text);
}

.product-single .product-fullspec .panel-title .fullspec-toggle:hover, .product-single .product-fullspec .panel-title .fullspec-toggle:active, .product-single .product-fullspec .panel-title .fullspec-toggle:focus, .product-single .product-fullspec .panel-title .fullspec-toggle:visited, .product-single .product-includes .panel-title .fullspec-toggle:hover, .product-single .product-includes .panel-title .fullspec-toggle:active, .product-single .product-includes .panel-title .fullspec-toggle:focus, .product-single .product-includes .panel-title .fullspec-toggle:visited {
  text-decoration: none;
}

.product-single .product-fullspec .panel-title .fullspec-toggle:after, .product-single .product-includes .panel-title .fullspec-toggle:after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-left: .3em solid transparent;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.product-single .product-fullspec .panel-title .fullspec-toggle.collapsed:after, .product-single .product-includes .panel-title .fullspec-toggle.collapsed:after {
  -webkit-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
}

.product-single .product-fullspec ul, .product-single .product-includes ul {
  padding-left: 18px;
}

.product-single .flickity-prev-next-button {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: transparent;
  top: auto;
  bottom: -82px;
  z-index: 300;
  position: absolute;
  border: none;
}

.product-single .flickity-prev-next-button .arrow {
  fill: #dedede;
}

.product-single .flickity-prev-next-button.no-svg {
  color: white;
}

.product-single .flickity-prev-next-button.previous {
  left: 0;
}

.product-single .flickity-prev-next-button.next {
  right: 0;
}

.product-single h1 {
  font-size: 1.7rem;
}

.product-single h1 span {
  font-size: 80%;
}

.product-single money {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  color: #136fa1;
}

.product-single .productno {
  display: block;
  font-weight: 600;
}

.product-single .productno .sku {
  color: #136fa1;
}

.product-single .productfact {
  padding-left: 18px;
}

.product-single .product-info {
  font-weight: 600;
  line-height: 1.4;
  font-size: .9rem;
}

.product-single .product-family-info {
  background: #888888;
  color: white;
}

.product-single .product-family-info ul {
  margin-bottom: 0;
}

.product-single .product-family-info p {
  margin-bottom: 0;
  font-size: 90%;
}

.product-single .product-family-info i {
  font-size: 1.5rem;
  top: -5px;
}
*/
.build-more .img-container {
  position: relative;
}

.build-more .img-container .overlay {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.build-more .img-container .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}

/* Content page */
.content-hero {
  height: 150px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background: url(../../img/bg-content.jpg);
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: white;
}

.content-hero:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(11, 11, 11, 0.5);
}

.content-page .products-list ul li {
  background: var(--maxx-bg);
  border-radius: var(--radius-md);
  border: none;
  color: var(--maxx-text-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.products-list a {
  text-decoration: none;
}

.content-page .products-list ul li .price {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  color: var(--maxx-link);
}

.content-page .products-list ul li .btn-buy {
  margin-top: 10px;
}

.content-page .products-list ul li:hover {
  background: var(--maxx-border);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .content-page .content-list-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* Footer */
.footer .maxxecu-footer-images {
  height: 65px;
  overflow: hidden;
}

.footer .maxxecu-footer-images > [class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.footer .maxxecu-footer-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

@media (min-width: 544px) {
  .footer .maxxecu-footer-images {
    height: 83px;
  }
}

@media (min-width: 768px) {
  .footer .maxxecu-footer-images {
    height: 116px;
  }
}

@media (min-width: 992px) {
  .footer .maxxecu-footer-images {
    height: 150px;
  }
}

.footer .footer-bottom {
  background: var(--maxx-bg-dark);
  color: var(--maxx-text-light);
}

.footer .footer-bottom h6 {
  text-transform: uppercase;
  margin-bottom: 1.5em;
}

.footer .footer-bottom a {
  color: var(--maxx-text-light);
}

.footer .footer-bottom .footer-contact .fa-ul > li {
  line-height: 1.6;
}

.footer .footer-bottom .footer-contact .fa-li {
  width: 1em;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-contact {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.footer .footer-bottom .footer-menu ul li {
  font-weight: 600;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-menu {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
  }
}

.footer .footer-bottom .footer-user-menu .fa-ul > li {
  margin: 12px 0;
  font-weight: 600;
}

.footer .footer-bottom .footer-user-menu .fa-ul .fa-li {
  width: 1em;
}

.footer .footer-bottom .footer-user-menu .flags svg {
  width: 30px;
  height: auto;
  border-radius: 2px;
}

.footer .footer-bottom .footer-instagram li {
  width: 30%;
}

.footer .footer-bottom .footer-instagram li img {
  width: 100%;
}

.footer .footer-bottom .footer-instagram .list-inline-item:not(:last-child) {
  margin-right: 1%;
}

/* Typography */
html {
  font-size: 12px;
}

@media (min-width: 544px) {
  html {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 16px;
  }
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
}

/* Buttons */
.btn-buy {
  border-radius: 25px;
  border-width: 2px;
  padding: .7em 1em;
  letter-spacing: -.03em;
  margin-top: 15px;
  position: relative;
  padding-left: 37px;
}

.btn-buy i {
  font-size: 26px;
  left: 6px;
  position: absolute;
  top: 5px;
}

@media (min-width: 544px) {
  .btn-buy {
    padding: .45em 1em .45em 45px;
  }
  .btn-buy i {
    font-size: 27px;
    left: 5px;
    position: absolute;
    top: 3px;
  }
}

@media (min-width: 768px) {
  .btn-buy i {
    font-size: 27px;
    left: 5px;
    position: absolute;
    top: 3px;
  }
}

@media (min-width: 992px) {
  .btn-buy {
    padding-left: 46px;
  }
  .btn-buy i {
    font-size: 33px;
    left: 3px;
    position: absolute;
    top: 1px;
  }
}

.btn {
  margin: 15px auto 0;
  font-weight: var(--btn-font-weight);
  border-radius: var(--btn-radius-full);
  transition: var(--btn-transition);
  letter-spacing: -0.03em;
}
.btn:hover {
  text-decoration: none;
}
.btn-lg {
  padding: var(--btn-padding-lg);
  font-size: 1.2rem;
  border-radius: var(--btn-radius-full);
}

@media (min-width: 544px) {
  .btn {
    width: auto;
    display: inline-block;
  }
  .btn.btn-buy {
    margin-top: 0;
  }
}

.btn.btn-buy.btn-sm, .btn-group-sm > .btn.btn-buy {
  padding: .2em .7em .2em 25px;
}

.btn.btn-buy.btn-sm i, .btn-group-sm > .btn.btn-buy i {
  font-size: 16px;
  top: 1px;
  left: 3px;
  font-size: 16px;
}

@media (min-width: 768px) {
  .btn.btn-buy.btn-sm i, .btn-group-sm > .btn.btn-buy i {
    font-size: 18px;
    top: 1px;
    left: 3px;
  }
}

@media (min-width: 992px) {
  .btn.btn-buy.btn-sm i, .btn-group-sm > .btn.btn-buy i {
    font-size: 21px;
  }
}

/* ============================================
   CTA BUTTONS - Reusable Button Components
   ============================================ */

/* Base CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--btn-padding);
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size);
  text-decoration: none;
  border-radius: var(--btn-radius);
  transition: var(--btn-transition);
  cursor: pointer;
  letter-spacing: -0.03em;
  line-height: 1.2;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-cta:hover {
  text-decoration: none;
  transform: var(--btn-hover-lift);
}

.btn-cta:active {
  transform: translateY(-1px);
}

.btn-cta i,
.btn-cta svg {
  font-size: 1em;
  flex-shrink: 0;
}

/* Primary CTA - Gradient (Yellow to Red) */
.btn-cta-primary,
.btn-cta.primary {
  background: var(--btn-gradient-primary);
  color: var(--maxx-bg-black);
  border: none;
}

.btn-cta-primary:hover,
.btn-cta.primary:hover {
  background: var(--btn-gradient-primary-hover);
  color: var(--maxx-bg-black);
  box-shadow: var(--btn-shadow-primary);
}

.btn-cta-primary:active,
.btn-cta.primary:active {
  box-shadow: var(--shadow-md);
}

/* Secondary CTA - Outline (Ghost Button) */
.btn-cta-secondary,
.btn-cta.secondary {
  background: transparent;
  color: var(--maxx-text);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover,
.btn-cta.secondary:hover {
  border-color: var(--maxx-primary);
  color: var(--maxx-primary);
  background: rgba(254, 189, 18, 0.05);
}

/* Link CTA - Blue Gradient */
.btn-cta-link,
.btn-cta.link {
  background: var(--btn-gradient-link);
  color: var(--maxx-text);
  border: none;
}

.btn-cta-link:hover,
.btn-cta.link:hover {
  background: var(--btn-gradient-link-hover);
  color: var(--maxx-text);
  box-shadow: var(--btn-shadow-link);
}

/* Dark CTA - For light backgrounds */
.btn-cta-dark,
.btn-cta.dark {
  background: var(--maxx-bg);
  color: var(--maxx-text);
  border: none;
}

.btn-cta-dark:hover,
.btn-cta.dark:hover {
  background: var(--maxx-bg-dark);
  color: var(--maxx-text);
}

/* Light CTA - For dark backgrounds (outline on dark) */
.btn-cta-light,
.btn-cta.light {
  background: var(--maxx-text);
  color: var(--maxx-bg-black);
  border: none;
}

.btn-cta-light:hover,
.btn-cta.light:hover {
  background: var(--maxx-text-light);
  color: var(--maxx-bg-black);
}

/* Success CTA */
.btn-cta-success,
.btn-cta.success {
  background: var(--maxx-success);
  color: var(--maxx-text);
  border: none;
}

.btn-cta-success:hover,
.btn-cta.success:hover {
  background: var(--maxx-success-dark);
  color: var(--maxx-text);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

/* Danger CTA */
.btn-cta-danger,
.btn-cta.danger {
  background: var(--maxx-danger);
  color: var(--maxx-text);
  border: none;
}

.btn-cta-danger:hover,
.btn-cta.danger:hover {
  background: var(--maxx-accent-dark);
  color: var(--maxx-text);
}

/* Button Sizes */
.btn-cta-sm,
.btn-cta.sm {
  padding: var(--btn-padding-sm);
  font-size: 0.875rem;
  gap: var(--spacing-xs);
}

.btn-cta-lg,
.btn-cta.lg {
  padding: var(--btn-padding-lg);
  font-size: 1.125rem;
}

/* Full Width */
.btn-cta-block,
.btn-cta.block {
  width: 100%;
  flex: 1;
}

/* Pill Shape */
.btn-cta-pill,
.btn-cta.pill {
  border-radius: var(--btn-radius-full);
}

/* Icon Only Button */
.btn-cta-icon {
  padding: var(--spacing-md);
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.btn-cta-icon.sm {
  padding: var(--spacing-sm);
  width: 36px;
  height: 36px;
}

.btn-cta-icon.lg {
  padding: var(--spacing-lg);
  width: 56px;
  height: 56px;
}

/* Button Group */
.btn-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.btn-cta-group.vertical {
  flex-direction: column;
}

.btn-cta-group.centered {
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .btn-cta {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .btn-cta-group {
    flex-direction: column;
  }
  
  .btn-cta-group .btn-cta {
    width: 100%;
  }
}

/* Disabled state */
.btn-cta:disabled,
.btn-cta.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Loading state */
.btn-cta.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-cta.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btn-spinner 0.75s linear infinite;
}

@keyframes btn-spinner {
  to { transform: rotate(360deg); }
}

/* Legacy .btn-buy updates to use new variables */
.btn-buy {
  background: var(--btn-gradient-primary);
  color: var(--maxx-bg-black);
  border-radius: var(--btn-radius-full);
  border: none;
  padding: .7em 1em;
  letter-spacing: -.03em;
  margin-top: 15px;
  position: relative;
  padding-left: 37px;
  font-weight: var(--btn-font-weight);
  transition: var(--btn-transition);
}

.btn-buy:hover {
  background: var(--btn-gradient-primary-hover);
  color: var(--maxx-bg-black);
  transform: var(--btn-hover-lift);
  box-shadow: var(--btn-shadow-primary);
}

.distributors .tag {
  font-size: 65%;
  line-height: .9;
  vertical-align: 2px;
}

@media (min-width: 768px) {
  .distributors .tag {
    margin-left: 5px;
  }
}

/* Other classes */
.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.border-left {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.border-right {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu {
  z-index: 300;
}

.open > .dropdown-menu {
  -webkit-animation: fadeIn .7s;
       -o-animation: fadeIn .7s;
          animation: fadeIn .7s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    trandform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    trandform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    trandform: translate3d(0, 0, 0);
  }
}

.ekko-lightbox-container {
  position: relative;
}

.ekko-lightbox-container > div.ekko-lightbox-item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}

.ekko-lightbox iframe {
  width: 100%;
  height: 100%;
}

.ekko-lightbox-nav-overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.ekko-lightbox-nav-overlay a {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0%;
          flex: 1 1 0%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
  color: #fff;
  font-size: 30px;
  z-index: 1;
}

.ekko-lightbox-nav-overlay a > * {
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}

.ekko-lightbox-nav-overlay a > :focus {
  outline: none;
}

.ekko-lightbox-nav-overlay a span {
  padding: 0 30px;
}

.ekko-lightbox-nav-overlay a:last-child span {
  text-align: right;
}

.ekko-lightbox-nav-overlay a:hover {
  text-decoration: none;
}

.ekko-lightbox-nav-overlay a:focus {
  outline: none;
}

.ekko-lightbox a:hover {
  opacity: 1;
  text-decoration: none;
}

.ekko-lightbox .modal-dialog {
  display: none;
}

.ekko-lightbox .modal-footer {
  text-align: left;
}

.ekko-lightbox-loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.ekko-lightbox-loader > div {
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
}

.ekko-lightbox-loader > div > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: a 2s infinite ease-in-out;
       -o-animation: a 2s infinite ease-in-out;
          animation: a 2s infinite ease-in-out;
}

.ekko-lightbox-loader > div > div:last-child {
  -webkit-animation-delay: -1s;
       -o-animation-delay: -1s;
          animation-delay: -1s;
}

.modal-dialog .ekko-lightbox-loader > div > div {
  background-color: #333;
}

@-webkit-keyframes a {
  0%, to {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@-o-keyframes a {
  0%, to {
    -o-transform: scale(0);
       transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    -o-transform: scale(1);
       transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes a {
  0%, to {
    -o-transform: scale(0);
       transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    -o-transform: scale(1);
       transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.ekko-lightbox .modal-title {
  font-size: 1.1em;
}

.imagewrapper {
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  display: block;
  overflow: hidden;
  position: relative;
}

.imagewrapper .imageoverlay {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.imagewrapper i {
  color: #ffffff;
  display: block;
  font-weight: normal;
}

.imagewrapper:hover .imageoverlay {
  opacity: 1;
}

.imagewrapper .stylec {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  margin-top: -20px;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.imagewrapper:hover .stylec {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.plugin-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

/* Product page */
.product-lmenu {
  height: 42px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: var(--maxx-bg-dark);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.product-lmenu:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.product-lmenu .breadcrumbs {
  margin-bottom: 0;
}

.product-lmenu .breadcrumbs li {
  color: white;
}

.product-lmenu .breadcrumbs li a {
  color: white;
}

.product-lmenu .breadcrumbs li a.active {
  color: var(--maxx-primary);
}

.product-lmenu .breadcrumbs li:not(:last-child):after {
  content: '\f00c';
  font: normal normal normal 14px/1 'Maxxecu';
  margin: 0px 0px 0px 10px;
}

.extra_message {
  height: 36px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: var(--maxx-bg-dark);
  -webkit-background-size: cover;
  background-size: cover;
  color: var(--maxx-text);
}

.extra_message a.active {
  color: whitesmoke;
}

/* Content page */
.content-default {
  height: 150px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: url(../../img/bg-content.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 45%;
  color: white;
}

.content-default:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(11, 11, 11, 0.5);
}

.trans-border {
  border: 0px solid #0f0;
  background: rgba(22, 22, 22, 0.7);
}

.highlight {
  color: #4bc0e4;
}

.border_green {
  border: 1px solid #0F0;
}

.border_red {
  border: 1px solid #F00;
}

.border_grey {
  border: 1px solid #dedede;
}

.footer-frame {
  background-color: #111;
  height: 2em;
}

.borderless {
  border: 0px;
  -webkit-box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.25);
}

.page-main {
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 62%;
  color: white;
  height: 125px;
}
@media (min-width: 992px) {
  .page-main {
    height: 250px;
  }
}

.page-main-porsche {
  background-image: url(../../img/bg-porsche-city-park.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 60%;
  color: white;
  height: 500px;
  border: 1px solid #dedede;
}

.page-mtune {
  background-image: url(../../img/bg-tuning_computer.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 35%;
  color: white;
}

.page-mdash {
  background-image: url(../../img/bg-mdash.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 27%;
  color: white;
}

.page-about {
  background-image: url(../../img/bg-headlight.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 35%;
  color: white;
}

.page-distributors {
  background-color: #000;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 55%;
  color: white;
}

.page-products {
  background-image: url(../../img/bg-products.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 60%;
  color: white;
  height: 150px;
}

.page-plugin-mustang:before {
  background-image: url(../../img/bg-mustang-tokyo.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 75%;
  color: white;
  height: 350px;
}

.page-plugin-audi_s2:before {
  background-image: url(../../img/bg-audi_drifting.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 60%;
  color: white;
  height: 150px;
}

.page-plugin-audi_s4:before {
  background-image: url(../../img/bg-audi_s4.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: white;
  height: 150px;
}

.page-plugin-audi_a4:before {
  background-image: url(../../img/bg-audi_a4.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 60%;
  color: white;
  height: 150px;
}

.page-plugin-mitsubishi_evo_eight:before {
  background-image: url(../../img/bg-mitsubishi_evo_eight.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 60%;
  color: white;
  height: 150px;
}

.page-plugin-audi_me75:before {
  background-image: url(../../img/bg-audi_me75.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: white;
  height: 150px;
}

.page-plugin-nissan_all:before {
  background-image: url(../../img/bg-nissan_logo.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: white;
  height: 150px;
}

.page-plugin-porsche_996:before {
  background-image: url(../../img/bg-porsche_996.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: white;
  height: 150px;
}

.page-plugin-toyota_supra_mkiv:before {
  background-image: url(../../img/bg-toyota_supra_mkiv.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: white;
  height: 150px;
}
.admin-hero.product-hero {
  height: 70px;
}
.admin-hero.product-hero h2 {
  margin-top: 0!important;
}
.product-hero  {
  color: var(--maxx-text);
  background-image: var(--maxx-gradient-primary);
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
}

.product-hero:before {
  content: '';
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 0.15;
}

.page-product_ecu_v1:before {
  background: url(../../img/bg-maxxecu_v1.jpg);
}

.page-product_ecu_street:before {
  background-image: url(../../img/bg-maxxecu_street.jpg);
}

.page-product_ecu_pro:before {
  background-image: url(../../img/bg-maxxecu_pro.jpg);
}

.page-product_ecu_race:before {
  background-image: url(../../img/bg-maxxecu_race.jpg);
}

.page-product_ecu_sport:before {
  background-image: url(../../img/bg-maxxecu_sport.jpg);
}

.page-product_pdm20:before {
  background-image: url(../../img/bg-maxxecu_pdm20.jpg);
}

.page-product_pluginecu:before {
  background-image: url(../../img/bg-pluginecu.jpg);
}

.page-product_terminated_harness:before {
  background-image: url(../../img/bg-terminated_harness.jpg);
}



.page-mtune:before {
  background-image: url(../../img/bg-tuning_computer.jpg);
} 

.page-about:before {
  background-image: url(../../img/bg-headlight.jpg);
}
.page-product_accessories:before {
  background-image: url(../../img/bg_product_accessories.jpg);
}
.where-to-buy-accessories .table td {
  border-top: 0;
}
.dealers {
  border: 0px solid #F00;
  width: 100%;
  float: left;
  margin-bottom: 0px;
}

.dealers-name {
  border: 0px solid #0F0;
  width: 300px;
  float: left;
}

.dealers-contact-name {
  border: 0px solid #00F;
  width: 300px;
  float: left;
}

.dealers-email {
  border: 0px solid #000;
  width: 200px;
  float: left;
}

.dealers-phone {
  border: 0px solid #000;
  width: 120px;
  float: left;
}

.input-title {
  margin: 4px 4px 0px 0px;
  border: 1px solid #000;
  float: left;
  text-align: right;
  height: 18px;
  padding-left: 0px;
  width: 80px;
}

.input-field {
  margin: 4px 4px 0px 0px;
  border: 1px solid #000;
  float: left;
  text-align: left;
  height: 18px;
  padding-left: 0px;
  width: 180px;
}

.editable_textarea {
  border: 0px solid #00F;
  width: 90%;
  display: inline;
  background-color: var(--maxx-bg-black);
  color: var(--maxx-text);
}
.editable_textarea textarea {
  background-color: var(--maxx-bg-black);
  color: var(--maxx-text)!important;
  height: 10em!important;
  resize: none;
}
.editable_linkarea {
  border: 0px solid #000;
  width: 90%;
  background-color: var(--maxx-bg-black);
  color: var(--maxx-text);
}


.changelog {
  margin-bottom: 24px;
  float: left;
  margin-left: 0px;
  width: 932px;
  border: 0px solid #F00;
  margin-right: 0px;
  text-align: justify;
}

.changelog-icon {
  margin-bottom: 0px;
  float: left;
  margin-left: 0px;
  height: 16px;
  width: 24px;
  border: 0px solid #F00;
  margin-right: 0px;
  text-align: left;
}

.changelog-side {
  margin-bottom: 0px;
  float: left;
  margin-left: 0px;
  height: 16px;
  width: 44px;
  border: 0px solid #F00;
  margin-right: 0px;
  text-align: left;
}

.changelog-type {
  margin-bottom: 0px;
  float: left;
  margin-left: 0px;
  height: 16px;
  width: 80px;
  border: 0px solid #F00;
  margin-right: 0px;
  text-align: left;
}

.changelog-data {
  margin-bottom: 0px;
  float: left;
  margin-left: 0px;
  height: 16px;
  width: 854px;
  border: 0px solid #F00;
  margin-right: 0px;
  text-align: left;
}

.changelog-table h6 {
  margin-bottom: 0;
  line-height: 1;
}

.changelog-table .table th,
.changelog-table .table td {
  vertical-align: middle;
  padding: 0.45rem 0.75rem;
  border-top: none;
  font-size: 0.95rem;
}

.ecu-compare.table th,
.ecu-compare.table td,
.compare-flying-kits.table th,
.compare-flying-kits.table td,
.table-report-custom th,
.table-report-custom td {
  padding: 0.25rem 0.75rem;
}

.changelog-table .table tbody + tbody {
  border-top: none;
}

.changelog-table .table thead th {
  background-color: transparent;
}

.changelog-table .table thead:not(:first-child) th {
  padding-top: 2rem;
}
.changelog-table .tag {
  width: 100%;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-heros {
  height: 250px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-heros:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(11, 11, 11, 0.1);
}

.product-heros .breadcrumbs {
  margin-bottom: 0;
}

.product-heros .breadcrumbs li {
  color: #fff;
}

.product-heros .breadcrumbs li a {
  color: #fff;
}

.product-heros .breadcrumbs li a.active {
  color: #febd12;
}

.product-heros .breadcrumbs li:not(:last-child):after {
  content: '\f00c';
  font: normal normal normal 14px/1 Maxxecu;
  margin: 0 0 0 10px;
}

.missing-bullet {
  text-decoration: line-through;
  color: #F00;
}

.build-more a:hover .title h5 {
  text-decoration: underline;
}

/*.distributors-list thead:before {
  content: "-";
  display: block;
  line-height: 2em;
  color: transparent;
}
*/
.warning-text {
  color: #F00;
}

.message-extra {
  display: flex;
  align-items: center;
}

/* CONTACT PAGE 2019 */
.has-danger .form-control, .has-danger textarea {
  border-bottom: 2px solid #d9534f;
}
/* ============ DEFAULTS =========== */
.btn-primary {
  color: var(--maxx-bg-black);
  background: var(--btn-gradient-primary);
  border: none;
  transition: var(--btn-transition);
  font-weight: var(--btn-font-weight);
}
.btn-primary:hover {
  color: var(--maxx-bg-black);
  background: var(--btn-gradient-primary-hover);
  transform: var(--btn-hover-lift);
  box-shadow: var(--btn-shadow-primary);
}
.btn-success {
  color: var(--maxx-bg-black);
  background: var(--btn-gradient-success);
  border: none;
  transition: var(--btn-transition);
  font-weight: var(--btn-font-weight);
}
.btn-success:hover {
  color: var(--maxx-bg-black);
  background: var(--btn-gradient-success-hover);
  transform: var(--btn-hover-lift);
  box-shadow: var(--btn-shadow-success);
}
.btn-warning {
  color: var(--maxx-bg-black);
  background: var(--btn-gradient-warning);
  border: none;
  transition: var(--btn-transition);
  font-weight: var(--btn-font-weight);
}
.btn-warning:hover {
  color: var(--maxx-bg-black);
  background: var(--btn-gradient-warning-hover);
  transform: var(--btn-hover-lift);
  box-shadow: var(--btn-shadow-warning);
}
.btn-secondary {
  color: #fff;
  background: transparent;
  border: 2px solid var(--maxx-border-light)!important;
}
.text-center {
    text-align: center!important;
}
.text-right {
  text-align: right!important;
}
.form-heading {
    margin-top: -70px;
    padding: 20px;
    background: #d73731;
    margin-bottom: 40px;
    border-radius: 3px;
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.social-line a {
    font-size: 18px;
    color: #fff;
    margin-left: 6px;
    margin-right: 6px;
}

.description {
    float: left;
    margin-bottom: 40px;
}

.distance {
    padding: 60px 0;
}

.lineheight {
    height: 30px;
}

.icon.icon-primary {
    color: #d73731;
    font-size: 24px;
    float: left;
    padding-right: 16px;
    margin-top: -6px;
}

.bootstrap-select .btn {
    border-bottom: solid 1px #d2d2d2;
    border-radius: 0;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 300;
}

.bootstrap-select .dropdown-menu ul li a {
    font-size: 14px;
    color: #4D4D48;
}

.bootstrap-select .dropdown-menu ul li a:hover {
    text-decoration: none;
    color: #136fa1;
}

.bootstrap-select .dropdown-menu {
    margin-top: 15px;
}

.bootstrap-select.btn-group ul.dropdown-menu.inner {
    padding: 15px;
}

.country label {
    margin-bottom: 10px;
}
.input-file .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    margin: 0;
}
.input-file .floating-label {
    position: relative;
    transform: none!important;
}
.input-file .btn-default {
    text-shadow: 0 1px 0 #fff;
    background-image: -webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);
    background-image: -o-linear-gradient(top,#fff 0,#e0e0e0 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));
    background-image: linear-gradient(to bottom,#fff 0,#e0e0e0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #dbdbdb;
    border-color: #ccc;
    text-shadow: 0 -1px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
}
.input-file .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px!important;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.input-file .btn-reset {
    background-image: -webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);
    background-image: -o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));
    background-image: linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #e38d13;
}

.valid-feedback, .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: -37px;
  font-size: 80%;
}
.help-block {
  display: flex;
}
.help-block.with-errors {
    color: #ff5050;
    font-size: 80%;
}
/*
.help-block.with-errors ul li::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f007";
}
*/

@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select,
  textarea,
  input {
    font-size: 16px;
  }
}

.contact-section select.form-control:not([size]):not([multiple]) {
    height: 3.6rem;
}
.nav-contact {
    display: flex;
    justify-content: space-around;
}
.nav-contact h6 {
    font-size: 0.85rem;
}
.contact-content {
    background: var(--maxx-bg);
    color: var(--maxx-text-light);
    padding: 20px;
    border-radius: var(--radius-md);
}
.contact-section .help-row h5 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-section .alert-success {
  color: #a0a0a0;
  background-color: #171717;
  border-color: transparent;
  font-size: 85%;
}
.contact-section .help-row svg, .contact-section .help-row i {
    margin-right: 10px;
}
.contact-section .help-row ul li {
    line-height: 1.5rem;
}
.contact-section .help-row ul li a {
    font-size: 0.9rem;
}
.contact-section .textarea.has-danger .help-block, .gdpr.has-danger .help-block {
  margin-top: 0;
  margin-bottom: 0;
}
.help-block ul {
  margin-bottom: 0!important;
}
.contact-section .form-control,
.admin .form-control,
.login .form-control,
.store-cart .form-control {
  background-color: var(--maxx-gray-light);
  border: 1px solid var(--maxx-border-gray);
  color: var(--maxx-text-light);
}
.contact-section .upload-file {
  margin-top: -5px;
}
.contact-section .upload-file label {
  margin-bottom: 0.1rem;
}
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e")!important;
  background-color: var(--maxx-gray-light)!important;
  border: 1px solid var(--maxx-border-gray)!important;
  color: var(--maxx-text-light)!important;
}
.select2-container {
  height: calc(3.5rem + 2px);
}
.select2-container--default .select2-selection--single {
  border: none;
  background-color: transparent;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  background-color: var(--maxx-gray-light);
  border: 1px solid var(--maxx-border-gray);
  color: var(--maxx-text-light);
  padding: 1rem .75rem;
  line-height: 45px;
  border-radius: var(--radius-sm);
  height: calc(3.5rem + 2px);
}
.messages .close {
  margin-right: 15px;
}
.repair-product .form-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.repair-product .form-check + .form-check {
  margin-top: 0!important;
}
.repair-product .form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.repair-product .form-check-label {
  padding: 0;
  margin-top: 5px;
}
/* Dealer Map Section */
.dealer-heading {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: linear-gradient(135deg, var(--maxx-primary) 0%, var(--maxx-primary-dark) 100%);
  color: var(--maxx-bg-black);
  position: sticky;
  top: 0;
  z-index: 10;
}
.dealer-heading__icon {
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}
.dealer-heading__text h5 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.02em;
}
.dealer-heading__text p {
  margin: 0;
  font-size: var(--text-sm);
  opacity: 0.8;
}

/* Country Selector */
.country-selector {
  padding: var(--space-4);
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(var(--maxx-primary-rgb), 0.2);
}
.country-selector__label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--maxx-text-muted);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.country-selector__label i {
  color: var(--maxx-primary);
}
.country-selector__select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--maxx-bg-dark);
  border: 1px solid rgba(var(--maxx-primary-rgb), 0.3);
  border-radius: var(--radius-md);
  color: var(--maxx-text);
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-smooth);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a639' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  padding-right: var(--space-8);
}
.country-selector__select:hover {
  border-color: var(--maxx-primary);
}
.country-selector__select:focus {
  outline: none;
  border-color: var(--maxx-primary);
  box-shadow: 0 0 0 3px rgba(var(--maxx-primary-rgb), 0.2);
}
.country-selector__select option {
  background: var(--maxx-bg-dark);
  color: var(--maxx-text);
  padding: var(--space-2);
}
.country-title svg, .country-title i {
  margin-right: 0.4rem;
  color: var(--maxx-primary);
}
.container-map {
  display: flex;
  min-height: 400px;
  width: 100%;
  margin-top: 0;
  color: var(--maxx-text);
  background: var(--maxx-bg-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: var(--space-12);
}
@media (max-width: 991px) {
  .container-map {
    flex-direction: column-reverse;
    border-radius: 0;
    margin-bottom: 0;
  }
  #listings {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 50vh;
  }
}
#listings {
  width: 380px;
  min-width: 380px;
  height: 75vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--maxx-bg-dark);
  scrollbar-width: thin;
  scrollbar-color: var(--maxx-primary) transparent;
}
#listings::-webkit-scrollbar {
  width: 6px;
}
#listings::-webkit-scrollbar-track {
  background: transparent;
}
#listings::-webkit-scrollbar-thumb {
  background: var(--maxx-primary);
  border-radius: 3px;
}
.listings__content {
  padding: var(--space-4);
  padding-top: var(--space-2);
}
#listings .country {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(var(--maxx-primary-rgb), 0.2);
}
#listings .country:last-child {
  border-bottom: none;
}
#listings .country-title,
#listings .country > a.country-title {
  display: block;
  padding: var(--space-3) var(--space-4) var(--space-3) var(--space-5);
  margin: 0 calc(var(--space-4) * -1) var(--space-4);
  background: rgba(var(--maxx-primary-rgb), 0.1);
  border-left: 3px solid var(--maxx-primary);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--maxx-primary);
  letter-spacing: 0.02em;
  transition: all var(--duration-base) var(--ease-smooth);
}
#listings .country > a.country-title:hover {
  background: rgba(var(--maxx-primary-rgb), 0.2);
  color: var(--maxx-primary);
}
#listings .item {
  margin-bottom: var(--space-4);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  transition: all var(--duration-base) var(--ease-smooth);
  cursor: pointer;
}
#listings .item:hover {
  background: rgba(var(--maxx-primary-rgb), 0.1);
  transform: translateX(4px);
}
#listings .country .item:not(:last-child) {
  border-bottom: none;
  padding-bottom: var(--space-3);
}
#listings .item p {
  margin: 0;
  padding: 0;
  color: var(--maxx-text-muted);
  font-size: var(--text-base);
}
#listings .item .title {
  display: block;
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--maxx-text);
  margin-bottom: var(--space-2);
  transition: color var(--duration-base) var(--ease-smooth);
}
#listings .item .title:hover {
  color: var(--maxx-primary);
}
#listings .item .item-title {
  font-weight: 600;
  color: var(--maxx-text);
  margin-bottom: var(--space-1);
}
#listings .item > .item-info {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
#listings .item > .item-info a {
  font-size: var(--text-base);
  color: var(--maxx-primary);
  transition: opacity var(--duration-base);
}
#listings .item > .item-info a:hover {
  opacity: 0.8;
}
#listings .item.active {
  background: rgba(var(--maxx-primary-rgb), 0.15);
  border-left: 3px solid var(--maxx-primary);
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 991px) {
  #map {
    width: 100% !important;
    height: 50vh !important;
  }
}
#map {
  flex: 1;
  height: 75vh;
  min-height: 500px;
}

/* Mapbox Styling */
.mapboxgl-popup {
  max-width: 320px;
  font-family: var(--font-body);
}
.marker {
  background-image: url('img/icons/mapbox-icon.png');
  background-size: cover;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease-smooth);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.marker:hover {
  transform: scale(1.15);
}
.marker-distributor {
  background-image: url('img/icons/mapbox-icon-distributor.png');
  background-size: cover;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease-smooth);
  box-shadow: 0 2px 12px rgba(var(--maxx-primary-rgb), 0.4);
}
.marker-distributor:hover {
  transform: scale(1.15);
}
.mapboxgl-popup-content {
  background: var(--maxx-bg-dark)!important;
  color: var(--maxx-text);
  border-radius: var(--radius-lg)!important;
  padding: var(--space-5)!important;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(var(--maxx-primary-rgb), 0.2);
  text-align: left;
  font-family: var(--font-body);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.mapboxgl-popup-content h3,
.mapboxgl-popup-content h4,
.mapboxgl-popup-content strong {
  color: var(--maxx-primary);
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
}
.mapboxgl-popup-content p {
  color: var(--maxx-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}
.mapboxgl-popup-content a {
  color: var(--maxx-primary);
}
.mapboxgl-popup-close-button {
  color: var(--maxx-text-muted);
  font-size: var(--text-xl);
  padding: var(--space-2);
  right: var(--space-2);
  top: var(--space-2);
}
.mapboxgl-popup-close-button:hover {
  color: var(--maxx-primary);
  background: transparent;
}
.mapboxgl-popup-anchor-top .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip {
  border-bottom-color: var(--maxx-bg-dark)!important;
}
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip {
  border-top-color: var(--maxx-bg-dark)!important;
}
.mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
  border-right-color: var(--maxx-bg-dark)!important;
}
.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
  border-left-color: var(--maxx-bg-dark)!important;
}

/* Cooperative gestures overlay styling */
.mapboxgl-cooperative-gesture-screen {
  background: rgba(0, 0, 0, 0.75) !important;
  font-family: var(--font-body) !important;
}
.mapboxgl-cooperative-gesture-screen .mapboxgl-desktop-message,
.mapboxgl-cooperative-gesture-screen .mapboxgl-mobile-message {
  font-size: var(--text-base) !important;
  color: var(--maxx-text) !important;
  padding: var(--space-4) var(--space-6) !important;
  background: var(--maxx-bg-dark) !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(var(--maxx-primary-rgb), 0.3) !important;
  box-shadow: var(--shadow-xl) !important;
}
.awselect .back_face {
  overflow-y: scroll;
}
.awselect .placeholder {
  font-weight: 700;
}
.awselect .back_face ul li {
  padding: 5px 0;
}
#livesearch {
  display: none;
}
#tech_subject.form-control:focus {
  border: 1px solid #525252;
}
#livesearch.result, #productsearch.result {
  padding: 15px;
  background: white;
  margin-top: 5px;
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.07), 0 4px 8px rgba(0,0,0,0.07), 0 8px 16px rgba(0,0,0,0.07), 0 16px 32px rgba(0,0,0,0.07), 0 32px 64px rgba(0,0,0,0.07);
  line-height: 1.2;
  display: block;
}
#livesearch.result {
  background: var(--maxx-gray-input)!important;
  color: var(--maxx-text-light);
}
#livesearch a, #productsearch a {
  margin: 15px 0 15px;
  display: block;
  color: var(--maxx-link);
}
#livesearch a:hover, #productsearch a:hover {
  text-decoration: none;
  color: var(--maxx-link-dark);
}
#livesearch a svg, #productsearch a svg, #livesearch a i, #productsearch a i {
  margin-left: -20px;
  position: absolute;
}
#message-search .alert {
  display: none;
}
#message-search.show .alert {
  display: block;
}
.contact-section #livesearch.result, #productsearch.result {
  font-size: 85%;
  margin-top: -1rem;
}
.input-search {
  padding: 0.9rem 1.5rem;
  font-size: 1.2rem;
  border-radius: var(--radius-xl);
  background-color: var(--maxx-gray-input);
  border-color: var(--maxx-border-gray);
  color: var(--maxx-text)!important;
}
.input-search:focus {
  background-color: var(--maxx-gray-light);
}
.popover-header {
  color: #444;
}
.search-group svg, .search-group i {
  position: absolute;
  top: 17px;
  right: 30px;
}
.badge {
  border-radius: 0;
  font-size: 12px;
  line-height: 1;
  padding: .375rem .5625rem;
  font-weight: normal;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15
}
#product_form .badge {
  font-size: .75rem;
}
.badge.badge-pill {
  border-radius: 10rem;
}
.badge.badge-pill a {
  color: white;
}
.badge-primary {
  color: var(--maxx-text);
  background-color: var(--maxx-danger-light);
}
.badge-primary:hover {
  color: var(--maxx-text);
  background-color: var(--maxx-danger);
  border-color: var(--maxx-danger);
}
.badge-info {
  color: var(--maxx-text);
  background-color: var(--maxx-info);
} 
.badge-info:hover {
  color: var(--maxx-text);
  background-color: var(--maxx-info);
  border-color: var(--maxx-info);
}
.badge-warning {
  color: var(--maxx-text);
  background-color: var(--maxx-warning);
}
.badge-warning:hover {
  color: var(--maxx-text);
  background-color: var(--maxx-warning-dark);
  border-color: var(--maxx-warning-dark);
}
.badge-send {
  color: var(--maxx-text);
  background-color: #893583;
}
.badge-send:hover {
  color: var(--maxx-text);
  background-color: #73276e;
  border-color: #73276e;
}
.badge-outline-primary {
  color: var(--maxx-danger-light);
  border: 1px solid var(--maxx-danger-light);
}
#orderData .badge.badge-pill {
  padding: .2rem .4rem;
}

/* Modern Premium Badges */
.badge.bg-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%) !important;
  color: #fff !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  border: none;
  position: relative;
  overflow: hidden;
  animation: badge-glow 2s ease-in-out infinite;
}
.badge.bg-success::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: badge-shine 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255,255,255,0.2); }
  50% { box-shadow: 0 2px 16px rgba(16, 185, 129, 0.6), inset 0 1px 0 rgba(255,255,255,0.2); }
}
@keyframes badge-shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.badge.bg-primary {
  background: linear-gradient(135deg, var(--maxx-primary) 0%, var(--maxx-primary-dark) 100%) !important;
  color: var(--maxx-bg-black) !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(var(--maxx-primary-rgb), 0.4);
  border: none;
}

.badge.bg-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #000 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
  border: none;
}

.badge.bg-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: #fff !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  border: none;
}

.badge.bg-info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  color: #fff !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
  border: none;
}
.popover {
  border: none!important;
  padding: 0!important;
  max-width: 100%;
}
.popover-content {
  background-color: #000000;
  color: #ffffff;
  font-size: 85%;
  line-height: 1.5;
}
.popover .popover-title {
  background: #18879d;
  color: #ffffff;
  border-bottom: 0;
}
.popover.bs-tether-element-attached-right .popover-arrow::after {
  border-left-color: #000;
}
.alert-fill-primary {
  color: #ffffff;
  background-color: #f16857;
  border-color: #f16857;
  font-size: 0.8rem;
  padding: 10px 1.25rem;
}
ul.ui-menu {
  list-style: none;
  list-style-type: none;
  padding: 15px;
  background-color: #202020;
  color: #ffffff;
  font-size: 85%;
  line-height: 1.8;
  width: calc(33.333333% - 44px)!important;
  border-radius: 3px;
  z-index: 1000;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.07), 0 4px 8px rgba(0,0,0,0.07), 0 8px 16px rgba(0,0,0,0.07), 0 16px 32px rgba(0,0,0,0.07), 0 32px 64px rgba(0,0,0,0.07);
}
/* New startpage */
html,body {
  height: 100%;
}
.hero-new {
  height: 60vh;
}
.hero-left {
  background: url(../../img/bg-mustang-tokyo.jpg);
  background-size: cover;
}
.hero-right {
  box-shadow: -14px 0 14px rgba(5,28,61,0.75);
  background: #253b58; /* Old browsers */
  background: -moz-linear-gradient(45deg,  #253b58 0%, #162231 27%, #131415 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg,  #253b58 0%,#162231 27%,#131415 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg,  #253b58 0%,#162231 27%,#131415 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#253b58', endColorstr='#131415',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.hero-right h1 {
  color: #2d90ea;
  font-size: 2.5rem;
}
@media (min-width: 768px)  {
  .hero-right h1 {
    font-size: 4rem;
  }
}
.hero-right h1 span.light {
  font-weight: 100;
  color: white;
}
.hero-right h2 {
  color: white;
  font-size: 1.8rem;
  font-weight: 100;
  line-height: 1.3;
}
.hero-new-content {
  z-index: 300;
}
.tech-pattern {
  position: absolute;
  top: -11%;
  z-index: 100;
  left: 0;
}
@media (min-width: 544px) {
  .tech-pattern {
    top: -16%;
  }
}
@media (min-width: 769px) {
  .tech-pattern {
    top: -22%;
  }
}
@media (min-width: 992px) {
  .tech-pattern {
    top: -30%;
  }
}
@media (min-width: 1200px) {
  .tech-pattern {
    top: -40%;
  }
}
.tech-pattern img {
  max-width: 100%;
  position: relative;
  z-index: 100;
}
.product-hero-new {
  background: linear-gradient(#192b42 0%,#14181d 100%);
}
.product-hero-new .container-fluid {
  position: relative;
}
.product-hero-new li i {
  color: #2D90E8;
}
.product-carousel2020 {
  margin-top: -120px;
  z-index: 300;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .product-carousel2020 {
    padding: 0 1.5rem;
  }
}
.slick-slide {
  padding-left: 15px;
  padding:right 15px;
  outline: none;
  display: flex!important;
  flex-direction: column!important;
}
.slick-track {
  display: flex !important;
}
.slick-slide {
  height: inherit !important;
}
.product-hero-new,
.product-hero-new h2,
.product-hero-new h3,
.product-hero-new h4,
.product-hero-new h5,
.product-hero-new h6 {
  color: white;
  font-weight: 100;
  z-index: 300;
}
.product-carousel2020 .product-carousel-info {
  margin-top: -60px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.product-hero-new .video-thumbnail-container {
  box-shadow: 7px 7px 15px 5px rgba(7,9,11,.6);
}

.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    border: 0;
    outline: none;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}
.slick-dots li.slick-active button {
  background: #f4bf45;
}
.product-features-bullets {
  font-size: 80%;
}
.videos-new {
  background: rgb(252,104,111);
  background: linear-gradient(125deg, rgba(252,104,111,1) 0%, rgba(254,147,76,1) 100%);
  position: relative;
}
.bg-image {
  position: absolute;
  height: 120%;
  top: -7%;
  opacity: 50%;
  right: -2%;
  mix-blend-mode: overlay;
}
.bg-image.blog {
  right: auto;
  left: -2%;
}
.video-container-new {
  box-shadow: 7px 7px 15px 2px rgba(11,11,11,.5);
}
.video-container-new .video-title {
  background: #161b23;
  color: #fe8b54;
  margin-top: 0;
  position: absolute;
  width: 100%;
  bottom: 0;
  margin-bottom: 0;
  margin-right: 30px;
  margin-left: 30px;
}
.section-blog {
  background: rgb(24,27,31);
  background-image: url(/../../img/startpage2020/blog-bg2.jpg); /* fallback */
  background-image: url(/../../img/startpage2020/blog-bg2.jpg), linear-gradient(58deg, rgba(24,27,31,1) 0%, rgba(24,37,53,1) 100%); /* W3C */
  background-size: cover;
  background-position: bottom right;
  position: relative;
  color: white;
  margin-bottom: -1.5rem !important;
}
.section-blog #blog-posts-container {
  background: rgba(11,11,11,0.9);
  border-radius: 15px;
  padding: 20px;
}
.section-blog #blog-posts-container h6 {
  color: #2d90ea;
}
.section-blog #blog-posts-container .btn {
  margin-top: 15px;
  border-radius: 30px;
  padding: .5rem 1rem;
  font-size: 1rem;
  margin-bottom: 2rem!important;
}
.section-blog #blog-posts-container small {
  font-size: 100%;
}
.admin .sold-ecu .table th, .admin .sold-ecu .table th {
  vertical-align: middle;
}
.admin .ecu-country {
  position: relative;
  display: inline-block;
}
.admin .ecu-country .badge {
  padding: .25rem .4rem;
}
.modal-dialog {
  z-index: 2000;
}

.option_orange {color: #ff9600;}
.option_red {color: #FF0000;}
.option_blue {color: #00A0FF;}
.option_green {color: #00FF00;}
.option_yellow {color: #fbd607;}


.grecaptcha-badge { visibility: hidden; }

.admin.inventory .table th, .admin.inventory .table td {
  padding: 0.3rem 0.75rem;
}
.order-container .table th, .order-container .table td {
  padding: 0.2rem;
  vertical-align: middle;
}
/* E-store */
.store, .store-cart, .mypage {
  background: var(--gradient-surface);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-subtle);
}
.store.store-multiview {
  background-color: var(--maxx-border-dark);
  margin-top: 135px;
}
.store h1,
.store h2,
.store h3,
.store h4,
.store h5,
.store h6,
.store-cart h1,
.store-cart h2,
.store-cart h3,
.store-cart h4,
.store-cart h5,
.store-cart h6  {
  font-weight: 100;
}
.store #livesearch,
.store-single-product-hero #livesearch {
  background-color: var(--maxx-gray-input);
  position: absolute;
  z-index: 600;
  width: 100%;
}
.store-single-product .product-img .card {
  border: none;
  background: transparent;
}
.store-single-product fieldset.active {
    display: block !important
}
.store-single-product fieldset {
    display: none
}
.store-single-product .pic0 {
    padding-left: 85px;
    display: block
}
.store-single-product .product-pic {
    padding-left: auto;
    padding-right: auto;
    width: 100%
}

.store-single-product .thumbnails {
    position: absolute
}

.store-single-product .fit-image {
    width: 100%;
    object-fit: cover
}

.store-single-product .tb {
    width: 62px;
    height: 62px;
    border: 1px solid grey;
    margin: 2px;
    opacity: 0.4;
    cursor: pointer
}

.store-single-product .tb-active {
    opacity: 1
}

.store-single-product .thumbnail-img {
    width: 60px;
    height: 60px
}
.store-single-product-hero {
  background: #f7f7f7;
}
.store-single-product-hero + form .admin {
  margin-bottom: 0!important;
}
.store-single-product .info {
  font-size: 0.9rem;
}
.store-single-product-hero.admin-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.store-single-product-hero.admin-hero.product-list {
  background: var(--maxx-gray);
  padding-top: 0;
  padding-bottom: 0;
}
.store-single-product-hero.admin-hero.product-list a {
  color: var(--maxx-text-light)!important;
}
.store-single-product-hero.admin-hero.product-list a:hover {
  color: white!important;
  text-decoration: none;
}
.store-single-product .stuff-price .table thead th,
.store-single-product .stuff-price .table th,
.store-single-product .stuff-price .table td {
  border-color: var(--maxx-border);
}
.product-list-info-bar .admin-top-bar .card-body {
  padding: 0.5rem;
}
.cta .input-group {
  width: 100%;
  font-weight: 700;
}

.cta .input-group input {
  line-height: 1.6;
}

.cta .input-group .input-group-addon {
  font-weight: 700;
  font-size: 80%;
}

.cta .input-group-btn {
  margin-top: 0;
  width: 38px;
}

.cta .input-group-btn .btn {
  margin-top: 0;
  line-height: 1.6;
  outline: none;
  padding: .5rem .75rem;
  width: 40px;
  border-radius: 0;
}

.cta .input-group-btn .btn:hover {
  background-color: var(--maxx-link);
  color: var(--maxx-text);
}

.cta .input-group-btn .btn.btn-plus {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}
.cta .btn {
  display: block;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
.border-top {
  border-top: 1px solid #2b2b2b!important;
}
.store-single-product-hero .breadcrumbs {
  margin-bottom: 0;
}  
.store-single-product-more-info .nav-item {
  float: none;
  margin-left: 0!important;
  font-size: 1.2rem;
  transition: opacity .2s ease;
  border-radius: 0;
}
.store-single-product-more-info .nav-pills .nav-link {
  opacity: 0.5;
  color: var(--maxx-text-light);
  border-right: 1px solid var(--maxx-border);
  border-radius: 0;
}
.store-single-product-more-info .nav-pills .nav-link:hover {
  opacity: 1;
}
.store-single-product-more-info .productfact,
.full-specification {
  columns: 2;
  column-gap: 40px;
}
.gdpr-integrity {
  columns: 1;
}
.keeptogether {
  display: inline-block;
}
@media (min-width: 992px) {
  .gdpr-integrity {
    columns: 2;
    column-gap: 40px;
  }
}
 .store-single-product-more-info .nav-pills .nav-link.active,
 .store-single-product-more-info .nav-pills .nav-link.active:focus,
 .store-single-product-more-info .nav-pills .nav-link.active:hover,
 .store-single-product-more-info .nav-pills .nav-item.open .nav-link,
 .store-single-product-more-info .nav-pills .nav-item.open .nav-link:focus,
 .nav-pills .nav-item.open .nav-link:hover {
  background-color: transparent;
  color: var(--maxx-text-light);
  opacity: 1;
  border-right: 2px solid var(--maxx-border);
  border-radius: 0;
 }
.store-single-product-more-info .pruduct-includes-list a {
  font-size: 0.9rem;
}
.store-single-product-more-info .pruduct-includes-list li {
  margin-bottom: 0.2rem;
}
.store-single-product-related a:hover, .store-single-product-include a:hover {
  text-decoration: none!important;
}
.store-single-product-related h5 {
  font-size: 1.1rem;
}
.store-single-product-related h6 {
  font-size: 1rem;
}
.store-single-product-related a .related-link,
.store-single-product-include a .related-link,
.mypage .card a,
.store-cart a,
.help-section li a,
.contact-section li a,
.download li a,
.content-page .products-list ul li a,
.dealers-cart .card-body a,
.store-cart-item-actions .cart-delete,
.store #livesearch a,
a.editcog,
.country a {
  opacity: 0.6;
  color: var(--maxx-text-light);
  transition: opacity .2s ease;
  line-height: 1.3;
  text-decoration: none;
}
.store-single-product-related a:hover .related-link,
.store-single-product-include a:hover .related-link,
.mypage .card a:hover,
.store-cart a:hover,
.help-section li a:hover,
.contact-section li a:hover,
.download li a:hover,
.content-page .products-list ul li a:hover,
.dealers-cart .card-body a:hover,
.store-cart-item-actions .cart-delete:hover,
.store #livesearch a:hover,
a.editcog:hover,
.country a:hover {
  opacity: 1;
  text-decoration: none;
}
.product-links a {
  font-size: .9rem;
}
.product-links a:hover {
  text-decoration: none;
} 
.stuff-price .table th, .stuff-price .table td {
  padding: 0.1rem 0.65rem;
}
.store-single-product-include .related-link {
  font-size: 0.8rem;
  line-height: 1.1;
}
.store-single-product-include-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  grid-gap: .8rem;
}
#loginModal {
  color: white;
}
#loginModal .modal-content {
  background-color: rgba(31, 31, 35, 1);
  border: none!important;
}
#loginModal .modal-header {
  border: none;
}
#loginModal .card {
  background: transparent;
  border: none;
}
#loginModal i {
  position: absolute;
  top: 10px;
  left: 10px;
}

#loginModal button.close {
  color: white;
}
#loginModal.card, #loginModal .card-header, #loginModal .card-footer {
    background-color: rgba(31, 31, 35, 0.8);
    border: none!important;
}
section.login {
  background: black;
}
.store-multiview .dropdown-menu {
  position: relative;
  width: 100%;
  border: none;
  margin: 0;
  margin-bottom: 5px;
  min-width: auto;
  border-color: transparent;
  background: var(--maxx-gray);
}
.store-multiview .product-category-menu .nav-item>a {
  padding: 2px 5px;
  display: block;
  width: 100%;
  color: var(--maxx-text-light);
  background-color: transparent;
  font-size: 0.9rem;
  line-height: 1.4;
  border-radius: var(--radius-sm);
}
.store-multiview .product-category-menu .nav-item>a:hover,
.store-multiview .product-category-menu .nav-item>a:focus,
.store-multiview .product-category-menu .nav-item.active
 {
  background-color: #323232!important;
  border-radius: 4px;
}
.store-multiview .product-category-menu .nav-item .dropdown-menu a {
  font-size: 0.8rem;
  line-height: 1.3;
  background: var(--maxx-gray);
  color: var(--maxx-text-light);
}
/* Store Product Cards */
.store-multiview .card-deck {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.store-multiview .card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.store-multiview .card:hover {
  transform: translateY(-8px);
  border-color: rgba(254,189,18,0.3);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5), 0 0 60px -10px rgba(254,189,18,0.15);
}
.store-multiview .card .card-img-top {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.store-multiview .card:hover .card-img-top { transform: scale(1.05); }
.store-multiview .stock-badge {
  top: 0.75rem; left: 0.75rem;
  padding: 0.4rem 0.75rem;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 500;
}
.store-multiview .stock-badge i { font-size: 0.4rem; }
.store-multiview .card .card-body {
  padding: 1.25rem;
}
.store-multiview .card .card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 0;
  transition: color 0.3s;
}
.store-multiview .card:hover .card-title { color: var(--maxx-primary); }
.store-multiview .card .card-body .h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--maxx-primary);
  letter-spacing: 0.02em;
}
.store-multiview .card .btn-primary {
  background: linear-gradient(135deg, #febd12 0%, #ea1c24 100%);
  border: none;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #000;
  border-radius: 0.625rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254,189,18,0.25);
}
.store-multiview .card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254,189,18,0.4);
  color: #000;
}
.store-multiview .card.product-inactive { opacity: 0.4; }

/* Shopping cart & related cards */
.shopping-cart.card, .mypage .card, .store-single-product-related .card, .customer-cars .card {
  background: var(--surface-3);
}
.shopping-cart.dealers-cart .card-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 0.5rem;
}
.store .input-search, 
.store-single-product-hero .input-search {
  padding: 0.9rem 1.2rem;
  font-size: .9rem;
  color: var(--maxx-text-light);
}
.store .currency .form-control {
  display: inline-block;
  width: auto;
  padding: 0.5rem;
}
.shopping-cart hr, .shopping-cart .card-footer, .shopping-cart .card-header {
  border-color: var(--maxx-border)!important;
}
.small, small {
    font-size: .75em;
}
.shopping-cart .availability small {
  font-size: 70%;
}
.shopping-cart .availability i {
  font-size: 80%;
}
.order-approve-check {
  line-height: 1.2;
}
.order-approve-check .col-form-label {
  padding-top: 0;
  margin-left: 25px;
}
.order-approve-check .form-check-input {
  margin-left: 0;
}
.store-cart .modal {
  color: #222;
}
.store-single-product .cta .input-group .input-group-addon {
  font-weight: 700;
  font-size: 75%;
  background-color: #272727;
  color: #797e81;
  padding: 0.45rem 0.45rem;
  border-color: #363636;
}
.store-single-product .cta .input-group .form-control {
  padding: 0.45rem 0.45rem;
  font-size: 90%;
  background-color: #272727;
  color: #cecece;
  border: 1px solid #363636;

}
.store-cart-item {
  position: relative;
  border-radius: .4rem;
  overflow: hidden;
  margin-bottom: .8rem;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: .8rem;
  padding-bottom: .8rem;
  min-height: 8.7rem;
}
@media (min-width: 576px) {
  .store-cart-item {
    min-height: auto;
  }
}
.store-cart-item:first-child {
  padding-top: 0;
}
.store-cart-item:not(:last-child) {
  border-bottom: 1px solid #2b2b2b!important;
}
.store-cart-item-img {
  padding-right: 1.35rem;
  flex-basis: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-cart-item-info {
  flex-basis: 85%;
  display: flex;
  align-items: flex-start;
}
.store-cart-item-title {
  padding-right: 1.6rem;
  flex: 1 0 35%;
}
@media (min-width: 576px) {
  .store-cart-item-title {
    flex: 1 0 50%;
  }
}
.store-cart-item-unit-price {
  flex: 0 0 30%;
}
@media (min-width: 576px) {
  .store-cart-item-unit-price {
    flex: 0 0 20%;
  }
}
.store-cart-item-actions {
  flex-basis: 85%;
  display: flex;
  justify-content: space-between;
}
.store-cart-item-total-price {
  text-align: right;
  font-weight: 700;
  margin-bottom: 0;
  flex-basis: 20%;
}
@media (min-width: 576px) {
  .store-cart-item-total-price {
    flex-basis: 10%;
  }
}
.store-cart-item-total-price .column-header {
  right: 0;
}
.store-cart-item-quantity {
  flex: 1 0 10rem;
  position: absolute;
  -webkit-transform: translateY(2rem);
  transform: translateY(2rem);
  right: 37px;
}
@media (min-width: 576px) {
  .store-cart-item-quantity {
    position: static;
    -webkit-transform: none;
    transform: none;
    right: 0;
  }
}
.store-cart-item-quantity .quantity {
  position: relative;
}

.store-cart-item-quantity input[type=number]::-webkit-inner-spin-button,
.store-cart-item-quantity input[type=number]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}

.store-cart-item-quantity input[type=number]
{
  -moz-appearance: textfield;
}

.store-cart-item-quantity .quantity input {
  display: block;
  width: 5rem;
  height: 35px;
  padding: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #e9e6e6;
  background-color: #1f1f21;
  border-radius: .3rem;
  text-align: center;
  border: 1px solid #46464c;
  margin-left: 38px;
}
@media (min-width: 576px) {
  .store-cart-item-quantity .quantity input {
    width: 3rem;
  }
}

.store-cart-item-quantity .quantity input:focus {
  outline: 0;
}

.store-cart-item-quantity .quantity-nav {
  float: left;
  position: relative;
  height: 42px;
}

.store-cart-item-quantity .quantity-button {
  position: relative;
  outline: none;
  display: flex;
  width: 28px;
  height: 35px;
  color: #e9e6e6;
  background-color: #353535;
  border-radius: .3rem;
  border: 1px solid #46464c;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.store-cart-item-quantity .quantity-button.quantity-up {
  position: absolute;
  top: -35px;
  left: 94px;
}

.store-cart-item-quantity .quantity-button.quantity-down {
  position: absolute;
  top: -35px;
}
.column-header {
  position: absolute;
  top: 0;
  display: block;
  -webkit-transform: translateY(calc(-100% - .3rem));
  transform: translateY(calc(-100% - .3rem));
  -ms-transform: translateY(calc(-100% - .3rem));
  opacity: 80%;
}
.store-cart-item:not(:first-of-type) .column-header {
  display: none!important;
}
.shopping-cart .btn-sm {
  border-radius: 15px;
}
.store-cart-item-actions .cart-delete {
  background: transparent;
  border: none;
  font-size: inherit;
}
.alert-muted {
  color: var(--maxx-text-muted);
  background-color: var(--maxx-gray);
  border-color: var(--maxx-gray-medium);
  font-size: 0.9rem;
  padding: 10px 1.25rem;
}
.mypage .card-block {
  padding: 0!important;
}
.mypage.register .order-approve-check .form-check-input {
  margin-top: .25rem;
}
.product-category-menu .nav-link[data-toggle].collapsed:after {
    content: " ▾";
}
.product-category-menu .nav-link[data-toggle]:not(.collapsed):after {
    content: " ▴";
}
.modal-confirm {    
  color: #636363;
  width: 400px;
}
.modal-confirm .modal-content {
  padding: 20px;
  border-radius: 5px;
  border: none;
  text-align: center;
  font-size: 14px;
}
.modal-confirm .modal-header {
  border-bottom: none;   
  position: relative;
}
.modal-confirm h4 {
  text-align: center;
  font-size: 26px;
  margin: 30px 0 -10px;
}
.modal-confirm .close {
  position: absolute;
  top: -5px;
  right: -2px;
}
.modal-confirm .modal-body {
  color: #999;
}
.modal-confirm .modal-footer {
  border: none;
  text-align: center;   
  border-radius: 5px;
  font-size: 13px;
  padding: 10px 15px 25px;
}
.modal-confirm .modal-footer a {
  color: #999;
}   
.modal-confirm .icon-box {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  z-index: 9;
}
.modal-confirm .icon-box i {
  color: #f15e5e;
  display: inline-block;
  margin-top: 13px;
}
.trigger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-weight: var(--btn-font-weight);
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: none;
  padding: var(--btn-padding-sm);
  font-size: var(--btn-font-size);
  border-radius: var(--btn-radius-full);
  color: var(--maxx-text);
  background: var(--maxx-danger);
  transition: var(--btn-transition);
}
.trigger-btn:hover,
.trigger-btn:focus {
  color: var(--maxx-text);
  background: var(--maxx-accent-dark);
  text-decoration: none;
  transform: var(--btn-hover-lift);
}
.agreement {
  background: var(--maxx-bg);
  border-radius: var(--radius-md);
}
.nav-tabs li.disabled a {
  pointer-events: none;
  opacity: .2;
}
.nav-tabs .nav-item + .nav-item {
    margin-left: 0.2rem;
}
.maxiecu {
  background: rgb(255,102,32);
  background: radial-gradient(circle, rgba(255,102,32,1) 3%, rgba(236,44,57,1) 47%, rgba(236,44,57,1) 100%);
  position: relative;
  padding-bottom: 40px;
  color: white;
}
.maxiecu img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index:1;
}
.maxiecu .btn {
  z-index: 20;
  position: relative;
}

/* Modern Search Container */
.modern-search-container {
  background: var(--maxx-gray-input);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--maxx-border-gray);
  transition: all var(--transition-base);
}

.modern-search-container:hover {
  border-color: var(--maxx-link);
  box-shadow: var(--shadow-xl);
}

.btn-search {
  background: var(--btn-gradient-link);
  border: none;
  border-radius: var(--btn-radius);
  color: var(--maxx-text);
  font-weight: var(--btn-font-weight);
  letter-spacing: -0.03em;
  transition: var(--btn-transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--btn-padding);
}

.btn-search:hover {
  background: var(--btn-gradient-link-hover);
  color: var(--maxx-text);
  transform: var(--btn-hover-lift);
  box-shadow: var(--btn-shadow-link);
}

.btn-search:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-search i {
  font-size: 1em;
  flex-shrink: 0;
}

/* Search Results Styling */
.modern-search-container .search-results {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--maxx-border-gray);
}

.modern-search-container .search-results h3 {
  color: var(--maxx-primary);
  font-weight: 100;
  margin-bottom: var(--spacing-md);
  font-size: 1.4rem;
}

.modern-search-container .search-results p {
  background: var(--maxx-gray-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border-left: 3px solid var(--maxx-link);
  transition: all var(--transition-base);
}

.modern-search-container .search-results p:hover {
  background: var(--maxx-gray-medium);
  transform: translateX(5px);
}

.modern-search-container .search-results a {
  color: var(--maxx-link);
  text-decoration: none;
  font-weight: 600;
}

.modern-search-container .search-results a:hover {
  color: var(--maxx-link-hover);
  text-decoration: none;
}

.modern-search-container .search-results small {
  color: var(--maxx-text-light);
  font-style: italic;
}
table tr:hover {
 color: var(--maxx-primary)!important;
}    

/* ============================================
   MODERN COMPONENT SYSTEM
   Reusable, composable CSS components
   ============================================ */

/* ===== PAGE WRAPPER ===== */
.page {
  font-family: var(--font-body);
  background: var(--surface-1);
  color: var(--maxx-text);
  min-height: 100vh;
  margin-top: var(--header-height);
}

@media (max-width: 991px) {
  .page { margin-top: var(--header-height-mobile); }
}

.page h1, .page h2, .page h3, .page h4, .page h5, .page h6 {
  font-family: var(--font-display);
  letter-spacing: var(--tracking-wide);
}

/* ===== CONTAINER ===== */
.container { width: 100%; max-width: var(--container-2xl); margin: 0 auto; padding: 0 var(--space-6); }

/* ===== SECTION ===== */
.section { padding: var(--space-24) 0; position: relative; }
.section-sm { padding: var(--space-16) 0; }
.section-lg { padding: var(--space-32) 0; }
.section-hero { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; justify-content: center; }

/* Section backgrounds */
.section-dark { background: var(--surface-1); }
.section-darker { background: var(--surface-0); }
.section-gradient { background: var(--gradient-dark); }
.section-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(var(--maxx-primary-rgb), 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(var(--maxx-accent-rgb), 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: var(--space-20) var(--space-6) var(--space-16);
  background: var(--gradient-dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(var(--maxx-primary-rgb), 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(var(--maxx-accent-rgb), 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content { position: relative; max-width: var(--container-xl); margin: 0 auto; z-index: 2; }
.hero__content--narrow { max-width: var(--container-md); }

/* GEN2 Logo */
.gen2-logo {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(var(--maxx-primary-rgb), 0.4));
}
@media (max-width: 768px) { .gen2-logo { max-width: 200px; } }

/* Hero with media background */
.hero-media { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; justify-content: center; padding: var(--space-8) 0; }
@media (max-width: 991px) { .hero-media { min-height: calc(100vh - var(--header-height-mobile)); } }

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 50%, var(--surface-2) 100%); z-index: 1; }

/* Hero box with animated border */
.hero__box {
  position: relative;
  z-index: 10;
  padding: var(--space-8);
  border-radius: var(--radius-3xl);
  background: rgba(10, 10, 10, 0.9);
}

.hero__box::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-3xl) + 3px);
  background: linear-gradient(90deg, var(--maxx-primary), var(--maxx-accent), var(--maxx-primary), var(--maxx-accent), var(--maxx-primary));
  background-size: 300% 100%;
  animation: gradient-flow 4s linear infinite;
  z-index: -2;
}

.hero__box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-3xl);
  background: rgba(10, 10, 10, 0.95);
  z-index: -1;
}

@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@media (max-width: 768px) {
  .hero { padding: var(--space-12) var(--space-4) var(--space-8); }
  .hero__box { padding: var(--space-6) var(--space-4); margin: 0 var(--space-4); }
}

/* ===== TYPOGRAPHY ===== */
.title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 10vw, var(--text-6xl));
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-4);
}

.title-xl { font-size: clamp(var(--text-5xl), 12vw, 8rem); }
.title-sm { font-size: clamp(var(--text-3xl), 6vw, var(--text-4xl)); }

.subtitle {
  font-size: var(--text-lg);
  color: var(--maxx-text-muted);
  max-width: 700px;
  margin: 0 auto var(--space-6);
  line-height: var(--leading-relaxed);
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-outline {
  -webkit-text-stroke: 2px var(--maxx-text);
  -webkit-text-fill-color: transparent;
}

@media (max-width: 576px) {
  .text-outline { -webkit-text-stroke-width: 1.5px; }
}

/* ===== TAG / BADGE ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(var(--maxx-primary-rgb), 0.1);
  border: 1px solid rgba(var(--maxx-primary-rgb), 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--maxx-primary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

.tag-lg { padding: var(--space-3) var(--space-6); font-size: var(--text-base); }
.tag-success { background: rgba(34, 197, 94, 0.1); border-color: var(--maxx-success); color: var(--maxx-success); }
.tag-danger { background: rgba(239, 68, 68, 0.1); border-color: var(--maxx-danger); color: var(--maxx-danger); }
.tag-info { background: rgba(59, 130, 246, 0.1); border-color: var(--maxx-info); color: var(--maxx-info); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: rgba(var(--maxx-primary-rgb), 0.1);
  border: 1px solid rgba(var(--maxx-primary-rgb), 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--maxx-primary);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.badge:hover {
  background: rgba(var(--maxx-primary-rgb), 0.2);
  border-color: var(--maxx-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--maxx-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* ===== CARD ===== */
.card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: all var(--duration-base) var(--ease-smooth);
  overflow: hidden;
}

.card:hover {
  transform: var(--card-hover-lift);
  border-color: var(--card-hover-border);
  box-shadow: var(--card-hover-shadow);
}

/* Card with accent bar */
.card-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--duration-base);
}

.card-accent:hover::before { opacity: 1; }

/* Card status colors */
.card[data-status]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--status-color, var(--surface-6));
  transition: height var(--duration-base);
}

.card[data-status]:hover::before { height: 4px; }

.card[data-status="success"] { --status-color: var(--maxx-success); }
.card[data-status="warning"] { --status-color: var(--maxx-warning); }
.card[data-status="danger"] { --status-color: var(--maxx-danger); }
.card[data-status="info"] { --status-color: var(--maxx-info); }

/* Feature card */
.card-feature {
  padding: var(--space-10);
  border-radius: var(--radius-3xl);
}

.card-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.card-feature:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--maxx-primary-rgb), 0.2);
  box-shadow: var(--shadow-2xl);
}

.card-feature:hover::before { transform: scaleX(1); }

/* Card icon */
.card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--maxx-primary-rgb), 0.15), rgba(var(--maxx-accent-rgb), 0.1));
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
  color: var(--maxx-primary);
  font-size: var(--text-2xl);
  transition: all var(--duration-base) var(--ease-smooth);
}

.card-feature:hover .card__icon {
  background: var(--gradient-brand);
  color: var(--surface-0);
  transform: scale(1.1) rotate(-5deg);
}

.card__title {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.card__text {
  font-size: var(--text-base);
  color: var(--maxx-text-muted);
  line-height: var(--leading-relaxed);
}

/* ===== PRODUCT CARD ===== */
.card-product {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-smooth);
  text-decoration: none;
  color: var(--maxx-text);
}

.card-product:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--maxx-primary-rgb), 0.3);
  box-shadow: var(--shadow-2xl);
  text-decoration: none;
  color: var(--maxx-text);
}

.card-product__image {
  position: relative;
  width: 100%;
  height: 280px;
  background: var(--surface-4);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.card-product:hover .card-product__image img {
  transform: scale(1.05);
}

.card-product__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-8);
}

.card-product__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--maxx-text);
  line-height: var(--leading-snug);
  letter-spacing: 0.02em;
}

.card-product__text {
  font-size: var(--text-base);
  color: var(--maxx-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  flex: 1;
}

.card-product__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
}

.card-product__footer .product-no {
  color: var(--maxx-text-muted);
  font-size: var(--text-sm);
}

.card-product__link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--maxx-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.card-product:hover .card-product__link {
  gap: var(--space-3);
  color: var(--maxx-primary-light);
}

/* ===== STAT CARD ===== */
.stat {
  text-align: center;
  padding: var(--space-8);
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  transition: all var(--duration-base) var(--ease-smooth);
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--maxx-primary-rgb), 0.3);
  background: linear-gradient(135deg, rgba(var(--maxx-primary-rgb), 0.05), rgba(255,255,255,0.01));
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-5xl));
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: var(--text-base);
  color: var(--maxx-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .grid-2, .grid-3, .grid-4, .grid-auto { grid-template-columns: 1fr; }
}

/* Product card responsive adjustments */
@media (max-width: 768px) {
  .card-product__image {
    height: 240px;
  }
  
  .card-product__content {
    padding: var(--space-6);
  }
  
  .card-product__title {
    font-size: var(--text-xl);
  }
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-6);
}

.bento__item { position: relative; border-radius: var(--radius-3xl); overflow: hidden; background: var(--surface-4); transition: all var(--duration-slow) var(--ease-smooth); cursor: pointer; min-height: 300px; }
.bento__item:hover { transform: scale(1.02); z-index: 10; }

.bento__item--lg { grid-column: span 6; grid-row: span 2; }
.bento__item--md { grid-column: span 6; }
.bento__item--sm { grid-column: span 3; }

@media (max-width: 992px) {
  .bento__item--lg { grid-column: span 2; grid-row: span 1; }
  .bento__item--md, .bento__item--sm { grid-column: span 1; }
  .bento { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .bento { grid-template-columns: 1fr; }
  .bento__item, .bento__item--lg, .bento__item--md, .bento__item--sm { grid-column: span 1; min-height: 280px; border-radius: var(--radius-xl); }
}

.bento__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform var(--duration-slower) var(--ease-smooth); }
.bento__item:hover .bento__bg { transform: scale(1.1); }

.bento__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.9) 100%); }

.bento__content { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-8); z-index: 5; }
.bento__tag { display: inline-block; padding: var(--space-2) var(--space-4); background: var(--maxx-primary); color: var(--surface-0); border-radius: var(--radius-full); font-size: var(--text-sm); font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wide); margin-bottom: var(--space-4); }
.bento__title { font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); margin-bottom: var(--space-2); line-height: var(--leading-snug); }
.bento__desc { font-size: var(--text-base); color: var(--maxx-text-muted); opacity: 0; transform: translateY(10px); transition: all var(--duration-base) var(--ease-smooth); }
.bento__item:hover .bento__desc { opacity: 1; transform: translateY(0); }

.bento__link { display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-4); color: var(--maxx-primary); font-weight: 600; text-decoration: none; opacity: 0; transform: translateY(10px); transition: all var(--duration-base) var(--ease-smooth) 0.1s; }
.bento__item:hover .bento__link { opacity: 1; transform: translateY(0); }
.bento__link svg { transition: transform var(--duration-base); }
.bento__link:hover svg { transform: translateX(4px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--btn-padding);
  font-family: var(--font-body);
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size);
  text-decoration: none;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: var(--btn-transition);
  white-space: nowrap;
}

.btn:hover { transform: var(--btn-hover-lift); text-decoration: none; }
.btn:active { transform: translateY(-1px); }


/* Button group */
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.btn-group--center { justify-content: center; }

@media (max-width: 576px) {
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
}

/* ===== USP / FEATURES LIST ===== */
.usp-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding: var(--space-8);
}

.usp-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
}

.usp-item__icon { color: var(--maxx-primary); font-size: var(--text-xl); }

@media (max-width: 576px) {
  .usp-list { gap: var(--space-4); padding: var(--space-6) var(--space-4); }
  .usp-item { width: 45%; font-size: var(--text-sm); }
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-2);
  background: var(--surface-4);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tabs__btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  color: var(--maxx-text-muted);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-base);
  white-space: nowrap;
}

.tabs__btn:hover { color: var(--maxx-text); background: rgba(255, 255, 255, 0.05); }
.tabs__btn.active { background: var(--gradient-brand); color: var(--surface-0); font-weight: 600; }

.tabs__content {
  background: var(--gradient-surface);
  border-radius: var(--card-radius);
  padding: var(--space-8);
  border: 1px solid var(--border-subtle);
  margin-top: var(--space-6);
}

/* Filter tabs (sticky) */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-4);
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, var(--surface-1) 0%, rgba(5, 5, 5, 0.95) 100%);
  backdrop-filter: blur(10px);
  z-index: var(--z-sticky);
  border-bottom: 1px solid var(--border-subtle);
}

.filter-tabs__btn {
  padding: var(--space-2) var(--space-5);
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--maxx-text-muted);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-base);
}

.filter-tabs__btn:hover { border-color: rgba(var(--maxx-primary-rgb), 0.3); color: var(--maxx-text); }
.filter-tabs__btn.active { background: var(--gradient-brand); border-color: transparent; color: var(--surface-0); font-weight: 600; }

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  background: var(--gradient-surface);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.carousel__viewport { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.carousel__track { display: flex; height: 100%; transition: transform var(--duration-slow) var(--ease-smooth); }
.carousel__slide { min-width: 100%; display: flex; align-items: center; justify-content: center; background: var(--gradient-surface); }
.carousel__slide img { width: 100%; height: 100%; object-fit: contain; transition: transform var(--duration-slow) var(--ease-smooth); }
.carousel:hover .carousel__slide.active img { transform: scale(1.03); }

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all var(--duration-base);
  color: var(--maxx-text);
  opacity: 0;
  backdrop-filter: blur(4px);
}

.carousel:hover .carousel__nav { opacity: 1; }
.carousel__nav:hover { background: var(--maxx-primary); color: var(--surface-0); transform: translateY(-50%) scale(1.1); }
.carousel__nav-prev { left: var(--space-4); }
.carousel__nav-next { right: var(--space-4); }

.carousel__dots {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 20;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--duration-base);
  padding: 0;
}

.carousel__dot:hover { background: rgba(255, 255, 255, 0.6); }
.carousel__dot.active { background: var(--maxx-primary); width: 24px; border-radius: var(--radius-xs); }

/* ===== ANIMATIONS ===== */
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-down { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scale-in { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.animate-fade-in { animation: fade-in var(--duration-slow) var(--ease-smooth); }
.animate-fade-up { animation: fade-up var(--duration-slow) var(--ease-smooth); }
.animate-fade-down { animation: fade-down var(--duration-slow) var(--ease-smooth); }
.animate-scale-in { animation: scale-in var(--duration-slow) var(--ease-smooth); }

/* Animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Scroll animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all var(--duration-slower) var(--ease-smooth); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered reveal */
.stagger > * { opacity: 0; transform: translateY(20px); transition: all var(--duration-slow) var(--ease-smooth); }
.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* Hover animations */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.animate-float { animation: float 6s ease-in-out infinite; }

/* Scroll tracks */
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.scroll-track { display: flex; gap: var(--space-8); animation: scroll-left 40s linear infinite; }
.scroll-track:hover { animation-play-state: paused; }

/* ===== SCROLLING CONTENT ===== */
.scroll-wrapper { overflow: hidden; position: relative; }
.scroll-content {
  display: flex;
  gap: var(--space-8);
  padding: var(--space-8) 0;
  cursor: grab;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.scroll-content:active { cursor: grabbing; }
.scroll-content--auto { animation: scroll-left 40s linear infinite; }

/* ===== TESTIMONIALS ===== */
.testimonial {
  flex-shrink: 0;
  width: 400px;
  padding: var(--space-8);
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  transition: all var(--duration-base) var(--ease-smooth);
}

.testimonial:hover { transform: translateY(-5px); border-color: rgba(var(--maxx-primary-rgb), 0.3); }

.testimonial__stars { display: flex; gap: 4px; margin-bottom: var(--space-4); color: var(--maxx-primary); }
.testimonial__text { font-size: var(--text-lg); line-height: var(--leading-relaxed); margin-bottom: var(--space-6); font-style: italic; }

.testimonial__author { display: flex; align-items: center; gap: var(--space-4); }
.testimonial__avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--gradient-brand); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: var(--text-lg); color: var(--surface-0); }
.testimonial__name { font-weight: 600; font-size: var(--text-lg); margin-bottom: var(--space-1); }
.testimonial__role { font-size: var(--text-base); color: var(--maxx-text-muted); }

@media (max-width: 768px) { .testimonial { width: 85vw; max-width: 350px; } }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: var(--maxx-text-muted);
  text-decoration: none;
  transition: color var(--duration-base);
}

.breadcrumb a:hover, .breadcrumb a.active { color: var(--maxx-primary); }
.breadcrumb__sep { color: var(--maxx-text-muted); font-size: 0.7em; }

/* ===== FEATURE LIST ===== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.feature-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--maxx-primary-rgb), 0.15), rgba(var(--maxx-accent-rgb), 0.1));
  border-radius: var(--radius-lg);
  color: var(--maxx-primary);
  font-size: var(--text-xl);
}

.feature-item__content h4 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.feature-item__content p {
  font-size: var(--text-base);
  color: var(--maxx-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Feature check list */
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  list-style: none;
  padding-left: 0;
  margin: 0;
}

@media (max-width: 576px) { .check-list { grid-template-columns: 1fr; } }

.check-list__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--maxx-text-light);
}

.check-list__item i { color: var(--maxx-success); font-size: var(--text-sm); }

/* ===== PRODUCT INFO ===== */
.product-info { padding: var(--space-6) 0; }

.product-info__header { margin-bottom: var(--space-8); }

.product-info__name {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-2);
}

.product-info__tagline {
  font-size: var(--text-lg);
  color: var(--maxx-text-muted);
  line-height: var(--leading-relaxed);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin: 0 auto var(--space-12);
}

.section-header .tag { margin-bottom: var(--space-4); }

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  margin-bottom: var(--space-4);
}

.section-header__subtitle {
  font-size: var(--text-lg);
  color: var(--maxx-text-muted);
  line-height: var(--leading-relaxed);
}

/* ===== IMAGE GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-grid-6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 992px) { .gallery-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid-6 { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
  opacity: 0;
  transition: opacity var(--duration-base);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay span {
  font-weight: 600;
  font-size: var(--text-base);
  color: #fff;
}

.gallery-item__overlay span a {
  color: var(--maxx-primary);
  text-decoration: underline;
}

.gallery-item__overlay span a:hover {
  color: #fff;
}

.gallery-item__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maxx-text);
  font-size: var(--text-lg);
  opacity: 0;
  transition: all var(--duration-base);
}

.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ===== SHOP SECTION ===== */
.shop-section {
  padding: var(--space-24) 0;
  background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-3) 100%);
}

.shop-section__inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-subtle);
}

@media (max-width: 768px) { .shop-header { flex-direction: column; } }

.shop-header__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
}

.shop-header__title .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-header__subtitle {
  font-size: var(--text-lg);
  color: var(--maxx-text-muted);
  margin-top: var(--space-2);
}

/* Trust badges / Feature highlights */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--maxx-text-muted);
}

.trust-badge i {
  font-size: var(--text-lg);
  color: var(--maxx-primary);
  filter: drop-shadow(0 0 6px rgba(var(--maxx-primary-rgb), 0.5));
}

.trust-badge span {
  font-weight: 500;
  letter-spacing: 0.02em;
}


/* Shop bottom CTA */
.shop-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding: var(--space-8);
  background: var(--gradient-surface);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-subtle);
}

@media (max-width: 768px) { .shop-bottom { flex-direction: column; text-align: center; } }

.shop-bottom__text {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.shop-bottom__text i { font-size: var(--text-2xl); color: var(--maxx-primary); }
.shop-bottom__text h4 { font-family: var(--font-body); font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-1); }
.shop-bottom__text p { font-size: var(--text-base); color: var(--maxx-text-muted); margin: 0; }

/* ===== FLOATING BUTTON ===== */
.floating-btn {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-base) var(--ease-smooth);
}

.floating-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.floating-btn a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--gradient-brand);
  color: var(--surface-0);
  font-weight: 700;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-glow-lg);
  transition: all var(--duration-base);
}

.floating-btn a:hover { transform: scale(1.05); box-shadow: var(--shadow-glow-lg), var(--shadow-xl); }

@media (max-width: 768px) {
  .floating-btn { bottom: var(--space-4); right: var(--space-4); left: var(--space-4); }
  .floating-btn a { justify-content: center; width: 100%; }
}

/* ===== BANNER / NOTICE ===== */
.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  background: var(--gradient-brand);
  text-align: center;
}

.banner a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--surface-0);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--duration-base);
}

.banner a:hover { transform: translateX(3px); }
.banner strong { font-weight: 700; }

/* ===== SOCIAL SHARE ===== */
.social-share {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  margin-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

.social-share span { font-size: var(--text-sm); color: var(--maxx-text-muted); }

.social-share ul {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface-6);
  border-radius: 50%;
  color: var(--maxx-text-muted);
  font-size: var(--text-base);
  transition: all var(--duration-base);
}

.social-share a:hover { background: var(--maxx-primary); color: var(--surface-0); transform: translateY(-3px); }

/* ===== COMPARE CTA ===== */
.compare-cta {
  text-align: center;
  padding: var(--space-16) var(--space-6);
  background: linear-gradient(135deg, var(--surface-4) 0%, var(--surface-2) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.compare-cta__content { max-width: 600px; margin: 0 auto; }

.compare-cta h3 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.compare-cta p {
  font-size: var(--text-lg);
  color: var(--maxx-text-muted);
  margin-bottom: var(--space-8);
}

/* ===== PRODUCT SHOWCASE ===== */
.showcase {
  padding: var(--space-16) var(--space-6);
  max-width: var(--container-xl);
  margin: 0 auto;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

@media (max-width: 991px) { .showcase__grid { grid-template-columns: 1fr; gap: var(--space-8); } }

/* Gallery sticky */
.showcase__gallery { position: sticky; top: calc(var(--header-height) + var(--space-8)); }
@media (max-width: 991px) { .showcase__gallery { position: static; } }

/* Carousel enhancements */
.carousel__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: var(--gradient-brand);
  color: var(--surface-0);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  border-radius: var(--radius-sm);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.carousel__counter {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2) var(--space-3);
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--maxx-text-muted);
  z-index: 10;
}

/* Carousel thumbnails */
.carousel-thumbs {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.carousel-thumb {
  flex: 1;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--duration-base);
  background: var(--surface-4);
}

.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity var(--duration-base); }
.carousel-thumb:hover img { opacity: 0.8; }
.carousel-thumb.active { border-color: var(--maxx-primary); }
.carousel-thumb.active img { opacity: 1; }

/* ===== LEGACY ALIASES ===== */
/* Backward compatibility with existing .maxx-* markup */
.maxx-page { font-family: var(--font-body); background: var(--surface-1); color: var(--maxx-text); min-height: 100vh; margin-top: var(--header-height); }
@media (max-width: 991px) { .maxx-page { margin-top: var(--header-height-mobile); } }
.maxx-page h1, .maxx-page h2, .maxx-page h3, .maxx-page h4 { font-family: var(--font-display); letter-spacing: var(--tracking-wide); }
