/* ============================================
   TFS Marine Frontend Styles
   Developed by staycreative.es 2025
   ============================================ */

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. CSS Variables & Fonts
   2. Reset & Base Styles
   3. Typography
   4. Buttons
   5. Forms
   6. Navigation & Header
   7. Hero Section
   8. Home Page Sections
      - Products Section
      - Offers Section
      - About Section
      - Experts Section
      - Values Strip
      - Collections Section
   9. Flatpages
   10. Shop & Products
   11. Product Cards & Hover Panel
   12. Cart & Checkout
   13. Footer
   14. Modals & Dropdowns
   15. Icons
   16. Notifications & Alerts
   17. Utilities & Helpers
   18. Cookies
   19. Preloader
   20. Media Queries
   ============================================ */

/* ============================================
   1. CSS VARIABLES & FONTS
   ============================================ */
@font-face {
  font-family: 'Switzer-Variable';
  src: url('../../fonts/Switzer-Variable.woff2') format('woff2'),
       url('../../fonts/Switzer-Variable.woff') format('woff'),
       url('../../fonts/Switzer-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
::selection {
  color: white;
  background-color: #000;
}

html, body {
  font-family: 'Switzer-Variable';
  font-optical-sizing: auto;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000000;
  background-color: #fff;
  overflow-x: hidden;
  max-width: 100%;
}

/* UIKit Overrides */
.uk-link:hover, a:hover {
  text-decoration: none;
}

*+.uk-hr, *+hr {
  margin-top: 5px;
  margin-bottom: 15px;
}

ul {
  padding-left: 0px;
}

ul li {
  list-style-type: none;
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.6;
}

.post ul li {
  text-decoration: initial !important;
}

a {
  -webkit-transition: ease-in-out, .0s ease-in-out;
  transition: ease-in-out, .0s ease-in-out;
  word-wrap: break-word;
  color: #000;
}

a:hover {
  color: #000;
}

a span {
  display: inline-block;
}

small {
  font-weight: 400 !important;
}

:focus {
  outline: none;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
p, div {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Switzer-Variable';
  font-optical-sizing: auto;
  color: #000000;
  margin-bottom: 0;
  margin-top: 0px;
}

h1 {
  font-size: 3rem;
  line-height: 1;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-family: 'Switzer-Variable';
  font-optical-sizing: auto;
}

.text-serif {
  font-family: 'Switzer-Variable';
  font-optical-sizing: auto;
}

.text-sans {
  font-family: 'Switzer-Variable';
}

.uk-text-black {
  font-weight: 900;
}

/* Heading Sizes */
.uk-heading-xsmall {
  font-size: 1.2rem !important;
  margin: 0;
  line-height: 1.3;
  font-family: 'Switzer-Variable';
}

.uk-heading-small {
  font-size: 1.4rem !important;
  margin: 0;
  line-height: 1.3;
  font-family: 'Switzer-Variable';
}

.uk-heading-medium {
  font-size: 1.8rem !important;
  margin: 0;
  line-height: 1.3;
  font-family: 'Switzer-Variable';
}

.uk-heading-large {
  font-size: 3rem !important;
  margin: 0;
  line-height: 1.3;
  font-family: 'Switzer-Variable';
}

.uk-heading-xlarge {
  font-size: 5rem !important;
  margin: 0;
  line-height: 1.3;
  font-family: 'Switzer-Variable';
}

.uk-heading-xsmall p {
  font-size: 1.2rem !important;
  margin: 0;
  line-height: 1.3;
  font-family: 'Switzer-Variable';
}

.uk-heading-small p {
  font-size: 1.4rem !important;
  margin: 0;
  line-height: 1.3;
  font-family: 'Switzer-Variable';
}

.uk-heading-medium p {
  font-size: 1.8rem !important;
  margin: 0;
  line-height: 1.3;
  font-family: 'Switzer-Variable';
}

.uk-heading-large p {
  font-size: 3rem !important;
  margin: 0;
  line-height: 1.3;
  font-family: 'Switzer-Variable';
}

.uk-heading-xlarge p {
  font-size: 5rem !important;
  margin: 0;
  line-height: 1.3;
  font-family: 'Switzer-Variable';
}

/* Text Utilities */
.ellipsis-two {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-three {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-two p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-three p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uk-text-bold p {
  font-weight: 700;
}

.uk-text-medium {
  font-weight: 600 !important;
}

.uk-text-large {
  font-size: 1.5rem;
  line-height: 1.4;
}

.uk-text-large p {
  font-size: 1.5rem;
  line-height: 1.4;
}

/* ============================================
   4. BUTTONS
   ============================================ */
button {
  font-family: 'Switzer-Variable';
  font-optical-sizing: auto;
}

.uk-button {
  font-family: 'Switzer-Variable';
  font-optical-sizing: auto;
  font-weight: 500;
  border: 0;
  line-height: 1.5;
  text-transform: inherit;
  font-size: 1rem;
  -webkit-appearance: none !important;
  -webkit-transition: ease-in-out, .30s ease-in-out;
  transition: ease-in-out, .30s ease-in-out;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
}

.uk-button-default {
  position: relative;
  background-color: white !important;
  color: #000 !important;
  border: 1px solid white;
}

.uk-button-default:hover {
  position: relative;
  background-color: #000 !important;
  color: white !important;
  border: 1px solid #000;
}

.uk-button-priamry {
  position: relative;
  background-color: white !important;
  color: #00E0C5 !important;
  border: 1px solid white;
}

.uk-button-priamry:hover {
  position: relative;
  background-color: #00E0C5 !important;
  color: white !important;
  border: 1px solid #000;
}

.uk-button-secondary {
  position: relative;
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #000;
}

.uk-button-secondary:hover {
  position: relative;
  background-color: #00E0C5 !important;
  color: #000 !important;
  border: 1px solid #00E0C5;
}

.uk-button-tertiary {
  position: relative;
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #000;
}

.uk-button-tertiary:hover {
  position: relative;
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #fff;
}

.uk-button-cart {
  padding: 5px 10px !important;
  background-color: #00E0C5 !important;
  color: white !important;
  font-size: 0.9rem;
}

.uk-button-cart:hover {
  background-color: #000 !important;
  color: white !important;
}

.uk-button-cart .uk-icon {
  margin-right: 7px;
  bottom: 2px;
  position: relative;
}

/* Backorder / Pre-order styles */
.uk-button-backorder {
  padding: 5px 10px !important;
  background-color: #2563eb !important;
  color: white !important;
  font-size: 0.9rem;
}

.uk-button-backorder:hover {
  background-color: #1d4ed8 !important;
  color: white !important;
}

.uk-button-backorder .uk-icon {
  margin-right: 7px;
  bottom: 2px;
  position: relative;
}

.uk-badge-backorder {
  background-color: #2563eb !important;
  color: white !important;
}

.uk-button-view {
  padding: 5px 10px !important;
  background-color: #000 !important;
  color: white !important;
  font-size: 0.9rem;
}

.uk-button-view:hover {
  background-color: #595959 !important;
  color: white !important;
}

.uk-button-view .uk-icon {
  margin-right: 7px;
  bottom: 2px;
  position: relative;
}

.uk-button-primary {
  position: relative;
  background-color: transparent !important;
  color: #fff !important;
  padding: 5px;
  text-decoration: none;
}

.uk-button-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #fff;
  transition: width 0.4s ease;
}

.uk-button-primary::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 100%;
  transform: translateX(-5px);
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 0%;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.uk-button-primary:hover::after {
  width: 0;
}

.uk-button-primary:hover::before {
  transform: translateX(0);
  opacity: 0;
}

#button-italic {
  display: inline-block;
  min-width: max-content;
  font-style: normal;
  border: 1px solid #000;
  width: calc(100% - 100px);
  padding: 5px 0px;
}

#button-italic span {
  width: 100%;
}

#button-italic span.italic-effect {
  font-style: italic;
}

/* ============================================
   5. FORMS
   ============================================ */
.form {
  position: relative;
}

.form input[type=text],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form input[type=search],
.form select,
.form textarea {
  min-height: 40px;
  margin-top: 0px !important;
  padding: 5px 10px;
  border: 0;
  border-bottom: 1px solid #000;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0px;
  margin-bottom: 6px;
  color: #000000 !important;
  font-size: 1rem;
  height: auto;
  font-family: 'Switzer-Variable';
  font-optical-sizing: auto;
}

.form .uk-select:not([multiple]):not([size]) {
  background-color: #fff;
  background-image: none;
  color: white !important;
}

.uk-select:not([multiple]):not([size]) option {
  background-color: white !important;
  color: white !important;
}

.bg-select-white:focus {
  background-color: white !important;
  color: white !important;
}

.form p {
  color: white;
}

.form input[type=text]::placeholder,
.form input[type=email]::placeholder,
.form input[type=number]::placeholder,
.form select,
.form textarea::placeholder {
  color: #595959 !important;
}

.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=number]:focus,
.form textarea:focus,
.form select:focus {
  background-color: transparent !important;
  color: #000000 !important;
}

.form select {
  padding-right: 30px;
}

.form textarea {
  margin-bottom: 10px;
  padding: 10px;
  color: white;
}

.form input::-webkit-input-placeholder,
.form input:-moz-placeholder,
.form input::-moz-placeholder,
.form input:-ms-input-placeholder,
.form textarea::-webkit-input-placeholder,
.form textarea:-moz-placeholder,
.form textarea::-moz-placeholder,
.form textarea:-ms-input-placeholder {
  color: #595959 !important;
  font-size: 0.7rem !important;
}

.form small {
  color: white;
}

.form .uk-checkbox {
  border-color: #000 !important;
  border-radius: 20px;
}

.form .uk-checkbox:focus,
.form .uk-radio:focus {
  border-color: #000 !important;
}

.form .uk-checkbox:checked,
.form .uk-checkbox:checked:focus {
  background-color: #000;
}

.form .uk-radio-label {
  font-size: 0.8rem;
  cursor: polarken;
}

.form .uk-radio:checked,
.form .uk-radio:checked:focus {
  background-color: #000;
}

.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus
.form textarea:-webkit-autofill,
.form textarea:-webkit-autofill:hover
.form textarea:-webkit-autofill:focus,
.form select:-webkit-autofill,
.form select:-webkit-autofill:hover,
.form select:-webkit-autofill:focus {
  color: #171919;
  font-family: 'Switzer-Variable';
  font-optical-sizing: auto;
}

.form input[type=text]::placeholder,
.form input[type=email]::placeholder,
.form input[type=number]::placeholder,
.form select,
.form textarea::placeholder {
  color: #595959 !important;
  font-size: 0.8rem !important;
}

form, input:focus::placeholder {
  color: #000;
}

.uk-input,
.uk-select:not([multiple]):not([size]) {
  border-radius: 5px;
}

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  border-color: #00E0C5;
}

/* ============================================
   6. NAVIGATION & HEADER
   ============================================ */
header {
    height: 130px;
    /* background: #f8f8f8; */
    background: #ffffff;
}

.uk-navbar {
  height: 80px;
  background-color: transparent;
}

.uk-navbar-container {
  padding-left: 30px;
  padding-right: 30px;
}

.uk-navbar ul li a {
  color: #000;
  font-size: 1rem;
}

.uk-navbar ul li.uk-active a {
  color: #009383;
}

.uk-navbar ul li a:hover {
  color: #009383;
}

.uk-navbar ul li a:hover span {
  background-color: #00E0C5;
  color: #000;
}

.uk-navbar ul li.menu-icons {
  -webkit-appearance: none !important;
  -webkit-transition: ease-in-out, .30s ease-in-out;
  transition: ease-in-out, .30s ease-in-out;
}

.user-initial-badge {
    padding-top: 10px !important;
}

.uk-navbar .uk-badge {
    padding: 10px 5px;
    background: #00E0C5;
    color: #000 !important;
    top: 15px;
    position: absolute;
    left: 22px;
    padding-top: 0px;
    width: max-content;
    /* display: flow; */
}


/* BACKEND */
.uk-modal-page .uk-modal-title {font-size: 1.6rem !important; font-weight: 500;}
.uk-modal-page .uk-legend {font-size: 1.2rem !important;}

.backend .uk-checkbox:checked, .backend .uk-checkbox:indeterminate, .backend .uk-radio:checked {background-color: #00E0C5;}
.backend.checkout.info .address-card .uk-grid-margin {margin-top: 5px !important;}
.backend .uk-card-primary {background-color: #aeadad;}
.backend .uk-text-primary {color: #000 !important;}
.backend .uk-badge.uk-badge-warning {background-color: #faa05a;}
.backend .uk-badge.uk-badge-succes {background-color: #32d296;}
.backend .intro-section {padding-bottom: 30px;}
.backend .uk-button.uk-button-text.uk-text-danger {width: auto; margin-left: 40px; margin-right: 40px; padding-left: 0;}

/* END BACKEND */

/* ========================================
   CHECKOUT IMPROVED STYLES
   Compact checkout design with reduced vertical space
   ======================================== */

/* Common Compact Card Styles */
.compact-card {
    padding: 20px !important;
    margin-bottom: 20px !important;
    border-radius: 10px;
}

.compact-card .uk-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

.compact-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.compact-meta {
    font-size: 13px;
    line-height: 1.3;
}

/* Info Row Styles (Horizontal Label-Value Display) */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row-label {
    font-size: 13px;
    color: #595959;
    min-width: 80px;
}

.info-row-value {
    font-size: 13px;
    font-weight: 600;
    flex: 1;
}

.info-label {
    color: #595959;
    font-size: 13px;
    font-weight: 500;
}

.info-value {
    color: #000;
    font-size: 13px;
    text-align: right;
    max-width: 60%;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

/* Buttons */
.edit-btn {
    padding: 4px 12px;
    font-size: 12px;
    text-transform: none;
}

.compact-action-btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Address Cards */
.compact-address-card {
    padding: 12px;
    background: #f8f8f8;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.compact-address-card:hover {
    border-color: #00E0C5;
    box-shadow: 0 2px 8px rgba(0, 224, 197, 0.1);
}

/* Form Elements */
.compact-form-group {
    margin-bottom: 12px;
}

.compact-form-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.compact-input {
    font-size: 14px;
    padding: 6px 10px;
    height: 36px;
}

.compact-modal-body {
    padding: 20px;
}

.compact-fieldset {
    margin-bottom: 16px;
}

.compact-legend {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Shipping Options */
.compact-shipping-option {
    padding: 12px !important;
    margin-bottom: 8px !important;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #e5e5e5;
}

.compact-shipping-option:hover {
    border-color: #00E0C5;
    background-color: #f8f8f8;
}

.compact-shipping-option input[type="radio"]:checked + .shipping-content {
    border-left: 3px solid #00E0C5;
    padding-left: 9px;
}

.shipping-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.shipping-info {
    flex: 1;
}

.shipping-price {
    font-size: 15px;
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

.shipping-option-name {
    font-size: 15px;
    font-weight: 600;
}

/* Payment Options */
.payment-option {
    padding: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid #e5e5e5;
}

.payment-option:hover {
    border-color: #00E0C5;
}

.payment-option.selected {
    border-color: #00E0C5;
    background-color: #f0fffe;
}

/* Product List in Checkout/Cart */
.product-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-row:last-child {
    border-bottom: none;
}

.product-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.compact-product-img {
    border-radius: 6px;
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.product-meta {
    font-size: 12px;
    color: #595959;
}

.product-price {
    text-align: right;
    font-weight: 600;
}

/* Cart Specific */
.cart-item-compact {
    padding: 12px 0;
}

.cart-item-compact:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

.compact-qty-btn {
    min-width: 28px;
    height: 28px;
    padding: 0;
}

.compact-separator {
    margin: 12px 0;
}

/* Sticky Summary */
.sticky-summary {
    position: sticky;
    top: 20px;
}

/* END CHECKOUT IMPROVED STYLES */



/* Breadcrumbs */
.uk-breadcrumb {margin-bottom: 0 !important;}
.uk-breadcrumb li a,
.uk-breadcrumb li span {
  font-size: 0.7rem;
  text-transform: uppercase;
}

.uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
  margin: -1px 10px 0;
  vertical-align: middle;
}

/* Dropdown */
.uk-drop.uk-open {
  border-radius: 0px;
  z-index: 1111;
  background-color: #F7F6EF;
  width: max-content;
  top: 80px !important;
}

.uk-navbar-dropdown-nav>li>a {
  font-size: 0.9rem;
  font-weight: 400;
  color: #000;
}

.uk-navbar-nav>li>a {
  text-transform: initial;
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
  transition: .0s ease-in-out;
}

.langs .uk-navbar-nav>li>a {
  font-weight: 400 !important;
}

.uk-navbar-nav .uk-icon.icon-menu {
  border: 1px solid #000;
  padding: 5px;
  border-radius: 5px;
  color: #000;
}

.uk-navbar-right {
  padding-left: 30px;
  padding-right: 30px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 8%);
}

.uk-navbar-nav>li.uk-active>a {
  font-weight: 700;
}

.uk-navbar-dropdown-nav>li>a.uk-active {
  color: #00E0C5;
}

/* Menu */
.user-menu {
  gap: 15px;
  margin-left: 20px;
}

.uk-navbar-container {
  position: relative;
  z-index: 980;
}

.uk-sticky.uk-active .hide-on-navbar-active {
  display: none !important;
}

.uk-navbar-container.uk-sticky.uk-active .uk-navbar-center {
  display: none;
}

.uk-navbar-container.uk-sticky.uk-active .uk-container-full {
        width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
}

.uk-navbar-container.uk-sticky.uk-active .uk-navbar-right {box-shadow: none;}
.uk-navbar-container.uk-sticky.uk-active .uk-navbar-right .uk-margin-right {margin-right: 0px !important;}

.uk-navbar-container:not(.uk-navbar-transparent) {
  background-color: transparent !important;


}

/* Logo blanco sobre hero (antes del scroll) */
.uk-navbar-container:not(.uk-active) .uk-navbar-left img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

/* Logo normal sobre fondo blanco (después del scroll) */
.uk-navbar-container.uk-sticky.uk-active .uk-navbar-left img {
  filter: none;
}

.uk-navbar-container.uk-sticky.uk-active {
     background-color: white !important;
         box-shadow: 0 2px 8px rgb(0 0 0 / 8%);
         padding-right: 0;
}



.uk-navbar-container .container-products {
  background-color: red;
}

.uk-navbar-dropdown.products {
  top: -60px !important;
  z-index: 0;
}

.uk-navbar-nav>li:hover>a,
.uk-navbar-nav>li>a[aria-expanded=true] {
  color: #000;
}

/* Offcanvas Menu */
.uk-navbar-toggle {
  width: 40px;
  color: white;
}

.uk-navbar-toggle:hover {
  color: #00E0C5;
}

.uk-navbar-toggle svg {
  width: 30px;
}

#offcanvas-menu .uk-offcanvas-bar {
  padding: 50px;
  background-color: #000;
}

#offcanvas-menu .uk-offcanvas-bar .uk-nav-primary>li>a {
  color: white;
  font-size: 1.6rem;
}

#offcanvas-menu .uk-offcanvas-bar .uk-nav-primary>li>a:hover {
  color: #00E0C5;
}

#offcanvas-menu  ul li a {color: white !important; font-size: 1.1rem;}
#offcanvas-menu  ul li a:hover {color: #00E0C5 !important;}


.fi-sidebar-nav *:not(svg):not(path) {color: #000 !important;}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 70vh;
    overflow: hidden;
    margin-top: -130px;
}



.hero-section .uk-slider-items>* {
  height: 60vh;
}

.hero-section .text {
  position: absolute;
  bottom: 0vh;
}


/* Hero Slider Navigation */
.hero-nav-arrow {
  color: white;
  transition: all 0.3s ease;
}

.hero-nav-arrow:hover {
  color: #00E0C5;
  transform: scale(1.1);
}

.hero-section .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 80%;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Fallback backgrounds for WCAG contrast */
.hero-section {
  background-color: #0a1628;
}

.section-contact .uk-background-cover {
  background-color: #1a1a2e;
}

.section-contact .white,
.section-contact h2 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  z-index: 2;
}

/* ============================================
   8. HOME PAGE SECTIONS
   ============================================ */

/* Main Container */
.uk-container-full {
  width: calc(100% - 60px);
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 30px;
}

.container-section {
  padding-left: 30px;
  padding-right: 30px;
}

.home-photo {
  transition: opacity 0.1s ease;
  opacity: 1;
  bottom: 30px;
  right: 30px;
  position: fixed;
}

.home-photo.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Home Typography */
.home h1 {
  font-size: 3.4rem;
}

/* Cursor Animation */
.cursor {
  position: relative;
  width: 24em;
  margin: 0 auto;
  font-size: 30px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}

.typewriter-animation {
  animation: typewriter 5s steps(50) 1s 1 normal both, blinkingCursor 500ms steps(50) infinite normal;
}

.typewriter-animation-second {
  animation: typewriter 5s steps(50) 3s 1 normal both, blinkingCursor 500ms steps(50) infinite 3s normal;
}

.typewriter-animation-third {
  opacity: 0;
  animation: fadeIn 1s ease-in-out 7s forwards;
}

.typewriter-animation-second .blinking-underscore {
  animation: blink-underscore 1s step-end infinite;
}

@keyframes blink-underscore {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blinkingCursor {
  from { border-right-color: rgba(255,255,255,.75); }
  to { border-right-color: transparent; }
}

/* Card Styles */
.uk-card-default .uk-card-title {
  font-size: 1.3rem !important;
}

/* Video Styles */
.plyr--video {
  height: 50vh;
}

.block-ind.video {
  height: 50vh;
}

.block-ind.video video {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

.video-full-height {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  display: block;
}


.uk-slidenav { padding: 5px 10px; color: rgba(102, 102, 102, .5); transition: color .1s  ease-in-out; background-color: rgba(0, 0, 0, .6); border-radius: 5px; color: white;
}
.uk-slidenav:hover {color: white;background-color: rgba(0, 0, 0, .8);}
/* Container Arrows */
.container-arrows {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
}

.container-arrows .uk-slidenav {
  color: rgba(00, 00, 00, .8);
}

.container-arrows .uk-slidenav:hover {
  color: rgba(00, 00, 00, .3);
}

.container-arrows .uk-position-center-left {
  margin-left: 30px;
}

.text-block {
  padding: 40px;
}

.uk-text-muted,
.uk-text-meta {
  color: #595959 !important;
}

/* Variant Modal */
#variant-modal .uk-modal-dialog {
  position: absolute !important;
  right: 5vh !important;
  top: 5vh !important;
  height: auto !important;
  width: 440px !important;
  max-width: 90vw !important;
  margin: 0 !important;
  border-radius: 20px !important;
  overflow-y: auto;
}

#variant-modal .uk-accordion-content {
  margin-top: 0;
}

#variant-modal .uk-accordion-content p,
#variant-modal .uk-accordion-content div {
  font-size: 0.9rem !important;
}

#variant-modal .uk-accordion-content .uk-list.uk-list-disc {
    margin-left: 0px !important;
    margin-top: 10px !important;
}

#variant-modal .uk-accordion-content .uk-list.uk-list-disc>*>ul, #variant-modal .uk-accordion-content .uk-list.uk-list-disc>:nth-child(n+2) {margin-top: 5px;}

/* Products Section */
.home .products-section .uk-slider-container {
  padding: 15px;
}

.home .products-section .slider-container-arrows {
  position: absolute;
  width: 80px;
  height: 50px;
  top: -40px;
  right: 25px;
}

.home .products-section .slider-container-arrows .uk-position-top-left {
  background-color: #E9E7E2 !important;
  border-radius: 5px;
  padding: 6px 10px;
  color: #000;
}

.home .products-section .slider-container-arrows .uk-position-top-right {
  background-color: #E9E7E2 !important;
  border-radius: 5px;
  padding: 6px 10px;
  color: #000;
}

.home .products-section .product-ind.uk-slideshow-items {
  aspect-ratio: 3 / 5 !important;
  background: #E9E7E2;
}

.home .products-section .product-ind.uk-slideshow-items li {
  background: #E9E7E2;
}

.home .products-section .product-ind.uk-slideshow-items img {
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}

.home .products-section .product-ind.uk-slideshow-items li > div {
  background-color: #E9E7E2 !important;
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  padding-bottom: 20px;
}

.home .products-section .product-ind.uk-slideshow-items li > div[data-src] {
  background-color: #E9E7E2 !important;
}

.home .products-section .logo-product {
  padding: 0 !important;
  margin: 0;
  left: 30px;
  top: 30px;
}

/* Offers Section */
.home .offers-section {
  padding: 60px 0;
}

.home .offers-section .offer-card {
  position: relative;
  background: rgb(236 235 234);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home .offers-section .offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 10px rgba(0,0,0,0.15);
}

.home .offers-section .offer-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgb(236 235 234);
}

.home .offers-section .product-ind.uk-slideshow-items {
  aspect-ratio: 3 / 4 !important;
  background: transparent;
}

.home .offers-section .product-ind.uk-slideshow-items li {
  background: transparent;
}

.home .offers-section .product-ind.uk-slideshow-items img {
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.1) brightness(1.05);
}

.home .offers-section .offer-discount-badge {
  display: inline-block;
  background: #00E0C5;
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 4px;
}

.home .offers-section .offer-overlay {
  background: rgba(93, 217, 193, 0.95);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 30px;
  pointer-events: none;
}

.home .offers-section .offer-card:hover .offer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.home .offers-section .offer-overlay h3 {
  color: #fff;
  margin: 0;
}

.home .offers-section .offer-prices {
  color: #fff;
}

.home .offers-section .offer-price-old {
  text-decoration: line-through;
  color: #767676;
}

.home .offers-section .offer-price-new {
  color: #fff;
  font-size: 1.5rem;
}

/* Global price styles */
.offer-price-old {
  text-decoration: line-through;
  font-size: 0.875rem;
  color: #767676;
}

.offer-price-new {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
}

.home .offers-section .offer-stock-badge {
  display: inline-block;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
}

.home .offers-section .offer-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.home .offers-section .offer-btn:hover {
  background-color: #fff;
  color: #000;
}

/* About Section */
.home .about-section {
  background: #fff;
}

.home .about-section .about-content {
  padding: 60px 80px;
  max-width: 100%;
  background-color: white;
  margin-left: -5vh;
  position: relative;
  z-index: 0;
}

.home .about-section .about-title {
  font-size: 7rem;
  font-weight: 900;
  color: #009383;
  line-height: 1;
  margin-bottom: -30px;
  text-transform: uppercase;
  font-family: 'Switzer-Variable';
}

.home .about-section .about-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 15px;
}

.home .about-section .about-description {
  color: #595959;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1rem;
}

.home .about-section .about-description p {
  color: #595959;
  line-height: 1.8;
  margin-bottom: 10px;
}

.home .about-section .uk-button-default {
  background: #000;
  color: #fff;
  padding: 15px 35px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 0;
  border: none;
  transition: background 0.3s ease;
}

.home .about-section .uk-button-default:hover {
  background: #00E0C5;
  color: #000;
}

/* Experts Section */
/* .home .experts-section {
  padding: 80px 0;
} */

.home .experts-section .experts-content {
  padding: 20px 0;
}

.home .experts-section .experts-content .bg-primary {
  padding: 10vh;
  padding-right: 15vh;
  margin-right: -10vh;
}

.home .experts-section .experts-content .bg-primary h2,
.home .experts-section .experts-content .bg-primary h3,
.home .experts-section .experts-content .bg-primary h4 {
  color: #000 !important;
}

.home .experts-section .experts-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'Switzer-Variable';
  padding-left: 40px;
  margin-bottom: -80px;
}

.home .experts-section .experts-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 15px;
}

.home .experts-section .experts-description {
  color: #595959;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1rem;
}

.home .experts-section .experts-description p {
  color: #595959;
  line-height: 1.8;
  margin-bottom: 10px;
}

.home .experts-section .experts-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values Strip - Infinite Carousel */
.values-strip {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.values-carousel {
  width: 100%;
  overflow: hidden;
}

.values-track {
  display: flex;
  width: fit-content;
  animation: scroll-infinite 20s linear infinite;
}

.values-track:hover {
  animation-play-state: paused;
}

.values-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Switzer-Variable';
  color: #000;
}

.values-text span {
  color: #009383;
  margin: 0 20px;
  font-size: 4rem;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Collections Section */
.collections-section {
  background-color: #f8f8f8;
}

.collection-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border-radius: 8px;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.collection-image {
  position: relative;
  overflow: hidden;
}

.collection-image img {
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.1);
}

.collection-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.collection-card:hover .collection-overlay {
  opacity: 0.95;
}

.collection-overlay h3 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.collection-card:hover .collection-overlay h3 {
  transform: translateY(-5px);
}

/* ============================================
   9. FLATPAGES
   ============================================ */
.flatpage .hero-section {
  position: relative;
  height: 70vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: -160px;
}

.flatpage .blocks-about .text-right {
  margin-left: -10vh;
  padding: 10vh 5vh;
}

.flatpage .blocks-about .text-left {
  margin-right: -10vh;
  padding: 10vh 5vh;
  z-index: 1;
  position: relative;
}

.flatpage .blocks-about .first-block .text-right {
  width: 70%;
}

.flatpage .blocks-about .second-block .bg-primary {
  width: 60%;
  float: right;
}

.flatpage .blocks-about .third-block .bg-grey {
  padding-top: 20vh;
  padding-bottom: 30vh;
  margin-top: -20vh;
}

.flatpage .blocks-about .third-block h3 {
  font-size: 12vw;
  width: 100vw;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  margin-left: -60px;
}

.flatpage .blocks-about .fourth-block {
  margin-top: -25vh;
  margin-bottom: 10vh;
}

.flatpage .blocks-about .fourth-block .text-left {
  width: 70%;
  float: right;
}

.flatpage .blocks-about .fifth-block .bg-dark {
  margin-top: 0vh;
  padding-bottom: 25vh;
  padding-top: 10vh;
  margin-bottom: -20vh;
}

.flatpage .blocks-about .fifth-block h3 {
  font-size: 12vw;
  width: 100vw;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.flatpage .blocks-about .fifth-block .text-right {
  margin-top: 20vh;
}

.flatpage .blocks-about .sixth-block .text-left {
  width: 70%;
  float: right;
}

/* ============================================
   10. SHOP & PRODUCTS
   ============================================ */
.shop-products .hero-section {
  position: relative;
  height: 55vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: -130px;
}

.shop-products .uk-subnav-pill>.uk-active>a {    background-color: #00E0C5; border-radius: 10px;}

.shop-products .product-card-wrapper .uk-card-body {
  padding: 15px 5px 0px;
}

.shop-products .product-card-wrapper .uk-card-title {
  font-size: 1rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  min-height: 2.8rem;
  max-height: 2.8rem;
}

.shop-products .product-card-wrapper .product-desc,
.shop-products .product-card-wrapper .product-desc p {
  font-size: 0.9rem;
}

.shop-products .product-card-wrapper .product-card {
  padding: 15px;
}

.shop-products .uk-subnav.subcategories>.uk-active>a {
    color: white;
    background-color: #999;
    padding: 2px 9px;
    border-radius: 5px;
}

.shop-products .uk-subnav.subcategories>*>:first-child {color: #000; text-decoration: underline; font-size: 0.9rem;}
.shop-products .uk-subnav.subcategories>*>:first-child:hover {color: #333; text-decoration: none;}


/* Home product buy button */
.btn-comprar-home:hover {
  background-color: #00E0C5 !important;
  border-color: #000 !important;
  border: 1px solid #00E0C5 !important;
}

/* Modal add to cart button */
.btn-add-cart-modal:hover {
  background-color: #000 !important;
}

.shop-products .product-card-wrapper .product-card .offer-discount-badge {
    background-color: #00E0C5;
    padding: 5px;
    font-size: 0.8rem;
    border-radius: 5px;
}

.shop-products input {
  height: 50px;
  border-radius: 10px;
  padding-right: 20px;
  border-color: #000 !important;
}

.shop-products .uk-input:focus,
.shop-products .uk-select:focus,
.shop-products .uk-textarea:focus {
  border-color: #00E0C5 !important;
}

.filter-categories ul li {
  font-size: 0.9rem;
}

/* Product Page */
.page-product-show .uk-slideshow-items {
  aspect-ratio: 1/1 !important;
}

#variant-modal .uk-slideshow-items {
  aspect-ratio: 1/1 !important;
}

/* Variant Selector Modal */
#modal-qty-minus {
  width: 30px !important;
  height: 30px !important;
}

#modal-quantity-input {
    height: 30px !important;
    text-align: center !important;
    padding: 0 10px;
    margin: 0;
}

#modal-qty-plus {
  width: 30px !important;
  height: 30px !important;
}

.uk-accordion>:nth-child(n+2) {
  margin-top: 0;
}

#modal-variant-radios label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto !important;
  width: auto !important;
  height: auto !important;
  padding: 4px 8px !important;
  border: 1px solid #ddd !important;
  font-size: 0.8rem !important;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  background: white;
}

#modal-variant-radios input[type="radio"] {
  display: none;
}

#modal-variant-radios input[type="radio"]:checked + label {
  border-color: #00E0C5;
  background: #00E0C5;
  color: white;
}

#modal-variant-radios input[type="radio"]:disabled + label {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

#modal-variant-radios label:hover:not([for*="disabled"]) {
  border-color: #000;
}

/* Product Page Variant Selector (matching modal styles) */
#product-variant-radios > div {
  margin: 0;
}

#product-variant-radios label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  height: auto;
  padding: 3px 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  background: white;
  margin: 0;
  font-size: 0.9rem;
}

#product-variant-radios input[type="radio"] {
  display: none;
}

#product-variant-radios input[type="radio"]:checked + label {
  border-color: #00E0C5;
  background: #00E0C5;
  color: white;
}

#product-variant-radios input[type="radio"]:disabled + label {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

#product-variant-radios label:hover:not([for*="disabled"]) {
  border-color: #000;
}

.uk-thumbnav {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.uk-thumbnav > * > * {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: border 0.2s;
}

.uk-thumbnav > .uk-active > * {
  border-color: #00E0C5;
}

.uk-slideshow-items li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   11. PRODUCT CARDS & HOVER PANEL
   ============================================ */
.offer-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.uk-link-heading:hover {
  text-decoration: underline;
}


#cart-badge-desktop {
    padding-left: 5px;
}
.custom-cart-notification, .custom-notification-container {
    top: 100px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08) !important;
    border-radius: 5px;

}


.order-summary-card .uk-button-cart {padding: 0.8rem 1.6rem !important;}

/* Cart Badge Counter */
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background-color: #f0506e;
  border-radius: 50%;
  z-index: 1;
}

/* User Initial Badge */
.user-initial-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: #fff;
  background-color: #1e87f0;
  border-radius: 50%;
  z-index: 1;
}

/* Product Hover Panel (Quick View) */
#product-hover-panel {
  position: fixed;
  top: 0;
  right: -640px;
  width: 600px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 30px rgba(0,0,0,0.2);
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#product-hover-panel.active {
  right: 0;
}

#product-hover-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 9998;
  pointer-events: none;
  transition: background 0.4s ease;
}

#product-hover-overlay.active {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

.product-hover-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
}

.product-hover-header h2 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
}

.product-hover-close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.product-hover-close:hover {
  background: #f5f5f5;
}

.product-hover-content {
  padding: 20px;
}

.product-hover-image-slider {
  position: relative;
  margin-bottom: 20px;
}

.product-hover-image-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.product-hover-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.product-hover-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.product-hover-thumb:hover,
.product-hover-thumb.active {
  border-color: #00E0C5;
}

.product-hover-info {
  margin-bottom: 20px;
}

.product-hover-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-hover-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.product-hover-price-compare {
  font-size: 1.2rem;
  color: #595959;
  text-decoration: line-through;
  margin-left: 10px;
}

.product-hover-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #595959;
  margin-bottom: 20px;
}

.product-hover-size-selector {
  margin-bottom: 20px;
}

.product-hover-size-selector label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-hover-sizes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-hover-size-btn {
  padding: 10px 20px;
  border: 2px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  border-radius: 6px;
  font-size: 0.9rem;
}

.product-hover-size-btn:hover {
  border-color: #000;
}

.product-hover-size-btn.active {
  border-color: #00E0C5;
  background: #00E0C5;
  color: white;
}

.product-hover-size-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.product-hover-quantity {
  margin-bottom: 20px;
}

.product-hover-quantity label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-hover-quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-hover-qty-btn {
  width: 36px;
  height: 36px;
  border: 2px solid #ddd;
  background: white;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.2s;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hover-qty-btn:hover {
  border-color: #000;
  background: #000;
  color: white;
}

.product-hover-qty-input {
  width: 60px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid #ddd;
  padding: 8px;
  border-radius: 6px;
}

.product-hover-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.product-hover-add-btn {
  flex: 1;
  padding: 15px;
  background: #00E0C5;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-hover-add-btn:hover {
  background: #000;
}

.product-hover-view-btn {
  padding: 15px 20px;
  background: white;
  color: #000;
  border: 2px solid #000;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hover-view-btn:hover {
  background: #000;
  color: white;
}

.product-hover-features {
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 20px;
}

.product-hover-features h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.product-hover-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-hover-features li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.95rem;
}

.product-hover-features li:last-child {
  border-bottom: none;
}

/* Product Card Hover Effect */
.product-card-wrapper {
  position: relative;
height: fit-content;
}

.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-wrapper .offer-discount-badge {
  background-color: #00E0C5 !important;
}

.product-card-wrapper:hover .product-card {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

/* Quick View Button */
.product-quick-view-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-quick-view-btn:hover {
  background: #00E0C5;
  color: white;
  transform: scale(1);
  box-shadow: 0 4px 12px rgba(0,224,197,0.4);
}

.product-card-wrapper:hover .product-quick-view-btn {
  opacity: 1;
  transform: scale(1);
}

.product-quick-view-btn svg {
  fill: currentColor;
}

/* ============================================
   12. CART & CHECKOUT
   ============================================ */
.cart thead .uk-divider-vertical {
  height: 30px;
}

.cart tbody .uk-divider-vertical {
  height: 220px;
}

.uk-description-list-divider>dd,
.uk-description-list-divider>dt {
  padding: 0px !important;
  margin-top: 0 !important;
}

.border-summary {
    border-top: 1px solid #e5e5e5;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
}

.uk-description-list-divider>dt:nth-child(n+2) {
    border: 0;
}

.cart .uk-description-list-divider {
  border-top: 1px solid #e5e5e5;
}

/* Checkout Progress */
#process-checkout .uk-badge {
  font-size: 1rem;
  min-width: 30px;
  height: 30px;
}

#process-checkout .uk-iconnav .uk-active .uk-badge {
  background: #00E0C5;
}

#process-checkout .uk-iconnav .uk-badge {
  background: #C5C5C5;
}

/* ============================================
   13. FOOTER
   ============================================ */

footer .uk-container-full  {
    margin-top: 0;
    padding-bottom: 10px;
}


footer .uk-nav-default>li>a {
  color: white;
  padding: 2px 0px;
}

footer .uk-nav-default>li>a:hover {
  color: #00E0C5;
}

footer .footer-list {
  border-left: 1px solid white;
  padding-right: 30px;
}

footer .uk-nav-default .uk-nav-sub a {
  color: white;
}

footer .uk-nav-default .uk-nav-sub a.email {
  color: white;
  font-weight: 700;
}

footer .uk-nav-default .uk-nav-sub a:hover {
  color: #00E0C5;
}

footer .footer-newsletter .uk-input {
  background-color: transparent;
  height: 50px;
  border-radius: 5px 0 0 5px;
}

footer .footer-newsletter .uk-button-arrow.white {
  border-radius: 0;
  border-radius: 0px 5px 5px 0px;
  height: 50px;
}

footer .form .uk-checkbox {
  border-color: white !important;
}

footer .form small {
  font-size: 0.8rem !important;
}

footer .form a {
  color: white;
  font-weight: 600;
}

footer a.social span:hover {
  color: #00E0C5;
}

footer li a,
footer li {
  color: #fff;
  list-style: none !important;
  font-size: 1rem;
  padding: 2px 0px;
}

footer li.uk-lead {
  font-weight: 700;
}

footer .bg-dark li a:hover {
  color: #00E0C5 !important;
}

footer .bg-dark .uk-section-small {
    padding-top: 20px;
    padding-bottom: 20px;
}

footer .bg-dark li a:hover {
  color: #00E0C5 !important;
}

footer li a:hover {
  color: #000 !important;
}

footer a:hover {
  color: #00E0C5 !important;
}

footer small {
  font-size: 0.7rem;
}

footer .b-left {
  border-left: 1px solid white;
  padding-left: 20px;
}

footer .container-section {
  padding-left: 50px;
  padding-right: 50px;
}

footer .down-footer .bg-white {
  padding-left: 30px;
}

footer .down-footer .bg-primary {
  padding-bottom: 20px;
  padding-top: 20px;
  margin-top: -15px;
  padding-right: 30px;
}

footer .down-footer .bg-primary li a,
footer .down-footer .bg-primary li {
  color: #000 !important;
}

footer .down-footer .bg-primary li a:hover {
  color: #fff !important;
}

footer .container-logo {
  padding: 0 40px;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  width: 100%;
  max-width: 250px;
}

.footer-logo p {
  text-transform: uppercase;
  color: white;
  margin-top: 20px;
}

.footer-logo p a {
  font-weight: 700;
  color: white;
}

.footer-logo p a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.9rem;
}

.autor {
  font-size: 0.8rem;
  margin-bottom: 0;
  opacity: 0.6;
}

.autor a {
  font-weight: 400;
  margin-top: 10px !important;
  color: #595959;
}

.autor b {
  font-weight: 700;
}

/* ============================================
   14. MODALS & DROPDOWNS
   ============================================ */
/* UK Notification */
.uk-notification-message {
  background-color: white;
  border: 1px solid #eee;
  font-size: 1rem;
}

.uk-notification {
  width: 400px;
}

.uk-notification-top-center {
  margin-left: -200px;
}

.uk-notification-message.uk-notification-message-danger {
  background-color: #f0506e;
  color: white;
}

.uk-notification-message.uk-notification-message-danger .uk-close {
  color: white;
}

.uk-notification-message.uk-notification-message-primary {
  background-color: #42d1b5;
  color: white;
}

.uk-notification-message.uk-notification-message-primary .uk-close {
  color: white;
}

/* Sweet Alert */
.swal2-title {
  font-family: 'Switzer-Variable';
  font-optical-sizing: auto;
}

/* Dotnav */
.uk-dotnav>*>* {
  border-radius: 0;
}

.uk-dotnav>.uk-active>* {
  background-color: rgba(00, 00, 00, .9);
}

/* ============================================
   15. ICONS
   ============================================ */
.icon {
  background-image: url('../../front_img/assets-sprite.svg');
  display: inline-block;
  background-size: 1000px 500px;
  -webkit-transition: ease-in-out, .35s ease-in-out;
  transition: ease-in-out, .35s ease-in-out;
}

.icon.facebook {
  width: 30px;
  height: 30px;
  background-position: -125px -0px;
}

.icon.instagram {
  width: 30px;
  height: 30px;
  background-position: -155px -0px;
}

.icon.twitter {
  width: 30px;
  height: 30px;
  background-position: -185px -0px;
}

.icon.linkedin {
  width: 30px;
  height: 30px;
  background-position: -215px -0px;
}

.icon.user {
  width: 30px;
  height: 30px;
  background-position: -245px -0px;
  position: relative;
  margin-bottom: 4px;
}

.icon.twitter-small {
  width: 20px;
  height: 20px;
  background-position: -300px -0px;
}

.icon.linkedin-small {
  width: 20px;
  height: 20px;
  background-position: -320px -0px;
}

.icon.check {
  width: 20px;
  height: 20px;
  background-position: -380px -0px;
  position: relative;
  top: 5px;
}

.icon.facebook:hover {
  filter: invert(100%);
}

.icon.instagram:hover {
  filter: invert(100%);
}

.icon.tripadvisor {
  width: 30px;
  height: 30px;
  background-position: -125px -30px;
}

.icon.psfi-guests {
  width: 20px;
  height: 20px;
  background-position: -185px -0px;
}

.icon.psfi-area {
  width: 20px;
  height: 20px;
  background-position: -205px -0px;
}

.icon.psfi-date {
  width: 20px;
  height: 20px;
  background-position: -225px -0px;
}

.icon.psfi-price {
  width: 20px;
  height: 20px;
  background-position: -245px -0px;
}

.icon.psfi-larkenests {
  width: 20px;
  height: 20px;
  background-position: -265px -0px;
}

/* ============================================
   16. UTILITIES & HELPERS
   ============================================ */
.border-left {
  border-left: 1px solid #000;
}

.border-top {
  border-top: 1px solid #000;
}

.uk-height-xlarge {
  height: 50vh;
}

.intro-padding {
  padding: 70px 70px 0 70px;
}

.uk-overlay-primary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  background: transparent;
  background: -webkit-linear-gradient(to bottom, transparent 0%, #000000 100%);
  background: -moz-linear-gradient(to bottom, transparent 0%,#000000 100%);
  background: linear-gradient(to bottom, transparent 0%, #000000 100%);
}

hr.line-right {
  border-top: 1px solid #000000;
  position: relative;
}

hr.line-right::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #000;
  vertical-align: middle;
  position: absolute;
  right: 0;
  bottom: -3px;
}

hr.line-left {
  border-top: 1px solid #000000;
  position: relative;
}

hr.line-left::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #000;
  vertical-align: middle;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  position: fixed;
  height: 190px;
  bottom: 30px;
}

/* Datedropper */
div.datedropper.TFS MARINE-theme {
  --dd-color1: #000000 !important;
  --dd-color2: #FFF !important;
  --dd-color3: #000000 !important;
  --dd-color4: #FFF !important;
  --dd-radius: 16px !important;
  --dd-width: 160px !important;
  --dd-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.3) !important;
}

.TFS MARINE-theme {
  --dd-overlay: rgba(0, 0, 0, .75);
  --dd-background: #FFFFFF;
  --dd-text1: #000000;
  --dd-text2: #FFFFFF;
  --dd-primary: #000000;
  --dd-gradient: linear-gradient(45deg, #000000 0%, #000000 100%);
  --dd-radius: 16px;
  --dd-shadow: 0 0 2.5em rgba(0, 0, 0, 0.1);
  --dd-range: rgba(0, 0, 0, 0.05);
  --dd-monthBackground: var(--dd-gradient);
  --dd-monthText: var(--dd-text2);
  --dd-monthBorder: transparent;
  --dd-confirmButtonBackground: var(--dd-gradient);
  --dd-confirmButtonText: var(--dd-text2);
  --dd-selectedBackground: var(--dd-gradient);
  --dd-selectedText: var(--dd-text2);
}

/* General Helpers */
.clear {
  clear: both;
}

.overlay {
  background-color: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-transition: ease-in-out, .35s ease-in-out;
  transition: ease-in-out, .35s ease-in-out;
}

.overlay-light {
  background-color: rgba(224, 255, 83, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-transition: ease-in-out, .35s ease-in-out;
  transition: ease-in-out, .35s ease-in-out;
  mix-blend-mode: multiply;
}

.overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  mix-blend-mode: multiply;
  background: transparent;
  background: -webkit-linear-gradient(to bottom, transparent 50%, #000000 100%);
  background: -moz-linear-gradient(to bottom, transparent 50%, #000000 100%);
  background: linear-gradient(to bottom, transparent 50%, #000000 100%);
  -webkit-transition: ease-in-out, .35s ease-in-out;
  transition: ease-in-out, .35s ease-in-out;
}

.overlay-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  mix-blend-mode: multiply;
  background: transparent;
  background: -webkit-linear-gradient(to bottom, transparent 0%, rgba(00,00,00,0.6) 100%);
  background: -moz-linear-gradient(to bottom, transparent 0%, rgba(00,00,00,0.6) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(00,00,00,0.6) 100%);
  -webkit-transition: ease-in-out, .35s ease-in-out;
  transition: ease-in-out, .35s ease-in-out;
}

.section {
  padding: 5vh;
}

.section-large {
  padding: 10vh;
}

.section-small {
  padding: 3vw;
}

.transition {
  -webkit-transition: ease-in-out, .35s ease-in-out;
  transition: ease-in-out, .35s ease-in-out;
}

.bg-white {
  background-color: #fff !important;
}

.bg-grey {
  background-color: #E9E7E2 !important;
}

.bg-light {
  background-color: #E9E7E2 !important;
}

.bg-dark {
  background-color: #000000 !important;
}

.bg-primary {
  background-color: #00E0C5 !important;
}

.white {
  color: #fff !important;
}

.grey {
  color: #E9E7E2 !important;
}

.light {
  color: #E9E7E2 !important;
}

.dark {
  color: #000000 !important;
}

.primary {
  color: #00E0C5 !important;
}

.white p {
  color: #fff !important;
}

.grey p {
  color: #5A5858 !important;
}

.light p {
  color: #C5C5C5 !important;
}

.dark p {
  color: #000000 !important;
}

.primary p {
  color: #000 !important;
}

.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-img img {
  width: 100%;
}

.shadow {
  box-shadow: 0 0px 10px rgba(0,0,0,0.3);
}

.b-bottom {
  border-bottom: 1px solid #000000;
}

.b-top {
  border-top: 1px solid #000000;
}

.sans {
  font-family: 'Switzer-Variable';
  font-optical-sizing: auto;
  font-size: 1.1rem;
}

.bold {
  font-family: 'Switzer-Variable';
}

.uk-border-rounded {
  border-radius: 10px !important;
}

.uk-border-rounded.left {
  border-radius: 10px 0px 0px 10px !important;
}

.uk-border-rounded.right {
  border-radius: 0px 10px 10px 0px !important;
}

.uk-border-rounded-small {
  border-radius: 10px !important;
}

.container-border {
  border-top: 1.5px solid #000000;
  border-bottom: 1.5px solid #000000;
}

.container-text {
  max-width: 700px;
  margin: 0 auto;
}

.container-feed {
  width: calc(100% - 10%);
  padding-left: 10%;
}

.uk-link {
  color: #00E0C5;
  text-decoration: underline;
  font-weight: 700;
}

/* Hover Effects */
.hover-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0s ease, background-color 0s ease;
}

.hover-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.project.hover-visible {
  position: relative;
  z-index: 11111111;
}

.projects.hover-active .project:not(.hover-visible) {
  opacity: 1;
  transition: opacity 0s ease;
}

/* IOT Lines */
.iot-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px !important;
  width: 60px !important;
  background: #000;
  transform: translateY(-50%);
}

.iot-bottom .iot-line {
  top: 50%;
  left: auto;
  right: 0;
  height: 1px !important;
  width: 60px !important;
  background: #000;
  transform: translateY(-50%);
}

.home .solutions .uk-subnav-pill>.uk-active>a::after {
  display: none;
}

.home .solutions .uk-subnav {
  padding-bottom: 0;
  border: 0;
}

.home .solutions .uk-subnav li a {
  padding: 10px;
}

.home .solutions .uk-subnav-pill>*>:first-child {
  border-bottom: 1px solid #000;
  margin-top: 5px;
}

.home .solutions .uk-subnav-pill>*>:first-child:hover {
  color: white;
  background-color: #000;
}

.iot-item-vertical {
  margin-bottom: 10px;
}

/* ============================================
   17. COOKIES
   ============================================ */
#cookieMessageWrapper {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 997;
  height: 100%;
  background: rgba(38,38,38,0.6);
}

#cookieMessage {
  margin: 0 auto;
  position: absolute;
  padding: 40px;
  width: 80%;
  left: 50%;
  top: 50%;
  max-width: 480px;
  transform: translateX(-50%) translateY(-50%);
  background-color: #F7F6EF;
}

#cookieMessage .cookies-logo {
  width: 130px;
}

#cookieMessage p {
  margin: 20px 0;
  color: #444;
}

.cookie-consent-options {
  margin-top: 10px;
  color: #000;
}

#cookieMessage h3 {
  font-size: 1.6rem;
}

#cookieMessage .uk-link {
  margin-top: 20px;
  color: #040f0c;
  display: inline-block;
  padding: 10px;
  vertical-align: middle;
}

#cookieMessage:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#cookieClose {
  display: inline-block;
  margin-top: 20px;
  cursor: pointer;
  margin-right: 5px;
}

#cookieClose:hover {
  color: #fff;
}

#cookieNone {
  margin-top: 20px;
}

#cookieMessageWrapper h4.uk-modal-title {
  font-size: 1rem;
}

#cookieMessageWrapper .uk-link {
  color: #000;
  display: inline-block;
  padding: 20px;
  vertical-align: middle;
}

#cookieMessageWrapper label {
  margin-right: 10px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

#cookieMessageWrapper .uk-checkbox {
  border-color: #000 !important;
  margin-right: 5px;
}

#cookieMessageWrapper .uk-checkbox:checked {
  background-color: #000;
}

#cookieMessageWrapper .uk-checkbox:disabled:checked {
  background-color: #f5e9c9;
  border-color: #f5e9c9 !important;
}

.uk-button-accept {
  background-color: #040f0c;
  color: #F7F6EF !important;
  border: 1px solid #040f0c;
  padding: 7px 9px !important;
  margin: 2px;
}

.uk-button-accept:hover {
  background-color: #F7F6EF;
  color: #040f0c !important;
  border: 1px solid #040f0c;
}

.uk-button-decline {
  background-color: transparent;
  color: #040f0c !important;
  border: 1px solid #040f0c;
  padding: 7px 9px !important;
  margin: 2px;
}

.uk-button-decline:hover {
  background-color: #040f0c;
  color: #F7F6EF !important;
  border: 1px solid #040f0c;
}

.uk-button-decline-all {
  background-color: transparent;
  color: #040f0c !important;
  border: 1px solid #040f0c;
  padding: 7px 9px !important;
  margin: 2px;
}

.uk-button-decline-all:hover {
  background-color: #c3c3c3;
  color: #040f0c !important;
}

/* ============================================
   18. PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  z-index: 1111;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  background: #000;
  top: 0;
  left: 0;
}

.preloader img {
  -webkit-animation: heartbeat 1.5s ease-out infinite normal;
  animation: heartbeat 1.5s ease-out infinite normal;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

@keyframes heartbeat {
  0% {
    transform: scale( .95 ) translate(-50%,-50%);
    opacity: 0.6;
  }
  15% {
    transform: scale( 1 ) translate(-50%,-50%);
    opacity: 1;
  }
  30% {
    transform: scale( .95 ) translate(-50%,-50%);
    opacity: 0.6;
  }
  45% {
    transform: scale( 1 ) translate(-50%,-50%);
    opacity: 1;
  }
  80% {
    transform: scale( .95 ) translate(-50%,-50%);
    opacity: 0.6;
  }
  100% {
    transform: scale( .95 ) translate(-50%,-50%);
    opacity: 0.6;
  }
}

/* ============================================
   19. MEDIA QUERIES
   ============================================ */

/* Medium-Large Breakpoint (max-width: 1599px) */
@media only screen and (max-width: 1599px) {
  .diagram-iot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    border-left: 1px dotted #999;
    transform: translateX(-50%);
    z-index: 0;
  }


  .hero-section .text {bottom: 0;}
  .hero-title {font-size: 4rem; max-width: 100%;}

  .iot-text-container {
    padding: 10px 30px;
  }

  .home .about-section .about-title {
        font-size: 5rem;
        margin-bottom: -20px;
    }

}

/* Large Breakpoint (max-width: 1199px) */
@media only screen and (max-width: 1199px) {
  .section-text {
    padding: 5vh;
  }

  .hero-title {font-size: 3rem; max-width: 100%;}

  .text.section-text {
    padding: 3vh !important;
  }


  .uk-navbar-right {background-color: white; padding: 0px 30px;}
  .uk-navbar-container.uk-sticky.uk-active .uk-navbar-right {background-color: white; padding: 0px;}

}

/* iPad Breakpoint (max-width: 1024px) */
@media (max-width: 1024px) {
  /* Add iPad specific styles here */
}

/* Medium Breakpoint (max-width: 960px) */
@media (max-width: 960px) {
  .home .about-section .about-content {
    /* padding: 40px 30px; */
  }

  .home .about-section .about-title {
    font-size: 3rem;
    margin: 0 0 10px;
  }

  .home .about-section .about-subtitle {
    font-size: 1.4rem;
  }

  /* .home .experts-section {
    padding: 60px 0;
  } */

  .home .experts-section .experts-title {
    font-size: 2.5rem;
  }

  .home .experts-section .experts-subtitle {
    font-size: 1.3rem;
  }

  /* .hero-section {
    height: 70vh;
    min-height: 500px;
  } */
}

/* Medium-Small Breakpoint (max-width: 959px) */
@media (max-width: 959px) {
  .m-0 { margin: 0; }
  .m-10 { margin: 0px; }
  .m-20 { margin: 0px; }
  .m-30 { margin: 0px; }
  .m-40 { margin: 0px; }

  .p-0 { padding: 0; }
  .p-10 { padding: 10px; }
  .p-20 { padding: 20px; }
  .p-30 { padding: 30px; }
  .p-40 { padding: 40px; }

  .uk-container-full {width: 100%;
    padding-left: 0px;
    padding-right: 0px;}

  .uk-navbar-nav#main-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 0vw 0 0vw;
    width: calc(100% - 10px);
    background-color: #00E0C5;
    z-index: 3;
    padding-left: 10px;
    padding-top: 100px;
  }

  .uk-navbar-nav.visible-flex {
    display: block !important;
    overflow-y: auto;
    height: calc(100vh - 80px);
  }

  /* .uk-navbar-toggle {
    height: 80px;
    float: right;
    z-index: 4;
    position: relative;
    color: white !important;
  } */

  .uk-navbar-nav>li,
  .uk-navbar-nav>li ul li,
  .uk-navbar-nav>li ul.uk-nav-sub li {
    min-height: 40px;
    justify-content: left;
  }

  /* .uk-navbar-nav>li>a,
  .uk-navbar-nav>li ul li a,
  .uk-navbar-nav>li ul.uk-nav-sub li a {
    min-height: auto;
    justify-content: left;
    padding: 8px 10px;
  } */

  .home .experts-section .experts-title {
        padding-left: 0px;
        margin-bottom: 0px;
  }

  .home .experts-section .experts-content {
    padding-top: 0 !important;
  }

  .home .experts-section .experts-content .bg-primary {
        padding: 5vh;
        /* padding-right: 0vh; */
        margin-right: 0vh;
        border-radius: 0px 0px !important;
  }

  .values-strip {
    padding: 30px 0;
  }

  .values-text {
        font-size: 3rem;
  }

  .hero-title {
    font-size: 3.6rem;
}

  .vertical {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
  }

  .section-large {
    padding: 5%;
  }

  .uk-navbar-container:not(.uk-navbar-transparent) {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* .uk-navbar-container.uk-active .uk-navbar-nav>li a {
    color: #fff;
  } */

  .bm-waves span {
    width: calc(100vw - 135px);
    height: 40px;
  }

  .psf-selector {
    min-width: auto;
  }

  .twitter-typeahead,
  .select2-container {
    width: 100% !important;
  }

  .reset-filters {
    padding: 10px 0 0;
  }

  .pf-container .uk-container {
    padding: 0;
  }

  .iot-item-vertical {
    margin-bottom: 5px;
  }

  #offcanvas-menu .uk-offcanvas-bar {
    width: 50vw;
  }

  footer .container-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  footer .container-logo {
    padding: 0 30px;
  }

  .uk-heading-xsmall {
    font-size: 1.2rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-small {
    font-size: 1.4rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-medium {
    font-size: 1.6rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-large {
    font-size: 2.2rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-xlarge {
    font-size: 3rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-xsmall p {
    font-size: 1.2rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-small p {
    font-size: 1.4rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-medium p {
    font-size: 1.6rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-large p {
    font-size: 2.2rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-xlarge p {
    font-size: 3rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .flatpage .company .group {
    margin-bottom: 0;
  }

  .flatpage .company .group .bg-light {
    position: relative;
    bottom: 0vh;
    width: auto;
    margin-left: -0vh;
    margin-right: -0vh;
    padding-right: 0vh
  }

  .flatpage .company .talent .bg-light .text-block {
    padding: 10%;
  }

  .intro-padding {
    padding: 40px 40px 0 40px;
  }

  .flatpage .subservices .text-slider {
    padding: 20px;
  }

  .flatpage .subservices .container-nav {
    width: 100%;
    margin-left: 0;
  }

  .diagram-iot {
    padding-top: 50px;
    padding-bottom: 50px;
  }



  .flatpage .blocks-about .text-right {
    width: auto !important;
    margin-left: 0;
    padding: 5vh !important;
  }

  .flatpage .blocks-about .second-block .bg-primary {
    width: auto;
  }

  .flatpage .blocks-about .text-left {
    margin-right: 0vh;
    padding: 5vh;
  }

  /* .flatpage .blocks-about .third-block .bg-grey {

  } */

  .flatpage .blocks-about .fourth-block {
    margin-bottom: 0;
  }

  .flatpage .blocks-about .sixth-block .text-left {
    width: auto;
  }

  .flatpage .blocks-about .third-block h3 {
    margin-left: -20px;
  }


  .hero-section .hero-container-text {
    position: absolute !important;
    width: -webkit-fill-available !important;
    bottom: 50px !important;
  }

  footer .down-footer .bg-primary {
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 0px;
    padding-right: 0px;
    }

}

/* Mobile - Medium-Small Breakpoint (max-width: 767px) */
@media (max-width: 767px) {
  #product-hover-panel {
    width: 100%;
    right: -100%;
  }

  .product-hover-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-hover-actions {
    flex-direction: column;
  }

    .values-strip {
    padding: 10px 0;
  }

  .values-text span {
     font-size: 2rem;
  }
  .values-text {
        font-size: 2rem;
  }

  .uk-text-large, .uk-text-large p {
    font-size: 1.2rem;
    line-height: 1.2;
}

  /* Reduce product image height on mobile */
  .home .products-section .uk-hidden\@m .uk-height-large {
    height: 250px !important;
  }

  .home .products-section .uk-hidden\@m .uk-slideshow-items {
    height: 250px !important;
  }

  #products .uk-slider-container .uk-grid-column-small>*, #products .uk-grid-small>* {
    padding-left: 0;
    }

#products .uk-slider-container .uk-grid-column-large, #products .uk-slider-container .uk-grid-large {
        margin-left: -30px;
}

.home .about-section .about-content {
    padding: 20px;
    margin-left: 0;
}

.home .experts-section .experts-content .bg-primary{
    padding: 20px;
}

#products .slider-container-arrows {
    position: absolute;
    width: 80px;
    height: 50px;
    top: 00px;

}


.home .experts-section .experts-title {
    font-size: 2rem;
}

}

/* Small Breakpoint (max-width: 639px) */
@media only screen and (max-width: 639px) {

    .uk-navbar, .uk-navbar ul li a {
        height: 60px;
        min-height: 60px;
    }

    .uk-navbar-right {
        padding: 0px 20px;
    }

    .hero-section {
        min-height: auto !important;
    }

    .hero-section .hero-container-text {
        bottom: 20px !important;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.2;
    }

    #products.uk-section-large {padding: 30px 0 !important;}

    .uk-container-full {padding: 0; width: 100%;}

  #offcanvas-menu .uk-offcanvas-bar {
    width: 100vw;
  }

  footer .container-logo {
    padding: 0 20px;
  }

  .uk-heading-medium {
    font-size: 1.5rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-medium p {
    font-size: 1.5rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-large {
    font-size: 2rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-large p {
    font-size: 2rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-xlarge {
    font-size: 2.4rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-xlarge p {
    font-size: 2.4rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .home .block-ind.solutions .uk-switcher .uk-padding.uk-text-center img {
    max-width: 200px;
  }

  .uk-card-title {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .uk-slider-container-offset {
    margin: 0;
    padding: 0;
  }

  .text-block {
    padding: 0;
  }

  .intro-padding {
    padding: 20px 0 0;
  }

  .flatpage .company .group .bg-light .text-block {
    padding: 25px;
  }

  .flatpage .company .talent .bg-light .text-block {
    padding: 20px;
  }

  footer .container-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  main .entropy .uk-padding {
    padding: 10px;
  }

  .flatpage .subservices .text-slider {
    padding: 20px 0;
  }

  .home .block-ind.intro .uk-padding {
    padding: 20px 0 10px;
  }

  .home .header h1 {
    font-size: 3rem !important;
  }

  .home .block-ind.solutions .uk-switcher .uk-section-small {
    padding: 0;
  }

  .uk-text-right.iot-text-container {
    padding: 10px 20px 10px 10px;
  }

  .uk-text-left.iot-text-container {
    padding: 10px 10px 10px 20px;
  }

  .diagram-iot {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .home .block-ind.capacities .uk-section-large {
    padding: 30px 0;
  }
}

/* Extra Small Breakpoint (max-width: 459px) */
@media (max-width: 459px) {

    .hero-title {
        font-size: 2rem;
    }

  .uk-heading-large {
    font-size: 1.8rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-large p {
    font-size: 1.8rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-xlarge {
    font-size: 2.2rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .uk-heading-xlarge p {
    font-size: 2.2rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .home .header .uk-heading-xlarge {
    font-size: 2.4rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .home .header .uk-heading-xlarge p {
    font-size: 1.8rem !important;
    margin: 0;
    line-height: 1.3;
    font-family: 'Switzer-Variable';
  }

  .home .header .uk-text-large {
    font-size: 1.2rem;
  }

  .home .block-ind.solutions .uk-switcher .uk-padding.uk-text-center img {
    max-width: 160px;
  }

  .flatpage .company .group .bg-light .text-block {
    padding: 15px;
  }

  .iot-item-vertical {
    margin-bottom: 0px;
  }

  .iot-item-vertical .iot-title {
    font-size: 0.9rem;
  }
}
