/** Shopify CDN: Minification failed

Line 43:37 Expected ":"

**/


/* Event Holiday Popup Styles */

.event-holiday-popup {
  width: 100%;
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-container {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}

.event-header {
  padding: 50px 40px;
  text-align: center;
  color: #1f1f1f;
  font-family: Gilroy, sans-serif;
  margin-bottom: 0;
  padding-bottom: 0;
  width: 80%;
  margin: auto;
  
}

.event-title {
  font-size: 7rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.2;
    font-family: Gilroy, sans-serif;s
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-date,
.event-time,
.event-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 600;
  margin: 12px 0;
  opacity: 0.95;
}

.icon-calendar,
.icon-clock,
.icon-location {
  flex-shrink: 0;
}

.event-image-wrapper {
  margin-top: 30px;
  border-radius: 12px;
  width: 70%;
  height: auto;
  margin: auto;
  overflow: hidden;
      margin-top: 1.5rem;
  margin-bottom: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-image {
  width: 100%;;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

.event-content {
  width: 80%;
  margin: auto;
  padding-top: 5rem;
}

.event-description {
  font-size: 2rem;
  width: 75%;
  margin: auto;
  text-align: center;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 40px;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  margin-bottom:0;
          padding-bottom: 7rem;
    border-bottom: 5px solid #e72027;
}

.event-description p {
  margin: 0 0 15px 0;
}

.event-description p:last-child {
  margin-bottom: 0;
}

/* Event Agenda Section */
.event-agenda {
  margin: 50px auto;
  padding: 0;
  width: 85%;
  max-width: 1400px;
}

.agenda-title {
  font-size: 5rem;
  font-family: Gilroy, sans-serif;
  font-weight: 900;
  color: #1f1f1f;
  margin: 0 0 20px 0;
  border-left: 5px solid #e72027;
  padding-left: 20px; 
  text-align: left;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.agenda-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: auto;
}

.agenda-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  border: 3px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  gap: 20px;
}

.agenda-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #e72027 0%, #ff4757 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.agenda-card:hover::before {
  transform: scaleY(1);
}

.agenda-card:hover {
  border-color: #e72027;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(231, 32, 39, 0.15);
}

.agenda-card:hover .agenda-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.agenda-card:hover .agenda-text {
  color: #1f1f1f;
}

.agenda-icon-wrapper {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.agenda-icon-wrapper svg,
.agenda-icon-wrapper img {
  width: 40px;
  height: 40px;
  color: #e72027;
  fill: currentColor;
  transition: all 0.3s ease;
}

.agenda-text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  font-family: Poppins, sans-serif;
  margin: 0;
  transition: all 0.3s ease;
  flex: 1;
}

.agenda-video-wrapper {
  position: sticky;
  top: 40px;

  height: fit-content;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
}

.agenda-video {
  width: 100%;
  height: auto;
  max-height: 800px;
  display: block;
  object-fit: cover;
  margin: auto;
}

.video-mute-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.video-mute-toggle:hover {
  background: rgba(231, 32, 39, 0.9);
  border-color: #e72027;
  transform: scale(1.1);
}

.video-mute-toggle:hover svg {
  color: #ffffff;
}

.video-mute-toggle svg {
  color: #1f1f1f;
  transition: all 0.3s ease;
}

.video-mute-toggle .mute-line {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-mute-toggle.muted .mute-line {
  opacity: 1;
}

.video-mute-toggle.muted .sound-waves {
  opacity: 0;
}

/* Pre-Order Steps Section */
.preorder-steps {
  margin: 50px 0;
  padding: 40px;
  width: 80%; 
  margin: auto;
  background: linear-gradient(135deg,rgb(10, 10, 10) 0%,rgb(0, 0, 0) 100%);
  border-radius: 16px;
}

.steps-title {
  font-size: 4.5rem;
  font-family: Gilroy, sans-serif;
  font-weight: 900;
  color:  #FFF;
  text-transform: uppercase;
  margin: 0 0 40px 0;
  text-align: center;
}

.preorder-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin: auto;
  gap: 25px;
}

.preorder-image-wrapper {
  position: sticky;
  top: 40px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.preorder-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.step-item {
  position: relative;
  padding: 35px 30px;
  background: #ffffff;
  border-radius: 16px;
  border: 3px solid #1f1f1f;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: #1f1f1f;
  border-color: #e72027;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(231, 32, 39, 0.3);
}

.step-item:hover .step-number {
  background: #e72027;
  color: #ffffff;
}

.step-item:hover .step-heading,
.step-item:hover .step-text {
  color: #ffffff;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #1f1f1f;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  font-family: Gilroy, sans-serif;
  border: 3px solid #ffffff;
  transition: all 0.3s ease;
}

.step-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f1f1f;
  font-family: Gilroy, sans-serif;
  margin: 15px 0 12px 0;
  transition: all 0.3s ease;
}

.step-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333333;
  font-family: Poppins, sans-serif;
  margin: 0;
  transition: all 0.3s ease;
}

.highlights-title {
  font-size: 4.5rem;
  font-family: Gilroy,sans-serif;
  font-weight: 900;
  color: #e72027;
  margin: 0 0 25px 0;
  text-align: center;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  padding: 30px 25px;
  margin-bottom: 0;
  background: #ffffff;
  border-radius: 16px;
  border: 3px solid #1f1f1f;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 180px;
}

.highlight-item:hover {
  background: #1f1f1f;
  border-color: #e72027;
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(231, 32, 39, 0.3);
}

.highlight-item:hover .icon-check {
  color: #ffffff;
}

.highlight-item:hover span {
  color: #ffffff;
}

.icon-check {
  flex-shrink: 0;
  color: #e72027;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.highlight-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.highlight-icon-wrapper svg,
.highlight-icon-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 80px;
  max-height: 80px;
  color: #e72027;
  fill: currentColor;
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon-wrapper svg,
.highlight-item:hover .highlight-icon-wrapper img {
  color: #ffffff;
  transform: scale(1.1);
}

.highlight-item span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f1f1f;
  font-family: Poppins, sans-serif;
  transition: all 0.3s ease;
}

.event-cta {
  text-align: center;
}

.event-button {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.event-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .event-holiday-popup {
    padding: 30px 15px;
  }

  .event-content{
  width: 100%;
  }

  .event-header {
    padding: 30px 20px;
    width: 95%;
  }

  .event-title {
    font-size: 2.5rem;
    letter-spacing: 0;
  }

  .event-image-wrapper {
    width: 95%;
    margin-top: 25px;
  }

  .event-description {
    width: 95%;
    font-size: 1.6rem;
    margin-top:-2rem;
    padding-top:0;
    padding-bottom: 20px;
    color: #1f1f1f;
    border-bottom: 5px solidrgb(12, 12, 12);
  }

  .event-date,
  .event-time,
  .event-location {
    font-size: 1rem;
  }

  .agenda-title,
  .steps-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
  }

  .event-agenda {
    margin-top: -4rem !important;
    width: 95%;
  }

  .agenda-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .agenda-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .agenda-card {
    padding: 25px 20px;
    flex-direction: row;
  }

  .agenda-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .agenda-icon-wrapper svg,
  .agenda-icon-wrapper img {
    width: 35px;
    height: 35px;
  }

  .agenda-text {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .agenda-video-wrapper {
    position: relative;
    top: 0;
    order: -1;
    max-height: 500px;
  }

  .agenda-video {
        margin-top:0;
    max-height: 500px;
  }

  .preorder-steps {
    width: 100%;
    margin-top: -3rem;
  }

  .steps-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .preorder-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .preorder-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 350px;
    top: 0;
    order: -1;
  }

  .preorder-image {
    border-radius: 12px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .step-item {
    padding: 35px 25px 25px 25px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
    top: -15px;
    left: 15px;
  }

  .step-heading {
    font-size: 1.6rem;
    margin-top: 10px;
  }

  .step-text {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .event-content {
    padding: 35px 25px;
    
  }

  .event-description {
    font-size: 1rem;
  }

  .highlights-title {
    font-size: 1.5rem;
  }

  .highlights-list {
    gap: 15px;
  }

  .highlight-item {
    min-height: 160px;
    padding: 25px 20px;
  }

  .highlight-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .highlight-icon-wrapper svg,
  .highlight-icon-wrapper img {
    max-width: 60px;
    max-height: 60px;
  }

  .icon-check {
    width: 32px;
    height: 32px;
  }

  .highlight-item span {
    font-size: 1rem;
  }

  .event-button {
    padding: 15px 40px;
    font-size: 1rem;
  }

  .agenda-title{
    border: none;
    padding:0;
    padding-bottom: 17px;
    text-align: center;
    border-bottom: 4px solid #e72027;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .event-holiday-popup {
    padding: 20px 10px;
  }

  .event-title {
    font-size: 3rem;
    line-height: 1.1;
  }

  .event-header {
    padding: 25px 15px;
    width: 100%;
  }

  .event-content {
    padding: 25px 15px;
  }

  .event-description {
    width: 100%;
    font-size: 1.2rem;
  }

  .event-image-wrapper {
    width: 100%;
  }

  .highlights-list {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    padding: 20px 15px;
    min-height: 140px;
  }

  .event-agenda,
  .preorder-steps {
    padding: 25px 15px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .preorder-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .preorder-image-wrapper {
    min-height: 200px;
    max-height: 280px;
  }

  .agenda-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .agenda-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .agenda-card {
    padding: 20px 15px;
    flex-direction: row;
    gap: 15px;
  }

  .agenda-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .agenda-icon-wrapper svg,
  .agenda-icon-wrapper img {
    width: 32px;
    height: 32px;
  }

  .agenda-text {
    font-size: 1.2rem;
  }

  .agenda-video-wrapper {
    position: relative;
    top: 0;
    order: -1;
    max-height: 400px;
  }

  .agenda-video {
    max-height: 400px;
  }

  .agenda-title {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .steps-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-item {
    padding: 32px 20px 22px 20px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }

  .step-heading {
    font-size: 1.4rem;
  }

  .step-text {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
