/**
* Template Name: carrolls 2026
* Updated: January 28 2026 with Bootstrap v5.3.8
* Author:  Brocy Centeio
*/

/**
* Check out variables.css for easy customization of colors, typography, and other repetitive properties
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  /*color: var(--color-primary);*/
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
    # Preloader
    --------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-links);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
    # Sections & Section Header
    --------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-header {
  padding-bottom: 20px;
}

.section-header h2 {
  font-family: var(--font-primary);
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-header p {
  color: var(--color-default);
  font-size: 16px;
  line-height: 18px;
}

/*--------------------------------------------------------------
    # Scroll top button
    --------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-red);
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: #3b3938;
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
    # Disable aos animation delay on mobile devices
    --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
    # Header
    --------------------------------------------------------------*/
.header {
  padding: 0 0;
  transition: all 0.5s;
  z-index: 997;
  background: var(--color-white);
  border-bottom: 1px solid #ffffff;
}

.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header h5 {
  font-size: 12px;
}

.header .logo img {
  height: 47px;
}

/*--------------------------------------------------------------
    # Desktop Navigation 
    --------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-default);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-links);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover > a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover > a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover > a {
    color: var(--color-white);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
    # Mobile Navigation
    --------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    top: 70px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-links);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-black);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 5555;
    right: 20px;
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-black-rgb), 0.8);
    z-index: 9996;
    top: 70px;
  }
}

/*--------------------------------------------------------------
    # Header style (menu left, logo center, mobile drawer from left)
    # Always solid background; overlay on hero without reserved space
    --------------------------------------------------------------*/
/* Top bar */
.header-topbar {
  background: var(--color-red);
  padding: 6px 0;
}

.header-topbar-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 18px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header-topbar-social a:hover {
  opacity: 0.85;
}

#header.header-main {
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header-main .header-main-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 70px;
}

.header-main .header-main-left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-main .header-main-left .logo img {
  height: 55px;
}

.header-main .header-main-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

@media (min-width: 1280px) {
  .header-main .mobile-nav-toggle { display: none !important; }
  .header-main .navbar {
    position: relative !important;
    left: auto !important;
    width: auto !important;
    background: transparent !important;
  }
  .header-main .navbar ul {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }
  .header-main .navbar .navbar-drawer-close,
  .header-main .navbar .navbar-drawer-logo { display: none !important; }
  .header-main .navbar a.nav-link {
    color: #2E475D;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
  }
  .header-main .navbar a.nav-link:hover { color: var(--color-links); }
  .header-main .navbar li > a:after {
    content: "\203A";
    margin-left: 4px;
    opacity: 0.7;
  }
}

@media (max-width: 1279px) {
  /* Disable base mobile navbar overlay for header-main (we use .header-main-overlay) */
  .mobile-nav-active .header-main .navbar::before {
    display: none !important;
  }

  .header-main .mobile-nav-toggle.d-xl-none {
    display: flex !important;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 5555;
    color: var(--color-white);
    font-size: 26px;
    cursor: pointer;
    background: var(--color-red);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    text-decoration: none;
    line-height: 0;
  }

  .header-main .navbar {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: min(300px, 78vw) !important;
    max-width: 300px;
    bottom: 0 !important;
    height: 100vh !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0 !important;
    box-shadow: 4px 0 20px rgba(0,0,0,0.12);
    transition: left 0.28s ease-out, box-shadow 0.28s ease-out;
    z-index: 9997 !important;
    overflow: hidden;
  }
  .mobile-nav-active .header-main .navbar { left: 0 !important; }

  /* Drawer top strip: close + logo */
  .header-main .navbar-drawer-close {
    display: flex !important;
    position: absolute;
    top: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: #e8e8e8;
    border: none;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #2E475D;
    font-size: 24px;
    line-height: 0;
    z-index: 3;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }
  .header-main .navbar-drawer-close i {
    font-size: 24px;
    line-height: 1;
  }

  .header-main .navbar-drawer-logo {
    display: flex !important;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 68px 16px 20px;
    margin: 0;
    border-bottom: 1px solid #eaeaea;
    text-decoration: none;
  }
  .header-main .navbar-drawer-logo img {
    height: 65px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
  }

  /* Menu list: scrollable, proper tap targets */
  .header-main .navbar ul {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px !important;
    margin: 0 !important;
    background: transparent !important;
    display: block !important;
    list-style: none !important;
    border: none !important;
  }
  .header-main .navbar ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
  }
  .header-main .navbar .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 14px 20px !important;
    color: #2E475D !important;
    font-size: 16px !important;
    font-weight: 500;
    border: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s ease;
  }
  .header-main .navbar .nav-link:after {
    content: "\203A";
    font-size: 18px;
    opacity: 0.55;
    flex-shrink: 0;
    margin-left: 8px;
  }
  .header-main .navbar .nav-link:hover,
  .header-main .navbar .nav-link:active {
    color: var(--color-links) !important;
    background: #f5f5f5 !important;
  }

  .header-main .header-main-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9996;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-nav-active .header-main .header-main-overlay {
    display: block !important;
  }
}

/*--------------------------------------------------------------
    # Commons Page
    --------------------------------------------------------------*/

/*--------------------------------------------------------------
    # Entry Page
    --------------------------------------------------------------*/

/*--------------------------------------------------------------
    # Animated Hero Section
    --------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 40vh;
  background: transparent;
  padding: 120px 0px 40px 0px;
}

.hero-animated h1,
.hero-animated .hero-title {
  color: var(--color-white);
  font-weight: 400;
  font-family: var(--font-vendor);
  line-height: 1.1;
}

.hero-animated p,
.hero-animated .hero-prize {
  color: var(--color-white);
  font-family: var(--font-vendor);
  font-weight: 400;
  line-height: 1;
}

.hero-animated img {
  width: 100%;
}

.hero-animated .animated {
  margin-bottom: 20px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 45%;
  }
}

@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 640px) {
  .hero-animated {
    width: 100%;
    min-height: 40vh;
    background: transparent;
    padding: 110px 0px 0px 0px;
  }

  /* Landpage hero: reserve space for header + topbar */
  .hero-animated.hero-banner {
    padding: 110px 0 0 0;
  }

  .hero-animated .container-fluid {
    padding: 0px;
  }
}

/*--------------------------------------------------------------
    # Hero Banner
    --------------------------------------------------------------*/
.hero-banner {
  padding: 120px 0 0 0;
  margin: 0;
  min-height: auto;
  background: var(--color-red);
  overflow: hidden;
}

.hero-banner-inner {
  width: 100%;
  text-align: center;
  padding: 2.5rem 1rem 3rem;
}

.hero-banner-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 2rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.hero-banner-product {
  flex: 0 0 auto;
  max-width: 45%;
}

.hero-banner-product img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
  object-fit: contain;
}

.hero-banner-text {
  flex: 0 0 auto;
  text-align: center;
}

.hero-title {
  font-family: var(--font-vendor);
  font-size: clamp(3.5rem, 12vw, 6rem);
  color: var(--color-white);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-prize {
  font-family: var(--font-vendor);
  font-size: clamp(4rem, 14vw, 7rem);
  color: var(--color-white);
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 575px) {
  .hero-banner-split {
    gap: 0.5rem;
    padding: 1.5rem 0.75rem;
  }
  .hero-banner-product {
    max-width: 35%;
  }
  .hero-banner-product img {
    max-height: 160px;
  }
  .hero-animated .hero-title,
  .hero-banner .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
  }
  .hero-animated .hero-prize,
  .hero-banner .hero-prize {
    font-size: 3rem;
  }
}

/*--------------------------------------------------------------
    # Landpage Claim Section
    --------------------------------------------------------------*/
.claim-intro {
  padding: 1.5rem 0 2rem;
}

.claim-intro-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.btn-claim-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #cf002c;
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  padding: 0.5rem 1.4rem;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-claim-search:hover {
  background: #a80024;
  color: var(--color-white);
}


.btn-claim-search i {
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
    # Scanfiniti Section
    --------------------------------------------------------------*/

.scanfiniti-form-wrapper .scanfiniti-form {
  width: 100%;
}

/* validation summmary error */
.scanfiniti-form-wrapper .validation-summary-errors {
  color: red;
}

.scanfiniti-form-wrapper .validation-summary-errors ul {
  padding: 0 10px;
}

.scanfiniti-form-wrapper .validation-summary-errors ul li {
  list-style: none;
  text-align: center;
}

/* end validation summmary error */

.scanfiniti-form-wrapper .scanfiniti-form .form-group {
  padding-bottom: 0px;
}

.form-control {
  border: 1px solid var(--color-red);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  background: var(--color-white);
  box-shadow: none;
}

.form-control:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 1px var(--color-red);
  outline: none;
}

.scanfiniti-form-wrapper .scanfiniti-form input:not([type="checkbox"]):not([type="radio"]),
.scanfiniti-form-wrapper .scanfiniti-form select {
  background-color: var(--color-white);
  border: 1px solid var(--color-red);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  box-shadow: none;
  outline: none;
}

.scanfiniti-form-wrapper .scanfiniti-form textarea {
  background-color: var(--color-white);
  border: 1px solid var(--color-red);
  border-radius: 20px;
  padding: 0.75rem 1.25rem;
  height: 290px;
  box-shadow: none;
  outline: none;
}

.scanfiniti-form-wrapper .scanfiniti-form input:not([type="checkbox"]):not([type="radio"]):focus,
.scanfiniti-form-wrapper .scanfiniti-form select:focus,
.scanfiniti-form-wrapper .scanfiniti-form textarea:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 1px var(--color-red);
  outline: none;
}

.scanfiniti-form-wrapper .scanfiniti-form input.form-check-input {
  width: 22px;
  height: 22px;
  min-width: 22px;
  padding: 0;
  border: 2px solid var(--color-red);
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.scanfiniti-form-wrapper .scanfiniti-form input.form-check-input:checked {
  background-color: var(--color-red);
  border-color: var(--color-red);
}

.scanfiniti-form-wrapper .scanfiniti-form label {
  text-transform: none;
  font-size: 12px;
}

.scanfiniti-form-wrapper .scanfiniti-form label.form-check-label {
  padding: 4px 10px;
  font-size: 14px;
  text-transform: none;
}

/* custumize select2 */

.scanfiniti-form-wrapper
  .select2-container--default
  .select2-selection--single {
  background-color: transparent;
  border: 2px solid var(--color-secondary-light);
  border-radius: 0px;
  height: unset;
  padding: 5px 5px;
}

.scanfiniti-form-wrapper
  .select2-container--default.select2-container--open.select2-container--above
  .select2-selection--single,
.scanfiniti-form-wrapper
  .select2-container--default.select2-container--open.select2-container--above
  .select2-selection--multiple,
.scanfiniti-form-wrapper
  .select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.scanfiniti-form-wrapper
  .select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border: 2px solid var(--color-primary);
  border-radius: 0;
}

.scanfiniti-form-wrapper
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: unset;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
}

.select2-dropdown {
  background-color: #f6f1ed;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--color-primary);
  background: #f6f1ed;
}

.select2-container--open .select2-dropdown--above,
.select2-container--open .select2-dropdown--below {
  border: 2px solid var(--color-primary);
  border-radius: 0;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color-primary);
  color: white;
}

/* add search icon on select2 */
.select2-search {
  position: relative;
}

.select2-search__field {
  padding-left: 35px !important;
}

.select2-search:before {
  position: absolute;
  display: block;
  content: "\f52a";
  top: 12px;
  left: 15px;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscal;
}

/* end add search icon on select2 */

/* end custumize select2 */

.scanfiniti-form-wrapper .scanfiniti-form button[type="submit"] {
  width: 100%;
  max-width: 410px;
  background: #cf002c;
  border: none;
  padding: 0.5rem 1.4rem;
  color: var(--color-white);
  transition: background 0.2s;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.scanfiniti-form-wrapper .scanfiniti-form button[type="submit"]:hover {
  background: #a80024 !important;
  color: var(--color-white) !important;
  border: none !important;
}

.scanfiniti-form-wrapper select.form-select.form-control.error,
.scanfiniti-form-wrapper input.form-check-input.error,
.scanfiniti-form-wrapper input.form-control.error {
  border: 1px solid red;
  outline: none;
}

/* Mobile Input */

.iti:not(.iti--container) {
  display: block !important;
  width: 100%;
  position: relative !important;
}

.iti input,
.iti input[type="tel"],
.iti input[type="text"] {
  border: 1px solid var(--color-red) !important;
  border-radius: 9999px !important;
  padding: 0.75rem 1.25rem 0.75rem 60px !important;
  width: 100% !important;
  box-shadow: none !important;
  background: var(--color-white) !important;
}

.iti input:focus,
.iti input[type="tel"]:focus,
.iti input[type="text"]:focus {
  border-color: var(--color-red) !important;
  box-shadow: 0 0 0 1px var(--color-red) !important;
  outline: none !important;
}

.iti__flag-container {
  border: none;
  padding: 0;
}

.iti__selected-flag {
  border-radius: 9999px 0 0 9999px;
  padding-left: 12px;
}

.iti__country-list {
  border-radius: 10px;
  border: 1px solid var(--color-red);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1060;
  background: var(--color-white, #fff);
}

/* Inline dropdown (desktop / non-mobile): pin under input */
body:not(.iti-mobile) .iti__country-list {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  max-height: 200px;
  overflow-y: auto;
  width: auto !important;
  min-width: 280px;
}

/* Mobile fullscreen popup: let the library size it, just keep it on top */
.iti-mobile .iti--container {
  z-index: 1060;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.1.6/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.1.6/build/img/flags@2x.png");
  }
}

/* End Mobile Input */

.scanfiniti-form-wrapper span.error-message {
  display: block;
  font-size: 0.75rem;
  color: red;
  text-transform: uppercase;
}

.scanfiniti-form-wrapper .form-check span.error-message {
  padding: 0 26px;
  margin-top: -10px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* overwrite form readonly style */
.form-control[readonly] {
  background-color: var(--bs-secondary-bg) !important;
  opacity: 1;
  cursor: not-allowed !important;
}

/*--------------------------------------------------------------
    # Terms of conditions
    --------------------------------------------------------------*/

.scanfiniti-terms-wrapper {
  padding: 10px 0 60px 0;
  text-align: left;
}

/*--------------------------------------------------------------
    # Footer
    --------------------------------------------------------------*/

.footer {
  width: 100%;
  display: block;
}

/*--------------------------------------------------------------
    # Footer Carroll's
    --------------------------------------------------------------*/
.footer-carrolls {
  background: var(--color-red);
  color: var(--color-white);
  padding: 3rem 1rem 1.5rem;
}

.footer-carrolls-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-white);
  margin: 0;
  opacity: 0.9;
}

/* Red buttons – hover state (global) */
.btn-claim-search:hover,
.btn-entry-claim:hover {
  background: #a80024 !important;
  color: var(--color-white) !important;
  border: none !important;
}

/*--------------------------------------------------------------
    # Custom page
    --------------------------------------------------------------*/

body#entry-thank-you,
body#termsAndConditions,
body#privacy {
  background-color: var(--color-white);
}

body#termsAndConditions .hero-animated h2,
body#privacy .hero-animated h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

body#termsAndConditions #terms,
body#privacy #terms {
  color: var(--color-default) !important;
}

body#privacy #terms a {
  text-decoration: underline;
}

body#privacy #terms a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
    # Page message block – generic (entry-thankyou, claim-thankyou,
    # ended, toolate, maintenance, notstarted, notfound, error)
    --------------------------------------------------------------*/

.page-message-content {
  padding: 1.5rem 1rem 1.5rem;
  background: var(--color-white);
}

.page-message-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.page-message-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-black, #1a1a1a);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.page-message-lead {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-black, #1a1a1a);
  margin-bottom: 0.4rem;
}

.page-message-body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--color-black, #1a1a1a);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-message-subtitle {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  text-transform: uppercase;
  color: #5a6b7d;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

/*--------------------------------------------------------------
    # Entry page – look and feel (body#entry)
    --------------------------------------------------------------*/

body#entry .entry-content {
  padding: 0rem 0 4rem;
  background: var(--color-white);
}

body#entry .entry-section {
  margin-bottom: 2rem;
}

body#entry .entry-section-title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  text-transform: uppercase;
  color: #2e3750;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

body#entry .entry-location-section {
  margin-bottom: 2.5rem;
}

body#entry .entry-location-section .entry-section-title {
  text-align: center;
}

body#entry .entry-location-box {
  border: 1px solid #D0D4DB;
  border-radius: 10px;
  background: var(--color-white);
  padding: 1rem 1.25rem;
  width: 100%;
}

body#entry .entry-location-name {
  font-weight: 700;
  text-transform: uppercase;
  color: #2e3750;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

body#entry .entry-location-address {
  font-size: 0.875rem;
  color: #5a6270;
  font-weight: 400;
  line-height: 1.4;
}

body#entry .btn-entry-location {
  background: #cf002c;
  color: var(--color-white);
  border: none;
  padding: 0.5rem 1.4rem;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

body#entry .btn-entry-location:hover:not(:disabled) {
  background: #a80024;
}

body#entry .btn-entry-location:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

body#entry .entry-form-section .scanfiniti-form .form-label {
  color: #2e3750;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
}

body#entry .entry-form-section .scanfiniti-form input:not([type="checkbox"]):not([type="radio"]),
body#entry .entry-form-section .scanfiniti-form select,
body#entry .entry-form-section .scanfiniti-form textarea {
  border: 1px solid var(--color-red);
  border-radius: 9999px;
  background: var(--color-white);
}

body#entry .entry-form-section .scanfiniti-form textarea {
  border-radius: 20px;
}

body#entry .entry-form-section .scanfiniti-form input:not([type="checkbox"]):not([type="radio"]):focus,
body#entry .entry-form-section .scanfiniti-form select:focus,
body#entry .entry-form-section .scanfiniti-form textarea:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 1px var(--color-red);
  outline: none;
}

body#entry .entry-terms-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
}

body#entry .entry-terms-title {
  font-weight: 700;
  font-size: 1rem;
  color: #2e3750;
  margin-bottom: 0.75rem;
}

body#entry .entry-terms-content {
  border: 1px solid #D0D4DB;
  border-radius: 10px;
  background: var(--color-white);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #5a6270;
  max-height: 140px;
  overflow-y: auto;
}

body#entry .entry-terms-content::-webkit-scrollbar {
  width: 6px;
}

body#entry .entry-terms-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

body#entry .entry-terms-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

body#entry .entry-form-section .form-check-label {
  color: #2e3750;
}

.entry-submit-wrap {
  margin-top: 2rem;
  text-align: center;
}

.btn-entry-claim {
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--color-white);
  background: #cf002c;
  border: none;
  border-radius: 12px;
  padding: 0.5rem 1.4rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-entry-claim:hover {
  color: var(--color-white);
  background: #a80024;
}

/*--------------------------------------------------------------
    # Custom enter button
    --------------------------------------------------------------*/

.enterButton, .openARButton,
.game-next-btn, .recipe-play-btn {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  border: none;
  padding: 0.5rem 1.4rem;
  color: var(--color-white);
  background: #cf002c;
  transition: background 0.2s;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  cursor: pointer;
}

.enterButton:hover, .openARButton:hover,
.game-next-btn:hover, .recipe-play-btn:hover {
  background: #a80024;
  color: var(--color-white);
}

/*--------------------------------------------------------------
    # Game Page – Trolley Catch
    --------------------------------------------------------------*/

/* Game Intro */
.game-intro {
  padding: 120px 0 0;
  background: var(--color-white);
  text-align: center;
}

.game-intro-inner {
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.game-intro-subtitle {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 28px;
  color: var(--color-black);
  opacity: 0.8;
  margin-bottom: 0;
}

.game-intro-title {
  font-family: 'Playball', cursive;
  font-size: 62px;
  color: #cf002c;
  line-height: 1.1;
  margin: 0;
}

@media (max-width: 480px) {
  .game-intro-title {
    font-size: 48px;
  }
  .game-intro-subtitle {
    font-size: 22px;
  }
}

/* Prizes Box */
.game-prizes-box {
  background: #cf002c;
  margin: 0;
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
  width: 100%;
}

.game-prizes-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.game-prizes-divider {
  width: 90%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 1rem;
}

.game-prizes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.game-prizes-list li {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.game-prizes-list li:last-child {
  border-bottom: none;
}

.game-prizes-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Game Area */
.game-area {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.game-area-bg {
  width: 100%;
  height: auto;
  display: block;
}

.game-area-inner {
  position: absolute;
  top: 8%;
  left: 0;
  right: 0;
  bottom: 18%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0.5rem;
}

/* Game Items Image */
.game-items {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  min-height: 0;
}

.game-items img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  margin-top: 25%;
}

/* Game Next Button */
.game-action {
  padding: 0.5rem 2.5rem;
  text-align: center;
  flex-shrink: 0;
  margin-top: 1.5rem;
  margin-bottom: 70px;
}

/* game-next-btn inherits from shared primary button styles above */

/*--------------------------------------------------------------
    # Recipe Maker Page
    --------------------------------------------------------------*/

/* Recipe Section */
.recipe-maker {
  margin: 0;
  padding: 0;
}

/* Red Header Banner */
.recipe-header-banner {
  background: #cf002c;
  padding: 130px 1.5rem 2rem;
  text-align: center;
}

.recipe-main-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 44px;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.recipe-header-divider {
  width: 90%;
  max-width: 360px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 auto 1.25rem;
}

.recipe-instructions {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.3;
}

.recipe-instructions p {
  margin-bottom: 0.75rem;
}

.recipe-instructions p:last-child {
  margin-bottom: 0;
}

/* Recipe Content Area with Background */
.recipe-content-area {
  position: relative;
  overflow: hidden;
}

.recipe-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.recipe-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  mix-blend-mode: multiply;
  z-index: 1;
}

.recipe-content-inner {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
}

/* Recipe Dish Image */
.recipe-dish-wrapper {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.recipe-dish-plate {
  max-width: 220px;
  height: auto;
}

/* Recipe Dish Title */
.recipe-dish-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 36px;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 2rem;
}

/* Ingredients Grid */
.recipe-ingredients-grid {
  margin-bottom: 2rem;
}

.recipe-ingredients-grid img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Play Now Button */
.recipe-action {
  margin-bottom: 1.5rem;
}

/* recipe-play-btn inherits from shared primary button styles above */

/* Trolley */
.recipe-trolley {
  max-width: 250px;
  margin: 0 auto;
}

.recipe-trolley img {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 480px) {
  .recipe-main-title {
    font-size: 36px;
  }

  .recipe-instructions {
    font-size: 20px;
  }

  .recipe-dish-title {
    font-size: 28px;
  }

  .recipe-dish-frame {
    width: 160px;
    height: 160px;
  }

  .recipe-ingredient-img {
    width: 70px;
    height: 95px;
  }

  .recipe-ingredients-grid {
    gap: 8px;
  }
}