/** Shopify CDN: Minification failed

Line 31:19 Expected identifier but found whitespace
Line 31:21 Unexpected "{"
Line 31:37 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-nav-dice-v1 (INDEX:31, SCOPED:FALSE) */
.custom-nav-wrapper {
  width: 100%;
  background-color: #fff;
  font-family: sans-serif;
  position: relative;
  z-index: 1000;
}

.custom-nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 10px 20px;
  position: relative;
}
.custom-nav-button {
  border-radius: 10px;
  background-color: {{bg_color_button}};
  transition: background-color 0.3s;
  position: relative;
  padding: 10px 15px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.custom-nav-button .dice-image {
  display: none;
  position: absolute;
  top: -40px;
  left: 45%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
}
/* Dice falling animation */
@keyframes dice-fall {
  0% {
    transform: translateY(-150px) rotate(20deg);
    opacity: 0;
  }
  50% {
    transform: translateY(-30px) rotate(-30deg);
    opacity: 1;
  }
  70% {
    transform: translateY(-25px) rotate(10deg) ;
  }
  85% {
    transform: translateY(-20px) rotate(-5deg);
  }
  100% {
    transform: translateY(-15px) rotate(0deg);
  }
}

.custom-nav-button .dice-image {
  display: block; /* ensure visible */
  animation: dice-fall 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: center bottom; /* rotate around bottom */
}

.custom-nav-button.active .dice-image {
  display: block;
}

.custom-nav-button img.button-icon {
  width: 20px;
  height: 20px;
}

.custom-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 999;
}

.custom-submenu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.custom-submenu a:hover {
  background-color: #f0f0f0;
}

.custom-nav-button:hover .custom-submenu {
  display: block;
}
.custom-nav-button a.button-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mobile Styles */
.mobile-nav-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  z-index: 1010;
}

.mobile-nav-toggle div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 6px rgba(0,0,0,0.2);
  padding-top: 60px;
  transition: 0.3s;
  z-index: 1009;
}

.mobile-nav-drawer.open {
  left: 0;
}

.mobile-nav-drawer .custom-nav-button {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-nav-drawer .custom-submenu {
  position: relative;
  top: 0;
  left: 0;
  box-shadow: none;
  min-width: 100%;
  display: none;
  padding-left: 20px;
}

.mobile-nav-drawer .custom-nav-button.open .custom-submenu {
  display: block;
}

@media screen and (max-width: 768px) {
  .custom-nav-container { display: none; }
  .mobile-nav-toggle { display: block; }
}
/* END_SECTION:custom-nav-dice-v1 */

/* START_SECTION:custom-nav-dice-v2 (INDEX:32, SCOPED:FALSE) */
.custom-nav-wrapper {
  width: 100%;
  background-color: #fff;
  font-family: sans-serif;
  position: relative;
  z-index: 1000;
}

.custom-nav-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 0px 0px;
  position: relative;
  gap: 0px;
}

.custom-nav-button {
  border-radius: 10px;
  transition: background-color 0.3s;
  position: relative;
  padding: 0px 0px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  flex: 1;
  min-width: 120px;
}

.custom-nav-button .dice-image {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

/* Dice falling animation */
@keyframes dice-fall {
  0% {
    transform: translate(-50%, -50px) rotate(20deg);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, 10px) rotate(20deg);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, 10px) rotate(-5deg);
  }
  85% {
    transform: translate(-50%, 10px) rotate(-2deg);
  }
  100% {
    transform: translate(-50%, 10px) rotate(0deg);
  }
}

.custom-nav-button.active .dice-image {
  display: block;
  animation: dice-fall 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: center bottom;
}

.custom-nav-button img.button-icon {
  display: block;
  width: auto;
  height: auto;
}

.custom-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 999;
  margin-top: 5px;
}

.custom-submenu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.custom-submenu a:hover {
  background-color: #f0f0f0;
}

/* CSS trick: Only show if not empty (requires clean HTML) */
.custom-nav-button:hover .custom-submenu:not(:empty) {
  display: block;
}

.custom-nav-button a.button-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/* Mobile Styles */
.mobile-nav-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  z-index: 1010;
}

.mobile-nav-toggle div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 6px rgba(0,0,0,0.2);
  padding-top: 60px;
  transition: 0.3s;
  z-index: 1009;
}

.mobile-nav-drawer.open {
  left: 0;
}

.mobile-nav-drawer .custom-nav-button {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  max-width: 100%;
  flex: none;
}

.mobile-nav-drawer .custom-submenu {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  box-shadow: none;
  min-width: 100%;
  display: none;
  padding-left: 20px;
}

.mobile-nav-drawer .custom-nav-button.open .custom-submenu {
  display: block;
}

@media screen and (max-width: 768px) {
  .custom-nav-container { display: none; }
  .mobile-nav-toggle { display: block; }
  .mobile-nav-drawer { display: block; }
}
/* END_SECTION:custom-nav-dice-v2 */

/* START_SECTION:custom-nav-dice-v3 (INDEX:33, SCOPED:FALSE) */
/* --- Desktop & General Styles --- */
.custom-nav-wrapper {
  width: 100%;
  background-color: #fff;
  font-family: sans-serif;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  display: block;
  line-height: 0;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-top: 2px solid #9a78d7;
  border-bottom: 2px solid #9a78d7;
}

.custom-nav-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  position: relative;
  min-height: 60px;
  padding: 0 !important;
  margin: 0 !important;
}

.custom-nav-button {
  border-radius: 0px;
  transition: background-color 0.3s;
  position: relative;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 120px;
}

/* Desktop Dice Position */
.custom-nav-button .dice-image {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.custom-nav-button img.button-icon {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 0;
}

/* Desktop Dice Animation */
@keyframes dice-fall {
  0% { transform: translate(-50%, -50px) rotate(20deg); opacity: 0; }
  50% { transform: translate(-50%, 10px) rotate(20deg); opacity: 1; }
  70% { transform: translate(-50%, 10px) rotate(-5deg); }
  85% { transform: translate(-50%, 10px) rotate(-2deg); }
  100% { transform: translate(-50%, 10px) rotate(0deg); }
}

.custom-nav-container .custom-nav-button.active .dice-image {
  display: block;
  animation: dice-fall 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: center bottom;
}

/* Submenu Styles */
.custom-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 999;
  margin-top: 5px;
}

.custom-submenu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.custom-submenu a:hover {
  background-color: #f0f0f0;
}

.custom-nav-button:hover .custom-submenu:not(:empty) {
  display: block;
}

.custom-nav-button a.button-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/* Desktop Dice Hover Grow */
@media screen and (min-width: 769px) {
  .custom-nav-button:hover .dice-image {
    transform: translateX(-50%) scale(1.05) !important;
    transition: transform 0.1s ease-in-out;
    z-index: 10;
  }
  .dice-image {
    transition: transform 0.1s ease-in-out;
  }
    .custom-nav-button:hover .button-icon {
    transform: scale(1.05);
  }
}
@media screen and (min-width: 769px) {
  .mobile-nav-toggle {
    display: none !important;
  }
  
  .mobile-nav-drawer {
    display: none !important;
  }
}

/* --- Mobile Specific Styles --- */
@media screen and (max-width: 768px) {
  /* Hide desktop buttons */
  .custom-nav-container > .custom-nav-button { 
    display: none !important; 
  }
  
  .mobile-nav-toggle { display: flex !important; }

  /* Drawer content: right-aligned */
  .mobile-nav-drawer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding: 0;
  }

 .mobile-nav-drawer .custom-nav-button {
    flex-direction: row; /* Dice on right */
    align-items: center;
    justify-content: flex-end;
    width: 80%;
    padding: 10px 20px;
    gap: 10px;
    position: relative;
  }
  .mobile-nav-drawer .custom-nav-button .dice-image {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 8px; /* Distance from left edge of screen */
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
    .mobile-nav-drawer .custom-nav-button .button-icon {
    width: auto;
    height: 40px;
    flex: none;       /* prevent stretching */
  }

  .mobile-nav-drawer .custom-nav-button a.button-link {
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* Mobile dice animation (optional) */
  @keyframes dice-wobble-left {
    0% { transform: translate(-150%, -50%) rotate(-45deg); opacity: 0; }
    50% { transform: translate(-110%, -50%) rotate(15deg); opacity: 1; }
    75% { transform: translate(-120%, -50%) rotate(-5deg); }
    100% { transform: translate(-115%, -50%) rotate(0deg); }
  }

  .mobile-nav-drawer .custom-nav-button.active .dice-image {
    animation: dice-wobble-left 0.5s ease-out forwards;
  }
}

/* Mobile Toggle Button */
.mobile-nav-toggle {
  display: none;
  width: 100%;
  height: 60px;        /* Changed from min-height to fixed height */
  padding: 0 20px;          /* Removed horizontal padding to ensure perfect center */
  margin: 0;
  cursor: pointer;
  z-index: 1010;
  background-color: #9a78d7;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  display: flex;
  justify-content: flex-end; /* Changed from flex-end to center */
  align-items: center;     /* Ensures vertical centering */
  gap: 12px;
  box-sizing: border-box;
  line-height: normal;     /* Overrides line-height: 0 from the wrapper */
}


.mobile-nav-toggle .menu-text {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #000;
  margin: 0;               /* Ensure no stray margins are pushing it down */
  display: inline-block;
}

.mobile-nav-toggle .hamburger-icon {
  width: 24px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
}

.mobile-nav-toggle .hamburger-icon span {
  background-color: #000;
  height: 2px;
  width: 100%;
  display: block;
  transition: all 0.3s ease;  /* ADDED */
}

.mobile-nav-toggle.open .hamburger-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);  /* ADJUSTED */
}
.mobile-nav-toggle.open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open .hamburger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);  /* ADJUSTED */
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1009;
  max-height: none !important; 
  overflow: visible !important; 
  box-shadow: 0 0px 0px rgba(0,0,0,0);
}

.mobile-nav-drawer.open {
  display: block;
}
/* END_SECTION:custom-nav-dice-v3 */

/* START_SECTION:custom-nav-dice-v4 (INDEX:34, SCOPED:FALSE) */
/* --- Desktop & General Styles --- */
.custom-nav-wrapper {
  width: 100%;
  background-color: #fff;
  font-family: sans-serif;
  position: relative;
  z-index: 1000;
  display: block;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  line-height: normal;
  height: 60px;
  min-height: 60px;
}

.custom-nav-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  position: relative;
  height: 60px;
  min-height: 60px;
  padding: 0 !important;
  margin: 0 !important;
  border-top: 5px solid #9a78d7;
  border-bottom: 5px solid #9a78d7;
  box-sizing: border-box;
}

.custom-nav-button {
  border-radius: 0px;
  transition: background-color 0.3s;
  position: relative;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 120px;
  height: 100%;
  justify-content: center;
}

/* Desktop Dice Position */
.custom-nav-button .dice-image {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-40%);
  z-index: 2;
}

.custom-nav-button img.button-icon {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 0;
  transform: none;
}

/* Desktop Dice Animation */
@keyframes dice-fall {
  0% { transform: translate(-50%, -50px) rotate(20deg); opacity: 0; }
  50% { transform: translate(-50%, 10px) rotate(20deg); opacity: 1; }
  70% { transform: translate(-50%, 10px) rotate(-5deg); }
  85% { transform: translate(-50%, 10px) rotate(-2deg); }
  100% { transform: translate(-50%, 10px) rotate(0deg); }
}

.custom-nav-container .custom-nav-button.active .dice-image {
  display: block;
  animation: dice-fall 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: center bottom;
}

/* Submenu Styles */
.custom-submenu {
  display: none;
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #9a78d7; /* MATCH PURPLE */
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  border-radius: 6px;
  z-index: 999;
  text-align: center; /* CENTER TEXT */
}


/* Invisible hover bridge */
.custom-nav-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}


.custom-submenu a {
  display: block;
  padding: 10px 16px;
  color:rgb(0, 0, 0);              /* White text */
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  font-weight: 500;
}


.custom-submenu a:hover {
  background-color: #f0f0f0;
}

@media screen and (min-width: 769px) {
  .custom-nav-button:hover .custom-submenu:not(:empty) {
    display: block;
  }
}

.custom-nav-button a.button-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

/* Desktop Dice Hover Grow */
@media screen and (min-width: 769px) {
  .custom-nav-button:hover .dice-image {
    transform: translateX(-50%) scale(1.05) !important;
    transition: transform 0.1s ease-in-out;
    z-index: 10;
  }
  .dice-image {
    transition: transform 0.1s ease-in-out;
  }
    .custom-nav-button:hover .button-icon {
    transform: scale(1.02);
  }
}
@media screen and (min-width: 769px) {
  .mobile-nav-toggle {
    display: none !important;
  }
  
  .mobile-nav-drawer {
    display: none !important;
  }
}

/* --- Mobile Specific Styles --- */
@media screen and (max-width: 768px) {
  /* Hide desktop buttons */
  .custom-nav-container > .custom-nav-button { 
    display: none !important; 
  }
  
  .mobile-nav-toggle { display: flex !important; }

  /* Drawer content: right-aligned */
  .mobile-nav-drawer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    padding: 0;
  }

 .mobile-nav-drawer .custom-nav-button {
    flex-direction: row; /* Dice on right */
    align-items: center;
    justify-content: flex-end;
    width: 80%;
    padding: 10px 20px;
    gap: 10px;
    position: relative;
  }
  .mobile-nav-drawer .custom-nav-button .dice-image {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 8px; /* Distance from left edge of screen */
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
    .mobile-nav-drawer .custom-nav-button .button-icon {
    width: auto;
    height: 40px;
    flex: none;       /* prevent stretching */
  }

  .mobile-nav-drawer .custom-nav-button a.button-link {
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* Mobile dice animation (optional) */
  @keyframes dice-wobble-left {
    0% { transform: translate(-150%, -50%) rotate(-45deg); opacity: 0; }
    50% { transform: translate(-110%, -50%) rotate(15deg); opacity: 1; }
    75% { transform: translate(-120%, -50%) rotate(-5deg); }
    100% { transform: translate(-115%, -50%) rotate(0deg); }
  }

  .mobile-nav-drawer .custom-nav-button.active .dice-image {
    animation: dice-wobble-left 0.5s ease-out forwards;
  }
}

/* Mobile Toggle Button */
.mobile-nav-toggle {
  display: none;
  width: 100%;
  height: 60px;        /* Changed from min-height to fixed height */
  padding: 0 20px;          /* Removed horizontal padding to ensure perfect center */
  margin: 0;
  cursor: pointer;
  z-index: 1010;
  background-color: #9a78d7;
  display: flex;
  justify-content: flex-end; /* Changed from flex-end to center */
  align-items: center;     /* Ensures vertical centering */
  gap: 12px;
  box-sizing: border-box;
  line-height: normal;     /* Overrides line-height: 0 from the wrapper */
}


.mobile-nav-toggle .menu-text {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  color: #000;
  margin: 0;               /* Ensure no stray margins are pushing it down */
  display: inline-block;
}

.mobile-nav-toggle .hamburger-icon {
  width: 24px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
}

.mobile-nav-toggle .hamburger-icon span {
  background-color: #000;
  height: 2px;
  width: 100%;
  display: block;
  transition: all 0.3s ease;  /* ADDED */
}

.mobile-nav-toggle.open .hamburger-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);  /* ADJUSTED */
}
.mobile-nav-toggle.open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.open .hamburger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);  /* ADJUSTED */
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1009;
  max-height: none !important; 
  overflow: visible !important; 
  box-shadow: 0 0px 0px rgba(0,0,0,0);
}

.mobile-nav-drawer.open {
  display: block;
}
/* Mobile submenu arrow */
@media screen and (max-width: 768px) {
  .submenu-toggle {
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
  }

  .submenu-toggle::before {
    content: "";
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
  }

  .custom-nav-button.submenu-open .submenu-toggle::before {
    transform: rotate(-135deg);
  }

  /* Hide submenu by default on mobile */
  .mobile-nav-drawer .custom-submenu {
    display: none;
  }

  .custom-nav-button.submenu-open .custom-submenu {
    display: block;
  }
}
@media screen and (max-width: 768px) {

  .mobile-nav-drawer .custom-nav-button {
    padding-left: 48px; /* make room for arrow */
  }

  .mobile-nav-drawer .submenu-toggle {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    padding: 0;
  }

  .mobile-nav-drawer .submenu-toggle::before {
    padding: 4px;
  }
}
/* END_SECTION:custom-nav-dice-v4 */

/* START_SECTION:custom-shop-landing-v1 (INDEX:41, SCOPED:FALSE) */
.landing-page-container {
  max-width: 1400px;
  margin: 20px auto;
  padding: 40px;
  display: flex;
  align-items: stretch;
  gap: 50px;
  /* Highlights removed */
}

/* This is the magic class that flips the layout */
.landing-page-container.is-inverted {
  flex-direction: row-reverse;
}

/* LEFT COLUMN - TEXT */
.landing-page-left-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.landing-page-left-col h2 {
  font-size: 3em;
  margin-top: 0;
  margin-bottom: 60px;
  line-height: 1.2;
}

.landing-page-left-col p {
  font-size: 1.3em;
  line-height: 1.6;
  margin: 0;
}

/* RIGHT COLUMN - IMAGE & BUTTON */
.landing-page-right-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  gap: 30px;
  padding: 20px;
}

.landing-page-image-wrapper {
  width: 100%;
}

.landing-page-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 600px; /* Slightly taller for the "half screen" look */
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.landing-page-button {
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  transition: all 0.3s ease;
}

.landing-page-button:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

/* MOBILE RESPONSIVENESS */
@media screen and (max-width: 768px) {
  /* We force column layout on mobile regardless of inversion */
  .landing-page-container, 
  .landing-page-container.is-inverted {
    flex-direction: column; 
    padding: 20px;
    gap: 30px;
  }

  .landing-page-left-col h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .landing-page-left-col p {
    text-align: center;
  }

  .landing-page-right-col {
    width: 100%;
  }
}
/* END_SECTION:custom-shop-landing-v1 */