@charset "UTF-8";
:root {
  --text-color: rgb(0,0,0);
  --text-color-mid: rgb(11,11,11);
  --text-color-menu: rgb(45,45,43);
  --background-color: rgb(255,255,255);
  --backgroundA: rgb(60,60,59);
  --backgroundB: rgb(45, 45, 43);
  --backgroundC: rgb(232, 179, 32);
  --backgroundD: rgb(239,239,239);
  --new: rgb(232, 179, 32);
}

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

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  font-weight: 400;
}

/* Set core body defaults */
html {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-size: 15px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: #2D2D2B;
  color: var(--background-color);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  line-height: 1.5;
  font-family: sans-serif;
  font-size: 1rem;
  font-family: "Open Sans", serif;
}

h1 {
  text-align: center;
  margin: 20px auto;
  font-size: 2rem;
}
@media screen and (max-width: 700px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  text-align: center;
  margin: 20px auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 700px) {
  h2 {
    font-size: 2rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**
*
* [ side-bar ][ top-bar-desktop ]
* [ side-bar ][   page-content  ]
* [ side-bar ][      footer     ]
*
**/
.page-container {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 75px 1fr auto;
  overflow-x: hidden;
}

.side-bar {
  position: fixed;
  height: 100%;
  width: 250px;
  grid-column: 1/2;
  grid-row: 1/4;
}

.top-bar-desktop {
  position: fixed;
  grid-column: 2/3;
  grid-row: 1/2;
}

.top-bar-mobile {
  display: none;
}

.page-content {
  min-height: 90vh;
  grid-column: 2/3;
  grid-row: 2/3;
  padding: 0 24px 24px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.page-footer {
  grid-column: 2/3;
  grid-row: 3/4;
}

body.page-posm-catalogue .page-footer,
body.page-communication .page-footer,
body.page-visibility .page-footer,
body.page-best-practices .page-footer,
body.page-links .page-footer {
  grid-column: 1/-1;
}

body.page-home .page-container {
  grid-template-columns: 1fr;
}
body.page-home .side-bar {
  display: none;
}
body.page-home .top-bar-desktop {
  left: 0;
  grid-column: 1/2;
}
body.page-home .page-content {
  grid-column: 1/2;
}
body.page-home .page-footer {
  grid-column: 1/2;
}

body.page-portfolio .page-container {
  grid-template-columns: 1fr;
}
body.page-portfolio .side-bar {
  display: none;
}
body.page-portfolio .top-bar-desktop {
  left: 0;
  grid-column: 1/2;
}
body.page-portfolio .page-content {
  grid-column: 1/2;
}
body.page-portfolio .page-footer {
  grid-column: 1/2;
}

body.page-brands .page-container,
body.page-marca .page-container {
  grid-template-columns: 1fr;
}
body.page-brands .side-bar,
body.page-marca .side-bar {
  display: none;
}
body.page-brands .top-bar-desktop,
body.page-marca .top-bar-desktop {
  left: 0;
  grid-column: 1/2;
}
body.page-brands .page-content,
body.page-marca .page-content {
  grid-column: 1/2;
}
body.page-brands .page-footer,
body.page-marca .page-footer {
  grid-column: 1/2;
}

@media screen and (max-width: 700px) {
  .page-container {
    width: 100%;
    min-height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 75px 1fr auto;
  }
  .side-bar, .top-bar-desktop {
    display: none;
  }
  .top-bar-mobile {
    display: grid;
    grid-column: 1/2;
    grid-row: 1/2;
    grid-template-columns: 4fr 2fr 1fr;
    grid-gap: 12px;
    align-items: center;
    padding: 0 5px;
  }
  .page-content {
    grid-column: 1/2;
    grid-row: 2/3;
    padding: 0 24px 24px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .page-footer {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.threesome {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-gap: 24px;
}

.fifty-fifty {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-gap: 24px;
}

.two-to-one {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  grid-gap: 24px;
}

.one-to-two {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto;
  grid-gap: 24px;
}

.ap-layout {
  display: grid;
  grid-template-columns: 3fr 3fr 1fr;
  grid-template-rows: auto;
  grid-gap: 24px;
}

@media screen and (max-width: 700px) {
  .threesome {
    grid-template-columns: 1fr;
  }
  .fifty-fifty {
    grid-template-columns: 1fr;
  }
  .two-to-one {
    grid-template-columns: 1fr;
  }
  .one-to-two {
    grid-template-columns: 1fr;
  }
  .ap-layout {
    display: grid;
    grid-template-columns: 3fr 3fr 1fr;
    grid-template-rows: auto;
    grid-gap: 24px;
  }
}
.top-bar-desktop {
  position: fixed;
  top: 0;
  right: 0;
  left: 250px;
  z-index: 99999;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .top-bar-desktop {
    display: none;
  }
}

.desktop-menu ul {
  display: inline;
  margin: 0 24px 0 0;
  padding: 0;
}
.desktop-menu li {
  display: inline-block;
  margin: 5px 15px 5px 0;
}

.top-bar-popunder-menus {
  position: absolute;
  z-index: 9999;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
}
.top-bar-popunder-menus > nav {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 260px;
}
.top-bar-popunder-menus > nav.active {
  display: block;
}

.side-menu ul, .my-side-menu ul, .shop-menu ul {
  display: inline;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.side-menu li, .my-side-menu li, .shop-menu li {
  display: block;
  margin: 5px 0;
}
.side-menu li.active a, .my-side-menu li.active a, .shop-menu li.active a {
  font-weight: 700;
}
.side-menu.inactive, .my-side-menu.inactive, .shop-menu.inactive {
  display: none;
}

.nest-menu ul {
  display: inline;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.nest-menu li {
  display: block;
  margin: 5px 0px;
}
.nest-menu.inactive {
  display: none;
}

#modal_status {
  display: none;
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  opacity: 0;
}
#modal_status.active {
  display: block;
  opacity: 0;
}

.top-bar-desktop {
  background-color: var(--background-color);
  color: var(--text-color-menu);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.page-home .top-bar-desktop {
  background-color: #2D2D2B;
}

body.page-portfolio .top-bar-desktop {
  background-color: #2D2D2B;
}

body.page-brands .top-bar-desktop {
  background-color: #2D2D2B;
}

.desktop-menu {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-color-menu);
}
.desktop-menu a {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.desktop-menu a::after {
  position: absolute;
  top: 20px;
  left: 0;
  content: " ";
  width: 80%;
  height: 10px;
  border-bottom: 2px solid var(--backgroundC);
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left center;
  transition: transform 0.3s, opacity 0.3s;
}
.desktop-menu a.active {
  color: #E8B320;
}
.desktop-menu a.active::after {
  opacity: 1;
  transform: scaleX(0.75);
  border-bottom-color: #E8B320;
}
.desktop-menu a:hover::after {
  opacity: 0.6;
  transform: scaleX(1);
}
.desktop-menu a.no-link {
  cursor: default;
}

body.page-home .desktop-menu {
  color: #FFFFFF;
}
body.page-home .desktop-menu a {
  color: #FFFFFF;
}
body.page-home .desktop-menu a.active {
  color: #E8B320;
}

body.page-portfolio .desktop-menu {
  color: #FFFFFF;
}
body.page-portfolio .desktop-menu a {
  color: #FFFFFF;
}
body.page-portfolio .desktop-menu a.active {
  color: #E8B320;
}

body.page-brands .desktop-menu {
  color: #FFFFFF;
}
body.page-brands .desktop-menu a {
  color: #FFFFFF;
}
body.page-brands .desktop-menu a.active {
  color: #E8B320;
}

.top-bar-popunder-menus > nav {
  margin-top: 0px;
  padding: 6px 24px;
  background-color: rgb(60, 60, 59);
  width: 250px;
}
.top-bar-popunder-menus > nav ul {
  margin: 0;
  padding: 0 0 12px;
  list-style: none;
}
.top-bar-popunder-menus > nav li {
  padding: 6px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}
.top-bar-popunder-menus > nav a {
  color: inherit;
  text-decoration: none;
}

body.page-home .top-bar-popunder-menus > nav {
  background-color: rgb(60, 60, 59);
  color: #FFFFFF;
}
body.page-home .top-bar-popunder-menus > nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-home .top-bar-popunder-menus > nav a {
  color: #FFFFFF;
}
body.page-home .top-bar-popunder-menus > nav a:hover {
  color: #E8B320;
}

body.page-portfolio .top-bar-popunder-menus > nav {
  background-color: rgb(60, 60, 59);
  color: #FFFFFF;
}
body.page-portfolio .top-bar-popunder-menus > nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-portfolio .top-bar-popunder-menus > nav a {
  color: #FFFFFF;
}
body.page-portfolio .top-bar-popunder-menus > nav a:hover {
  color: #E8B320;
}

body.page-posm-catalogue .top-bar-popunder-menus > nav {
  background-color: rgb(60, 60, 59);
  color: #FFFFFF;
}
body.page-posm-catalogue .top-bar-popunder-menus > nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-posm-catalogue .top-bar-popunder-menus > nav a {
  color: #FFFFFF;
}
body.page-posm-catalogue .top-bar-popunder-menus > nav a:hover {
  color: #E8B320;
}

body.page-communication .top-bar-popunder-menus > nav,
body.page-visibility .top-bar-popunder-menus > nav,
body.page-best-practices .top-bar-popunder-menus > nav,
body.page-links .top-bar-popunder-menus > nav {
  background-color: rgb(60, 60, 59);
  color: #FFFFFF;
}
body.page-communication .top-bar-popunder-menus > nav li,
body.page-visibility .top-bar-popunder-menus > nav li,
body.page-best-practices .top-bar-popunder-menus > nav li,
body.page-links .top-bar-popunder-menus > nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-communication .top-bar-popunder-menus > nav a,
body.page-visibility .top-bar-popunder-menus > nav a,
body.page-best-practices .top-bar-popunder-menus > nav a,
body.page-links .top-bar-popunder-menus > nav a {
  color: #FFFFFF;
}
body.page-communication .top-bar-popunder-menus > nav a:hover,
body.page-visibility .top-bar-popunder-menus > nav a:hover,
body.page-best-practices .top-bar-popunder-menus > nav a:hover,
body.page-links .top-bar-popunder-menus > nav a:hover {
  color: #E8B320;
}

body.page-communication .page-container,
body.page-visibility .page-container,
body.page-best-practices .page-container,
body.page-links .page-container,
body.page-posm-catalogue .page-container {
  max-width: 1200px !important;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow-x: visible !important;
}

body.page-communication .page-content,
body.page-communication section.page-content,
body.page-visibility .page-content,
body.page-visibility section.page-content,
body.page-best-practices .page-content,
body.page-best-practices section.page-content,
body.page-links .page-content,
body.page-links section.page-content,
body.page-posm-catalogue .page-content,
body.page-posm-catalogue section.page-content {
  max-width: 100% !important;
  margin: 0;
  padding: 0 20px 40px 20px;
  width: 100%;
}

body.page-communication .threesome {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-gap: 30px !important;
  gap: 30px !important;
  margin-top: 20px;
}
body.page-communication .threesome > * {
  min-width: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.page-communication .threesome {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    grid-gap: 20px !important;
  }
}

body.page-communication .two-to-one {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  grid-gap: 30px !important;
  gap: 30px !important;
  margin-top: 20px;
}
body.page-communication .two-to-one > * {
  min-width: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.page-communication .two-to-one {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    grid-gap: 20px !important;
  }
}

body.page-communication .brand-header,
body.page-visibility .brand-header,
body.page-best-practices .brand-header,
body.page-links .brand-header,
body.page-posm-catalogue .brand-header {
  text-align: center;
  margin-bottom: 30px;
}
body.page-communication .brand-header .brand-title,
body.page-visibility .brand-header .brand-title,
body.page-best-practices .brand-header .brand-title,
body.page-links .brand-header .brand-title,
body.page-posm-catalogue .brand-header .brand-title {
  font-size: 3rem;
  font-weight: 500;
  color: #FFFFFF;
}
@media screen and (max-width: 700px) {
  body.page-communication .brand-header .brand-title,
  body.page-visibility .brand-header .brand-title,
  body.page-best-practices .brand-header .brand-title,
  body.page-links .brand-header .brand-title,
  body.page-posm-catalogue .brand-header .brand-title {
    font-size: 2rem;
  }
}
body.page-communication .brand-header .brand-title,
body.page-visibility .brand-header .brand-title,
body.page-best-practices .brand-header .brand-title,
body.page-links .brand-header .brand-title,
body.page-posm-catalogue .brand-header .brand-title {
  margin-top: 30px;
  margin-bottom: 10px;
}

body.page-posm-catalogue .brand-history-content .brand-history-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  body.page-posm-catalogue .brand-history-content .brand-history-wrapper {
    grid-template-columns: 1fr;
  }
}
body.page-posm-catalogue .brand-history-content .posm-documents-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.posm-documents-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.posm-documents-card {
  background-color: rgb(60, 60, 59);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.posm-documents-card .posm-documents-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: left;
}
.posm-documents-card .posm-documents-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.posm-documents-card .posm-documents-list ul li {
  margin-bottom: 15px;
}
.posm-documents-card .posm-documents-list ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E8B320;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.posm-documents-card .posm-documents-list ul li a:hover {
  color: #D4A01A;
}
.posm-documents-card .posm-documents-list ul li a img.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.posm-notes-panel {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.posm-notes-panel .posm-notes-content {
  color: #000000;
  line-height: 1.8;
}
.posm-notes-panel .posm-notes-content ul, .posm-notes-panel .posm-notes-content ol {
  margin: 0;
  padding-left: 20px;
}
.posm-notes-panel .posm-notes-content ul li, .posm-notes-panel .posm-notes-content ol li {
  margin-bottom: 10px;
  color: #000000;
}
.posm-notes-panel .posm-notes-content p {
  margin-bottom: 15px;
  color: #000000;
}

.posm-catalogue-preview .posm-catalogue-card {
  background-color: #2D2D2B;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}
.posm-catalogue-preview .posm-catalogue-card .posm-catalogue-image {
  position: relative;
  width: 100%;
  height: auto;
}
.posm-catalogue-preview .posm-catalogue-card .posm-catalogue-image img {
  width: 100%;
  height: auto;
  display: block;
}
.posm-catalogue-preview .posm-catalogue-card .posm-catalogue-image .posm-start-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #E8B320;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  z-index: 10;
}
.posm-catalogue-preview .posm-catalogue-card .posm-catalogue-image .posm-start-button:hover {
  background-color: #D4A01A;
}
.posm-catalogue-preview .posm-catalogue-card .posm-catalogue-placeholder {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CCCCCC;
  padding: 40px;
}

body.page-brands .top-bar-popunder-menus > nav {
  background-color: rgb(60, 60, 59);
  color: #FFFFFF;
}
body.page-brands .top-bar-popunder-menus > nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-brands .top-bar-popunder-menus > nav a {
  color: #FFFFFF;
}
body.page-brands .top-bar-popunder-menus > nav a:hover {
  color: #E8B320;
}

section.page-content.limited-editions-page,
.limited-editions-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
}
section.page-content.limited-editions-page .brand-header,
.limited-editions-page .brand-header {
  text-align: center;
  margin-bottom: 30px;
}
section.page-content.limited-editions-page .brand-header .brand-title,
.limited-editions-page .brand-header .brand-title {
  font-size: 3rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 700px) {
  section.page-content.limited-editions-page .brand-header .brand-title,
  .limited-editions-page .brand-header .brand-title {
    font-size: 2rem;
  }
}
section.page-content.limited-editions-page .limited-editions-years-nav,
.limited-editions-page .limited-editions-years-nav {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
section.page-content.limited-editions-page .limited-editions-years-nav .year-button,
.limited-editions-page .limited-editions-years-nav .year-button {
  padding: 6px 24px;
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  background-color: transparent;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}
section.page-content.limited-editions-page .limited-editions-years-nav .year-button:hover,
.limited-editions-page .limited-editions-years-nav .year-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #E8B320;
  color: #E8B320;
}
section.page-content.limited-editions-page .limited-editions-years-nav .year-button.active,
.limited-editions-page .limited-editions-years-nav .year-button.active {
  background-color: #E8B320;
  border-color: #E8B320;
  color: #FFFFFF;
}
section.page-content.limited-editions-page .limited-editions-years-nav .year-button.active:hover,
.limited-editions-page .limited-editions-years-nav .year-button.active:hover {
  background-color: #E8B320;
  border-color: #E8B320;
  color: #FFFFFF;
}
section.page-content.limited-editions-page .limited-editions-content,
.limited-editions-page .limited-editions-content {
  margin-top: 40px;
  color: #FFFFFF;
}

section.page-content.launch-support-page,
.launch-support-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
}
section.page-content.launch-support-page .brand-header,
.launch-support-page .brand-header {
  text-align: center;
  margin-bottom: 30px;
}
section.page-content.launch-support-page .brand-header .brand-title,
.launch-support-page .brand-header .brand-title {
  font-size: 3rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 700px) {
  section.page-content.launch-support-page .brand-header .brand-title,
  .launch-support-page .brand-header .brand-title {
    font-size: 2rem;
  }
}
section.page-content.launch-support-page .limited-editions-years-nav,
.launch-support-page .limited-editions-years-nav {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
section.page-content.launch-support-page .limited-editions-years-nav .year-button,
.launch-support-page .limited-editions-years-nav .year-button {
  padding: 6px 24px;
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  background-color: transparent;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}
section.page-content.launch-support-page .limited-editions-years-nav .year-button:hover,
.launch-support-page .limited-editions-years-nav .year-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #E8B320;
  color: #E8B320;
}
section.page-content.launch-support-page .limited-editions-years-nav .year-button.active,
.launch-support-page .limited-editions-years-nav .year-button.active {
  background-color: #E8B320;
  border-color: #E8B320;
  color: #FFFFFF;
}
section.page-content.launch-support-page .limited-editions-years-nav .year-button.active:hover,
.launch-support-page .limited-editions-years-nav .year-button.active:hover {
  background-color: #E8B320;
  border-color: #E8B320;
  color: #FFFFFF;
}
section.page-content.launch-support-page .limited-editions-content,
.launch-support-page .limited-editions-content {
  margin-top: 40px;
  color: #FFFFFF;
}

.top-bar-desktop-brand {
  margin: auto 16px;
  width: auto;
}
.top-bar-desktop-brand .logo {
  margin: 0;
  padding: 0;
}
.top-bar-desktop-brand .logo img {
  display: block;
  height: 70px;
  width: auto;
  object-fit: contain;
}

.side-bar {
  background-color: var(--backgroundB);
  color: var(--background-color);
}
.side-bar .logo img {
  display: block;
  margin: 0 auto;
  height: 70px;
  width: auto;
  aspect-ratio: 346/120;
  text-align: center;
}
.side-bar h3 {
  margin: 0;
  padding: 0 0 0 24px;
}
.side-bar nav {
  padding: 10px 0;
}
.side-bar nav ul {
  margin: 0;
}

#submenu_activated_name {
  display: none;
  font-size: 15px;
  padding: 10px 24px;
  background-color: var(--backgroundA);
}

.side-menu ul, .my-side-menu ul, .shop-menu ul {
  list-style: none;
}
.side-menu li, .my-side-menu li, .shop-menu li {
  list-style: none;
}
.side-menu li.active, .my-side-menu li.active, .shop-menu li.active {
  font-weight: 700;
  background-color: var(--backgroundC);
  padding-top: 6px;
  padding-bottom: 6px;
}
.side-menu a, .my-side-menu a, .shop-menu a {
  color: inherit;
  text-decoration: none;
  margin: 2px 2px 2px 24px;
}
.side-menu, .my-side-menu, .shop-menu {
  animation: fadein 1400ms cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nest-menu li.active {
  font-weight: 700;
  background-color: var(--backgroundC);
  padding-top: 6px;
  padding-bottom: 6px;
}
.nest-menu a {
  position: relative;
  display: block;
  margin-left: 24px;
  padding: 2px 0 0 20px;
  color: inherit;
  text-decoration: none;
}
.nest-menu a:before {
  content: " ";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  left: 0;
  font-weight: 700;
  background: url("../img/icons/menu-dash.svg") no-repeat left center;
}

.my-side-menu {
  font-size: 1rem;
}
.my-side-menu em, .my-side-menu br {
  display: none;
  font-size: 0.8em;
}
.my-side-menu span > * {
  pointer-events: none;
}

#add_to_my_menu button {
  margin-left: 24px;
  padding: 0;
  background: none;
  color: var(--background-color);
  font-size: 1rem;
  text-align: left;
}

.side-bar nav.shop-menu ul {
  padding-top: 0;
  margin-top: 0;
}
.side-bar nav.shop-menu ul li {
  margin-bottom: 5px;
}
.side-bar nav.shop-menu ul li ul {
  margin: 10px 0;
  padding-left: 0;
}
.side-bar nav.shop-menu ul li ul a::before {
  content: "— ";
  font-weight: 700;
}

.top-bar-mobile {
  background-color: var(--backgroundB);
  height: 80px;
}
.top-bar-mobile div:nth-child(1) {
  height: 100%;
}
.top-bar-mobile div:nth-child(1) figure {
  height: 100%;
}
.top-bar-mobile div:nth-child(1) img {
  width: auto;
  height: 80%;
  max-width: 180px;
  object-fit: contain;
  margin-top: 5px;
}
.top-bar-mobile div:nth-child(2) {
  padding: 10px;
}
.top-bar-mobile div:nth-child(3) {
  cursor: pointer;
  padding-right: 15px;
  padding-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-bar-mobile div:nth-child(3) * {
  pointer-events: none;
}
.top-bar-mobile div:nth-child(3) img {
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 768px) {
  #mobile_menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999900;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  #mobile_menu_overlay.mobile-menu-closed {
    opacity: 0;
    visibility: hidden;
  }
  #mobile_menu_overlay.mobile-menu-open {
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: rgb(60, 60, 59) !important;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  #mobile_menu_overlay.mobile-menu-open .mobile-menu-container {
    transform: translateX(0);
  }
  .mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-close-btn .mobile-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
  }
  .mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0;
  }
  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu-item.active .mobile-menu-title,
  .mobile-menu-item.active .mobile-menu-link {
    color: #E8B320;
  }
  .mobile-menu-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 1.28rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.2s ease;
  }
  .mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  .mobile-menu-toggle.toggle-active .mobile-menu-title {
    color: #E8B320;
  }
  .mobile-menu-toggle.toggle-active .mobile-menu-arrow {
    transform: rotate(180deg);
  }
  .mobile-menu-title {
    flex: 1;
    text-align: left;
    color: #FFFFFF;
  }
  .mobile-menu-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
    color: #FFFFFF;
    margin-left: 10px;
  }
  .mobile-submenu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .mobile-submenu-list.submenu-open {
    max-height: 1000px;
  }
  .mobile-submenu-list li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .mobile-submenu-list li:last-child {
    border-bottom: none;
  }
  .mobile-submenu-list a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1733333333rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .mobile-submenu-list a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #E8B320;
  }
  .mobile-menu-link {
    display: block;
    padding: 16px 20px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.28rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .mobile-menu-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #E8B320;
  }
  .mobile-menu-text {
    display: block;
    padding: 16px 20px;
    color: #FFFFFF;
    font-size: 1.28rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu-help {
    display: flex;
    align-items: center;
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 1.1733333333rem;
    font-weight: 400;
    text-transform: uppercase;
  }
  .mobile-menu-help .icon {
    filter: invert(1);
    margin-right: 8px;
  }
  .mobile-menu-help:hover {
    color: #E8B320 !important;
  }
}
@media screen and (min-width: 769px) {
  #mobile_menu_overlay {
    display: none !important;
  }
}
.shop-menu-mobile {
  display: none;
  padding: 24px 24px 24px 0;
}
@media screen and (max-width: 700px) {
  .shop-menu-mobile {
    display: block;
  }
}
.shop-menu-mobile {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

h3.my-menu-head-mob {
  margin-top: 24px;
  padding-left: 24px;
  font-size: 1rem;
  color: var(--backgroundC);
}

.my-side-menu-mob {
  margin: 24px;
  padding: 0;
  font-size: 1.0666666667rem;
}
.my-side-menu-mob a {
  color: #FFFFFF !important;
}
.my-side-menu-mob em, .my-side-menu-mob br {
  display: none;
  font-size: 0.8em;
}
.my-side-menu-mob span > * {
  pointer-events: none;
}
.my-side-menu-mob .icon {
  filter: invert(1);
}
.my-side-menu-mob ul, .my-side-menu-mob li {
  margin: 0;
  padding: 0;
}

#add_to_my_menu_mob_btn {
  margin-left: 24px;
  padding: 0;
  background: none;
  color: var(--text-color);
}
#add_to_my_menu_mob_btn .icon {
  filter: invert(0);
}

.user-side-menu span {
  display: block;
  margin-top: 10px;
  padding-left: 24px;
}

h3.my-meu-head {
  font-size: 1rem;
  color: var(--backgroundC);
}

.page-footer {
  margin-top: 20px;
  padding: 10px 24px;
  background-color: var(--text-color);
  color: var(--background-color);
}
.page-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.page-footer .footer-content .footer-left {
  flex: 0 0 auto;
}
.page-footer .footer-content .footer-right {
  flex: 0 0 auto;
}
.page-footer .footer-content .footer-help-link {
  color: var(--background-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}
.page-footer .footer-content .footer-help-link:hover {
  opacity: 0.8;
}
.page-footer .footer-content .footer-help-link .icon {
  filter: invert(1);
  margin-right: 5px;
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 700px) {
  .page-footer .footer-content {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .page-footer .footer-content .footer-right {
    align-self: flex-end;
  }
}

body.page-posm-catalogue .page-container .page-footer,
body.page-communication .page-container .page-footer,
body.page-visibility .page-container .page-footer,
body.page-best-practices .page-container .page-footer,
body.page-links .page-container .page-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  margin-left: -50vw !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  padding: 10px 24px !important;
  margin-top: 20px !important;
  grid-column: 1/-1 !important;
}

body.page-posm-catalogue,
body.page-communication,
body.page-visibility,
body.page-best-practices,
body.page-links {
  overflow-x: hidden;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--backgroundC);
  color: var(--background-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.scroll-to-top:active {
  transform: translateY(-1px);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}
.scroll-to-top svg path {
  fill: #FFFFFF !important;
}
@media screen and (max-width: 700px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

#modal_status {
  transition: opacity 0.3s;
  text-transform: uppercase;
  text-align: center;
}
#modal_status.status_error {
  background-color: rgb(255, 143, 143);
  opacity: 1;
}
#modal_status.status_success {
  background-color: rgb(96, 206, 96);
  opacity: 1;
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px;
  filter: invert(1);
}

.icon-bg3 {
  filter: invert(90%) sepia(13%) saturate(5451%) hue-rotate(342deg) brightness(94%) contrast(92%);
}

.icon-big {
  width: 18px;
  height: 18px;
}

button {
  padding: 10px 25px;
  cursor: pointer;
  border-radius: 24px;
  background-color: var(--backgroundC);
  color: var(--background-color);
  border: none;
}
@media screen and (max-width: 700px) {
  button {
    display: block;
    margin: 2px auto;
  }
}

.err {
  display: block;
  padding: 3px 5px;
  margin: 5px 0;
  background-color: red;
  border-radius: 5px;
  border: 2px solid red;
  color: #FFF;
  text-decoration: none;
}

.txt-ctr {
  text-align: center;
}

.new {
  position: absolute;
  top: 10px;
  left: -11px;
  width: 70px;
  height: 60px;
  -webkit-clip-path: polygon(100% 0%, 100% 54%, 19% 55%, 17% 100%, 0 58%, 0 0);
  clip-path: polygon(100% 0%, 100% 54%, 19% 55%, 17% 100%, 0 58%, 0 0);
  background-color: var(--new);
  color: var(--background-color);
  padding: 3px 12px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.card {
  position: relative;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 24px;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: transform 0.2s ease-in-out;
}
.card a {
  color: inherit;
  text-decoration: none;
}
.card figure img {
  min-width: 100%;
  height: auto;
}
.card h2 {
  text-align: left;
}
.card p {
  font-size: 1rem;
  margin-bottom: 24px;
}
.card li {
  font-size: 1rem;
  margin-bottom: 6px;
}

.card-brand-group h2 {
  text-align: center;
}

.card-brand-portfolio {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-gap: 0;
  padding: 0;
}
@media screen and (max-width: 700px) {
  .card-brand-portfolio {
    grid-template-columns: 1fr;
  }
}
.card-brand-portfolio > div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.card-brand-portfolio > div:nth-child(1) figure {
  width: 100%;
}
.card-brand-portfolio > div:nth-child(2) {
  padding: 12px;
  background-color: var(--backgroundD);
  border-radius: 0 10px 10px 0;
}
.card-brand-portfolio h2 {
  margin: 0;
  font-size: 1.6rem;
  text-align: left;
}
.card-brand-portfolio table {
  padding: 15px 0;
  color: var(--text-color);
  font-size: 1rem;
}
.card-brand-portfolio table tr td:nth-child(2) {
  font-weight: 600;
  padding-left: 10px;
}
.card-brand-portfolio a {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--backgroundC);
}

.brand-photo {
  padding: 0;
  display: grid;
  grid-template-rows: 320px 1fr;
  grid-gap: 0;
  position: relative;
}
.brand-photo:hover {
  transform: scale(1.02);
}
.brand-photo figure {
  height: 100%;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-photo figure img {
  max-height: 100%;
  object-fit: contain;
  margin: 0 auto;
}
.brand-photo .detalle {
  padding: 12px 24px 24px;
  background-color: var(--backgroundD);
  border-radius: 0 0 10px 10px;
}
.brand-photo h2 {
  margin: 0;
  font-size: 1.6rem;
  text-align: left;
}

.card-news {
  padding: 0 0 24px;
  background-color: var(--backgroundD);
}
.card-news:hover {
  transform: scale(1.02);
}
.card-news figure {
  border-radius: 10px 10px 0 0;
  padding: 0;
  height: 230px;
  overflow: hidden;
}
.card-news figure img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  margin: 0 auto;
}
.card-news h2 {
  padding: 0 24px;
}
.card-news a {
  padding: 24px;
  font-weight: 600;
  color: var(--backgroundC);
  text-transform: uppercase;
}

.card-related .related {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}
.card-related .related .icon {
  filter: invert(0);
  width: 50px;
  height: 30px;
}
.card-related ul {
  padding: 5px;
  list-style: none;
}
.card-related li {
  color: var(--backgroundC);
}
.card-related li a {
  color: inherit;
  text-decoration: none;
}

.read-more:hover {
  transform: scale(1.02);
}
.read-more a {
  font-weight: 600;
  color: var(--backgroundC);
  text-transform: uppercase;
}

.noticia h1, .noticia h2, .noticia h3 {
  text-align: left;
  margin-top: 0;
  padding: 0 0 24px;
}
.noticia p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.list {
  padding: 10px 0 0;
}
.list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list li {
  padding-bottom: 5px;
}
.list a {
  font-weight: 600;
  color: var(--backgroundC);
}

#filter_form {
  margin-bottom: 15px;
}

.report {
  padding: 0;
  margin-bottom: 24px;
  overflow: hidden;
}
.report h2 {
  display: block;
  margin: 0;
  padding: 14px;
  background-color: var(--backgroundD);
  text-align: left;
}
.report .business-list {
  display: grid;
  padding: 20px;
  grid-template-columns: 100px 1fr 50px 50px;
  grid-gap: 15px;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .report .business-list {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 5px 20px 20px;
  }
  .report .business-list > div:nth-child(1) {
    width: 25%;
  }
  .report .business-list > div:nth-child(2) {
    width: 68%;
  }
  .report .business-list > div:nth-child(3) {
    margin-left: 75%;
    width: 10%;
  }
  .report .business-list > div:nth-child(4) {
    width: 10%;
  }
}

.business-filter {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.ap-layout {
  margin-bottom: 24px;
}

.card-ap {
  padding: 0;
  overflow: hidden;
}
.card-ap.ap-last > div {
  grid-template-columns: 1fr;
}
.card-ap > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px;
  text-align: center;
  font-size: 1rem;
}
.card-ap > div:nth-child(1) {
  background-color: var(--backgroundD);
  font-weight: 700;
  text-transform: uppercase;
}
.card-ap > div > div:last-child {
  font-weight: 700;
}

.card-order {
  display: grid;
  grid-template-columns: 4fr 4fr 3fr 50px;
  margin-bottom: 24px;
  font-size: 1rem;
}

.view-order img {
  pointer-events: none;
}

.gallery {
  overflow: hidden;
  padding: 0;
  background-color: var(--backgroundD);
}
.gallery figure {
  width: 100%;
  height: 300px;
}
.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery h2 {
  text-align: left;
  padding: 0 24px;
}
.gallery p {
  margin-bottom: 24px;
  padding: 0 24px;
  text-transform: uppercase;
}
.gallery p a {
  font-weight: 600;
  color: var(--backgroundC);
}

.thumbnail {
  width: 100%;
  margin-bottom: 0;
  padding: 0 12px 24px;
  aspect-ratio: 1/1;
  background: none;
}
.thumbnail:hover {
  transform: scale(1.02);
}
.thumbnail figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.thumbnail figure img {
  object-fit: cover;
  object-position: center center;
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
}

.top-banner {
  margin: 0;
  margin-left: -24px;
  margin-right: -24px;
  width: calc(100% + 48px);
  background-color: transparent;
  position: relative;
  overflow: hidden;
  padding: 20px;
}
@media screen and (max-width: 700px) {
  .top-banner {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    display: block !important;
    padding: 20px;
  }
}

.splide, .splide__list, .splide__track, .splide__slide {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
}

.splide__slide {
  position: relative;
  width: 100% !important;
  height: auto !important;
}

.splide__slide img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block;
  object-fit: contain !important;
  object-position: center center;
}

.splide__slide .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-items: center;
}
.splide__slide .text h2 {
  font-weight: 600;
  font-size: 4rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 700px) {
  .splide__slide .text h2 {
    font-size: 2rem;
    padding: 0 12px;
    text-align: center;
  }
}
.splide__slide .text h2 a {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 2rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 700px) {
  .splide__slide .text h2 a {
    font-size: 1.6rem;
  }
}

ul.splide__pagination {
  bottom: 20px;
}

button.splide__pagination__page {
  width: 50px;
  height: 4px;
  margin: 7px;
  border-radius: 10px;
}
button.splide__pagination__page.is-active {
  opacity: 1;
  transform: scale(1);
}

.page-banner {
  width: 70%;
  margin: 24px auto;
}
@media screen and (max-width: 700px) {
  .page-banner {
    width: 100%;
  }
}

.home-logos {
  margin: 30px auto 60px;
  max-width: 1200px;
  padding: 0 20px;
}
.home-logos .logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}
.home-logos .logos-grid .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: transform 0.3s ease;
  opacity: 1;
}
.home-logos .logos-grid .logo-item:hover {
  transform: translateY(-5px);
}
.home-logos .logos-grid .logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.home-logos .logos-grid a.logo-item {
  text-decoration: none;
}

#mymenu_popup_bg {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}
#mymenu_popup_bg #mymenu_popup_content {
  position: relative;
  width: 600px;
  max-width: 96%;
  padding: 25px;
  flex-wrap: wrap;
  background-color: var(--background-color);
  border-radius: 12px;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.5);
  color: var(--backgroundC);
  text-decoration: none;
  text-align: center;
}
#mymenu_popup_bg #mymenu_popup_content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}
#mymenu_popup_bg #mymenu_popup_content .content {
  margin-top: 20px;
}
#mymenu_popup_bg #mymenu_popup_content .content h3 {
  margin: 20px auto;
  font-weight: 700;
}
#mymenu_popup_bg #mymenu_popup_content .content p {
  text-align: left;
  margin-bottom: 20px;
  color: #000;
}

.brand-nav-menu {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
  flex-wrap: wrap;
}
.brand-nav-menu .brand-nav-btn {
  padding: 6px 24px;
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  background-color: transparent;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.brand-nav-menu .brand-nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #E8B320;
  color: #E8B320;
}
.brand-nav-menu .brand-nav-btn.active {
  background-color: #E8B320;
  border-color: #E8B320;
  color: #FFFFFF;
}
.brand-nav-menu .brand-nav-btn.active:hover {
  background-color: #E8B320;
  border-color: #E8B320;
  color: #FFFFFF;
}

.marca-detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
}
.marca-detail-page .marca-header {
  text-align: center;
  margin-bottom: 30px;
}
.marca-detail-page .marca-header .marca-title {
  font-size: 3rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 700px) {
  .marca-detail-page .marca-header .marca-title {
    font-size: 2rem;
  }
}
.marca-detail-page .brand-nav-menu {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.marca-detail-page .brand-nav-menu a {
  padding: 6px 24px;
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  background-color: transparent;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.marca-detail-page .brand-nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #E8B320;
  color: #E8B320;
}
.marca-detail-page .brand-nav-menu a.active {
  background-color: #E8B320;
  border-color: #E8B320;
  color: #FFFFFF;
}
.marca-detail-page .brand-nav-menu a.active:hover {
  background-color: #E8B320;
  border-color: #E8B320;
  color: #FFFFFF;
}
.marca-detail-page .brand-nav-menu a.back-to-brand {
  padding: 6px 18px;
  font-size: 1.5rem;
  line-height: 1;
  min-width: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marca-detail-page .brand-nav-menu a.back-to-brand:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #E8B320;
  color: #E8B320;
  transform: translateX(-3px);
}
.marca-detail-page .marca-content {
  margin-top: 40px;
  color: #FFFFFF;
}
.marca-detail-page .brand-history-content .brand-history-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .marca-detail-page .brand-history-content .brand-history-wrapper {
    grid-template-columns: 1fr;
  }
}
.marca-detail-page .brand-history-content .brand-history-text {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  color: #000000;
  line-height: 1.8;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.marca-detail-page .brand-history-content .brand-history-text h1, .marca-detail-page .brand-history-content .brand-history-text h2, .marca-detail-page .brand-history-content .brand-history-text h3 {
  color: #000000;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
}
.marca-detail-page .brand-history-content .brand-history-text h1 {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
}
.marca-detail-page .brand-history-content .brand-history-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: left;
  color: #000000;
}
.marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text {
  text-align: left;
  color: #000000;
}
.marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text p, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text h1, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text h2, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text h3, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text h4, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text h5, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text h6, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text ul, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text ol, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text li, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text strong, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text b, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text em, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text i {
  text-align: left;
  color: #000000;
}
.marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text strong, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text b {
  font-weight: 700;
  color: #000000;
}
.marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text em, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text i {
  font-style: italic;
}
.marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text ul {
  list-style: disc;
  padding-left: 20px;
  margin: 20px 0;
}
.marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text ul li {
  margin-bottom: 10px;
  color: #000000;
  line-height: 1.6;
}
.marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text ul li strong, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text ul li b {
  font-weight: 700;
  display: inline;
  min-width: auto;
}
.marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text ol {
  list-style: decimal;
  padding-left: 20px;
  margin: 20px 0;
}
.marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text ol li {
  margin-bottom: 10px;
  color: #000000;
  line-height: 1.6;
}
.marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text ol li strong, .marca-detail-page .brand-history-content .brand-history-text .brand-history-content-text ol li b {
  font-weight: 700;
  display: inline;
  min-width: auto;
}
.marca-detail-page .brand-history-content .brand-history-logo .logo-box {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.marca-detail-page .brand-history-content .brand-history-logo .logo-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.marca-detail-page .brand-history-content .no-content {
  text-align: center;
  padding: 60px 20px;
  color: #CCCCCC;
  font-size: 1.1rem;
}
.marca-detail-page .brand-history-content .posm-documents-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.marca-detail-page .portfolio-content .submarcas-catalog-selector {
  margin-bottom: 40px;
}
.marca-detail-page .portfolio-content .submarcas-catalog-selector .submarcas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .marca-detail-page .portfolio-content .submarcas-catalog-selector .submarcas-grid {
    gap: 20px;
  }
}
.marca-detail-page .portfolio-content .submarcas-catalog-selector .submarca-catalog-card {
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  padding: 30px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 250px;
  flex-shrink: 0;
}
.marca-detail-page .portfolio-content .submarcas-catalog-selector .submarca-catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: #E8B320;
}
.marca-detail-page .portfolio-content .submarcas-catalog-selector .submarca-catalog-card.active {
  border-color: #E8B320;
  background-color: #FFF9E6;
  box-shadow: 0 6px 16px rgba(232, 179, 32, 0.3);
}
.marca-detail-page .portfolio-content .submarcas-catalog-selector .submarca-catalog-card .submarca-logo {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.marca-detail-page .portfolio-content .submarcas-catalog-selector .submarca-catalog-card .submarca-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.marca-detail-page .portfolio-content .submarcas-catalog-selector .submarca-catalog-card .submarca-nombre {
  text-align: center;
}
.marca-detail-page .portfolio-content .submarcas-catalog-selector .submarca-catalog-card .submarca-nombre h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}
.marca-detail-page .portfolio-content .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .marca-detail-page .portfolio-content .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
}
.marca-detail-page .portfolio-content .product-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.marca-detail-page .portfolio-content .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.marca-detail-page .portfolio-content .product-card .product-image {
  width: 100%;
  height: 300px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.marca-detail-page .portfolio-content .product-card .product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.marca-detail-page .portfolio-content .product-card .product-image .product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9rem;
}
.marca-detail-page .portfolio-content .product-card .product-info {
  padding: 20px;
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
  align-items: center;
  text-align: center;
}
.marca-detail-page .portfolio-content .product-card .product-info .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}
.marca-detail-page .portfolio-content .product-card .product-info .product-btn {
  padding: 8px 14px;
  font-size: 1.2rem;
  line-height: 1;
  min-width: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E8B320;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #E8B320;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  margin: 0 auto;
}
.marca-detail-page .portfolio-content .product-card .product-info .product-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: #E8B320;
  color: #E8B320;
}
.marca-detail-page .portfolio-content .product-modal {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.marca-detail-page .portfolio-content .product-modal.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.marca-detail-page .portfolio-content .product-modal .product-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  z-index: 1 !important;
  pointer-events: auto;
}
.marca-detail-page .portfolio-content .product-modal .product-modal-content {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 12px;
  max-width: 850px !important;
  width: 90% !important;
  max-height: 450px !important;
  overflow: visible !important;
  z-index: 10 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 0 !important;
}
.marca-detail-page .portfolio-content .product-modal .product-modal-content .product-modal-close {
  position: absolute !important;
  top: -18px !important;
  right: -18px !important;
  left: auto !important;
  padding: 8px 14px !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
  min-width: 36px !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #E8B320 !important;
  border-radius: 10px !important;
  background-color: #E8B320 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  z-index: 10003 !important;
}
.marca-detail-page .portfolio-content .product-modal .product-modal-content .product-modal-close:hover {
  background-color: #FFFFFF !important;
  border-color: #E8B320 !important;
  color: #E8B320 !important;
}
.marca-detail-page .portfolio-content .product-modal .product-modal-content .card-brand-portfolio {
  margin: 0 !important;
  max-height: 450px !important;
  overflow-y: auto !important;
  grid-template-columns: 7fr 9fr !important;
}
.marca-detail-page .portfolio-content .product-modal .product-modal-content .card-brand-portfolio > div:nth-child(1) {
  padding: 24px !important;
}
.marca-detail-page .portfolio-content .product-modal .product-modal-content .card-brand-portfolio > div:nth-child(2) {
  padding: 24px !important;
  border-radius: 0 12px 12px 0 !important;
}
@media screen and (max-width: 768px) {
  .marca-detail-page .portfolio-content .product-modal {
    display: none !important;
  }
}
.marca-detail-page .portfolio-content .no-products {
  text-align: center;
  padding: 60px 20px;
  color: #CCCCCC;
  font-size: 1.1rem;
}
.marca-detail-page .product-modal-mobile {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.marca-detail-page .product-modal-mobile.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  z-index: 1 !important;
  pointer-events: auto;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content {
  position: relative;
  background-color: #F5F5F5 !important;
  border-radius: 12px !important;
  max-width: 90% !important;
  width: 90% !important;
  max-height: 85vh !important;
  overflow-y: auto !important;
  z-index: 10001 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 0 !important;
  color: #000000 !important;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  padding: 8px 14px !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  min-width: 36px !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #E8B320 !important;
  border-radius: 10px !important;
  background-color: #E8B320 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  z-index: 10003 !important;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-close:hover {
  background-color: #FFFFFF !important;
  border-color: #E8B320 !important;
  color: #E8B320 !important;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info {
  color: #000000 !important;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info h2 {
  color: #000000 !important;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table tr:last-child {
  border-bottom: none;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table tr td {
  padding: 12px 8px;
  color: #000000 !important;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table tr td:first-child {
  font-weight: 600;
  width: 50%;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table tr td:last-child {
  text-align: right;
}
.marca-detail-page .product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info .download {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .marca-detail-page .product-modal-mobile {
    display: none !important;
  }
}
.marca-detail-page .product-modal-mobile-content {
  background-color: #F5F5F5 !important;
}
.marca-detail-page .photos-content .threesome {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .marca-detail-page .photos-content .threesome {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.marca-detail-page .photos-content .card.brand-photo .detalle {
  text-align: left;
}
.marca-detail-page .photos-content .card.brand-photo .detalle h2 {
  text-align: left;
}
.marca-detail-page .photos-content .card.brand-photo .detalle .list {
  text-align: left;
}
.marca-detail-page .photos-content .card.brand-photo .detalle .list ul {
  text-align: left;
  padding-left: 0;
  list-style: none;
}
.marca-detail-page .photos-content .card.brand-photo .detalle .list ul li {
  text-align: left;
}
.marca-detail-page .photos-content .card.brand-photo .detalle .list ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 10px;
}
.marca-detail-page .photos-content .card.brand-photo .detalle .list ul li a img.icon {
  display: inline-block;
  vertical-align: middle;
}
.marca-detail-page .photos-content .no-content {
  text-align: center;
  padding: 60px 20px;
  color: #CCCCCC;
  font-size: 1.1rem;
}
.marca-detail-page .key-visuals-content .threesome {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .marca-detail-page .key-visuals-content .threesome {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.marca-detail-page .key-visuals-content .card.brand-photo .detalle {
  text-align: left;
}
.marca-detail-page .key-visuals-content .card.brand-photo .detalle h2 {
  text-align: left;
}
.marca-detail-page .key-visuals-content .card.brand-photo .detalle .list {
  text-align: left;
}
.marca-detail-page .key-visuals-content .card.brand-photo .detalle .list ul {
  text-align: left;
  padding-left: 0;
  list-style: none;
}
.marca-detail-page .key-visuals-content .card.brand-photo .detalle .list ul li {
  text-align: left;
}
.marca-detail-page .key-visuals-content .card.brand-photo .detalle .list ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 10px;
}
.marca-detail-page .key-visuals-content .card.brand-photo .detalle .list ul li a img.icon {
  display: inline-block;
  vertical-align: middle;
}
.marca-detail-page .key-visuals-content .no-content {
  text-align: center;
  padding: 60px 20px;
  color: #CCCCCC;
  font-size: 1.1rem;
}

body.page-portfolio .brand-nav-menu .brand-nav-btn {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
body.page-portfolio .brand-nav-menu .brand-nav-btn.active {
  background-color: #E8B320;
  border-color: #E8B320;
  color: #FFFFFF;
}

.brand-detail-page {
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding: 0 20px 40px 20px;
}
.brand-detail-page .brand-header {
  text-align: center;
  margin-bottom: 30px;
}
.brand-detail-page .brand-header .brand-title {
  font-size: 3rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 10px;
}
.brand-detail-page .brand-header .brand-resumen {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #CCCCCC;
  max-width: 800px;
  margin: 0 auto;
}
.brand-detail-page .brand-marcas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 0;
  align-items: center;
  justify-items: center;
  justify-content: center;
}
.brand-detail-page .brand-marcas-grid.two-marcas {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.brand-detail-page .brand-marcas-grid.three-marcas {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.brand-detail-page .brand-marcas-grid .marca-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 220px;
  min-height: 400px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.brand-detail-page .brand-marcas-grid .marca-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.brand-detail-page .brand-marcas-grid .marca-card .marca-logo-link {
  text-decoration: none;
  display: block;
  width: 100%;
}
.brand-detail-page .brand-marcas-grid .marca-card .marca-logo {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  height: 180px;
}
.brand-detail-page .brand-marcas-grid .marca-card .marca-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-detail-page .brand-marcas-grid .marca-card .marca-nombre {
  margin-bottom: 10px;
  width: 100%;
}
.brand-detail-page .brand-marcas-grid .marca-card .marca-nombre h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2D2D2B;
  margin: 0;
}
.brand-detail-page .brand-marcas-grid .marca-card .marca-puro {
  width: calc(100% + 40px);
  margin: 0 -20px 0 -20px;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 350px;
  height: 350px;
}
.brand-detail-page .brand-marcas-grid .marca-card .marca-puro img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand-detail-page .brand-marcas-grid .marca-card .marca-puro-placeholder {
  width: 100%;
  margin-top: auto;
  padding: 20px;
  color: #666;
  font-size: 0.9rem;
}
.brand-detail-page .brand-marcas-grid .marca-card .marca-info-btn {
  padding: 8px 14px;
  font-size: 1.2rem;
  line-height: 1;
  min-width: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E8B320;
  border-radius: 10px;
  background-color: #FFFFFF;
  color: #E8B320;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  margin: 10px auto;
}
.brand-detail-page .brand-marcas-grid .marca-card .marca-info-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: #E8B320;
  color: #E8B320;
}
.brand-detail-page .no-marcas,
.brand-detail-page .brand-not-found {
  text-align: center;
  padding: 60px 20px;
  color: #FFFFFF;
}
.brand-detail-page .no-marcas h1,
.brand-detail-page .brand-not-found h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.brand-detail-page .no-marcas p,
.brand-detail-page .brand-not-found p {
  font-size: 1.1rem;
  color: #CCCCCC;
}

.product-modal-mobile {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.product-modal-mobile.active {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.product-modal-mobile .product-modal-mobile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  z-index: 1 !important;
  pointer-events: auto;
}
.product-modal-mobile .product-modal-mobile-content {
  position: relative;
  background-color: #F5F5F5 !important;
  border-radius: 12px !important;
  max-width: 90% !important;
  width: 90% !important;
  max-height: 85vh !important;
  overflow-y: auto !important;
  z-index: 10001 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 0 !important;
  color: #000000 !important;
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  padding: 8px 14px !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  min-width: 36px !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #E8B320 !important;
  border-radius: 10px !important;
  background-color: #E8B320 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  z-index: 10003 !important;
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-close:hover {
  background-color: #FFFFFF !important;
  border-color: #E8B320 !important;
  color: #E8B320 !important;
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info {
  color: #000000 !important;
  padding: 20px !important;
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info h2 {
  color: #000000 !important;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table tr:last-child {
  border-bottom: none;
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table tr td {
  padding: 12px 8px !important;
  color: #000000 !important;
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table tr td:first-child {
  font-weight: 600;
  width: 50%;
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info table tr td:last-child {
  text-align: right;
}
.product-modal-mobile .product-modal-mobile-content .product-modal-mobile-info .download {
  display: none !important;
}

@media screen and (min-width: 769px) {
  .product-modal-mobile {
    display: none !important;
  }
}
.shop-block > div > h2:first-of-type {
  margin-top: 0;
}

.prod-list-item {
  text-align: center;
}
.prod-list-item h3 {
  font-weight: 700;
}
.prod-list-item div {
  margin-top: 10px;
}

.sub-category a {
  display: block;
  margin: 24px auto;
  width: 100%;
  padding: 0;
  max-width: 800px;
  transform: scale(1);
  transition: transform 0.25s ease-in-out;
}
.sub-category a:hover {
  transform: scale(1.03);
}
.sub-category a img {
  width: 100%;
}

.prod-img-desc {
  position: relative;
  border-radius: 10px;
}
.prod-img-desc .prod-img {
  z-index: 9999;
  position: relative;
}
.prod-img-desc .prod-img img {
  z-index: 6;
  transform-origin: top left;
  transform: scale(1) translate(0, 0);
  transition: transform 0.5s ease-in-out;
  border: 1px solid var(--backgroundD);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.prod-img-desc .prod-img img.zoom {
  border: 1px solid var(--backgroundD);
  border-radius: 10px;
  transform: scale(1.75) translate(-25px, -25px);
  box-shadow: 4px 4px 12px 2px rgba(0, 0, 0, 0.2);
}
.prod-img-desc .prod-zoom {
  z-index: 2;
  display: block;
  margin-right: 0;
  text-align: right;
  border: 2px solid var(--backgroundD);
  border-top: none;
}
.prod-img-desc .prod-zoom img.icon {
  margin: 15px 10px;
  height: 30px;
  width: 30px;
}
.prod-img-desc .prod-desc {
  padding: 24px;
  background: var(--backgroundD);
  border: 2px solid var(--backgroundD);
  border-radius: 0 0 10px 10px;
  font-size: 1rem;
}

input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0 2px 0 2px;
  transform: translateY(6px);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid var(--backgroundA);
  border-radius: 50%;
  background-color: var(--background-color);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
input[type=radio]:checked {
  background-color: var(--backgroundC);
}

.prod-order-config {
  margin-left: 24px;
}

.prod-brands, .prod-precios {
  margin: 24px 0;
  width: 90%;
  border-collapse: collapse;
}
.prod-brands thead tr th, .prod-precios thead tr th {
  padding: 10px 0;
  text-align: left;
  font-weight: 400;
}

.prod-precios {
  font-size: 1rem;
}
.prod-precios thead tr th {
  border-top: 2px solid var(--backgroundC);
  border-bottom: 2px solid var(--backgroundC);
}
.prod-precios td:nth-child(1), .prod-precios th:nth-child(1) {
  text-align: center;
}
.prod-precios td:nth-child(2), .prod-precios th:nth-child(2) {
  text-align: right;
  padding-right: 15px;
}

.cart-total {
  border-top: 2px solid var(--backgroundC);
}
.cart-total p {
  font-size: 15px;
  margin-bottom: 5px;
}

.prod-add input[type=number] {
  padding: 10px;
}
.prod-add tr td {
  padding: 10px 5px;
}

.cart-item {
  margin-bottom: 15px;
  padding-top: 10px;
  border-top: 2px solid var(--backgroundD);
}
.cart-item .two-to-one > div:nth-child(2n), .cart-item .fifty-fifty > div:nth-child(2n) {
  text-align: right;
}
.cart-item strong {
  font-size: 1.15em;
}
.cart-item .del {
  width: 50px;
  cursor: pointer;
}
.cart-item .del > * {
  pointer-events: none;
}

.cart-total {
  width: 100%;
  padding: 15px 0;
  font-size: 1.15em;
}
.cart-total > div > div:nth-child(2) {
  text-align: right;
}
.cart-total .center {
  margin: 35px auto 10px;
  width: 90%;
}
.cart-total button {
  width: 100%;
}

#user_cart_fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.9s ease-in-out;
}
#user_cart_fullscreen.active {
  display: block;
}

#user_cart_large {
  width: 100%;
  height: 100%;
  display: flex;
  animation: popin 0.5s ease-in-out reverse;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#user_cart_large.active {
  opacity: 1;
  transform: scale(1);
}

.cart-large {
  height: 90%;
  width: 90%;
  max-width: 900px;
  margin: 5% auto;
  padding: 10px 25px;
  overflow-y: scroll;
}

.order-block {
  margin: 10px auto;
  padding: 24px;
  border-radius: 10px;
  background-color: var(--backgroundC);
  color: var(--background-color);
}
.order-block textarea {
  margin: 10px 0 20px;
  padding: 10px;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--background-color);
  border: none;
}

.cart-order-list {
  margin: 20px 2%;
  width: 96%;
  border-collapse: collapse;
}
.cart-order-list thead tr th {
  border-top: 1px solid var(--backgroundC);
  border-bottom: 1px solid var(--backgroundC);
  padding: 10px 4px;
  text-transform: uppercase;
}
.cart-order-list thead tr th:nth-child(1) {
  width: 15%;
  text-align: left;
}
.cart-order-list thead tr th:nth-child(2) {
  width: 45%;
  text-align: left;
}
.cart-order-list thead tr th:nth-child(3) {
  width: 10%;
  text-align: center;
}
.cart-order-list thead tr th:nth-child(4) {
  width: 15%;
  text-align: right;
}
.cart-order-list thead tr th:nth-child(5) {
  width: 15%;
  text-align: right;
}
.cart-order-list tbody tr td {
  padding: 10px 4px 5px;
  border-bottom: 1px solid var(--backgroundC);
}
.cart-order-list tbody tr td:nth-child(1) {
  width: 15%;
  text-align: left;
}
.cart-order-list tbody tr td:nth-child(2) {
  width: 45%;
  text-align: left;
}
.cart-order-list tbody tr td:nth-child(3) {
  width: 10%;
  text-align: center;
}
.cart-order-list tbody tr td:nth-child(4) {
  width: 15%;
  text-align: right;
}
.cart-order-list tbody tr td:nth-child(5) {
  width: 15%;
  text-align: right;
}
.cart-order-list tbody img {
  padding-right: 7px;
}
.cart-order-list tfoot tr {
  border-bottom: 1px solid var(--backgroundC);
}
.cart-order-list tfoot tr td {
  padding: 10px 0;
  font-weight: 700;
  text-align: right;
}
.cart-order-list tfoot tr td:nth-child(1) {
  width: 85%;
}
.cart-order-list tfoot tr td:nth-child(2) {
  width: 15%;
}
.cart-order-list .del {
  cursor: pointer;
}
.cart-order-list .del img {
  pointer-events: none;
}

.order-buttons {
  margin: 20px auto;
  text-align: center;
}

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