/* ! Banner */
.banner-container {
  display: block;
  margin-top: 80px;
  margin-bottom: 50px;
  animation: fadeIn 0.8s ease-out;
}

.event-banner .banner-desk {
  display: block;
  width: 100%;
  height: auto;
  animation: slideDown 0.6s ease-out;
}

.event-banner .banner-mobile {
  display: none;
  width: 100%;
  height: auto;
  animation: slideDown 0.6s ease-out;
}

/* ! Notice Box */
.notice-container {
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  max-width: 900px;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.6s ease-out;
}

ol,
ul {
  padding-left: 0rem !important;
}

.notice-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e5e5;
  justify-content: center;
}

.notice-icon i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.notice-box h3 {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0;
}

.notice-link {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notice-link li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  animation: slideInRight 0.6s ease-out backwards;
  transition: background 0.2s ease;
  border-radius: 8px;
  padding: 0.5rem;
}

.notice-link li:hover {
  background: rgba(209, 46, 46, 0.03);
}

.notice-link li:nth-child(1) {
  animation-delay: 0.1s;
}
.notice-link li:nth-child(2) {
  animation-delay: 0.2s;
}
.notice-link li:nth-child(3) {
  animation-delay: 0.3s;
}

.notice-date {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  min-width: 110px;
  flex-shrink: 0;
}

.notice-link a {
  text-decoration: none;
  color: var(--primary-color);
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 0.95rem;
  flex: 1;
}

.notice-link a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.notice-link a:hover {
  color: var(--primary-hover-color);
  transform: translateX(3px);
}

.notice-link a:hover::after {
  width: 100%;
}

/* ! Product Category */
.category-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  animation: fadeInDown 0.8s ease-out;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.category-card {
  background: var(--backgorund);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-color);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(209, 29, 35, 0.15);
}

.category-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.category-icon img {
  width: 200px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.category-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--primary-color-gradient);
  color: var(--text-color-alt);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(209, 29, 35, 0.25);
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(209, 29, 35, 0.35);
}

/* ! Ordering Method Section */
.method-section h2 {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 3rem;
  font-weight: bold;
  position: relative;
  animation: fadeInDown 0.6s ease-out;
}

.method-section h2::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: 5px auto 0;
  content: " ";
  display: block;
  border-bottom: 4px solid var(--primary-color);
  border-radius: 100px;
  width: 80px;
  animation: expandWidth 0.8s ease-out 0.3s backwards;
}

.method-section {
  padding: 0 1.5rem;
  margin: 3rem 0;
  position: relative;
}

.method-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.method-hero {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.create-container {
  max-width: 1200px;
  margin: 135px auto;
  margin-bottom: 5rem !important;
}

.create-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease;
}

.create-header h1 {
  font-size: 3rem;
  font-weight: 700;
  background: var(--text-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.create-header span {
  background: var(--primary-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.create-header p {
  font-size: 20px;
  color: #6c757d;
}

.choices-section {
  animation: fadeInUp 0.8s ease-out;
  margin-bottom: 5rem;
}

.choices-container {
  max-width: 1200px;
  margin: 0 auto;
}

.choice-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.choices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding: 0 1rem;
}

.choice-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.8s ease-out;
  position: relative;
  display: flex;
  flex-direction: column;
}

.choice-card:nth-child(1) {
  animation-delay: 0.1s;
}
.choice-card:nth-child(2) {
  animation-delay: 0.2s;
}
.choice-card:nth-child(3) {
  animation-delay: 0.3s;
}

.choice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.choice-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.choice-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--primary-color-gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(209, 29, 35, 0.3);
  animation: bounce 1s ease infinite;
}

.choice-icon {
  width: 80px;
  height: auto;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.choice-icon img {
  width: 300px;
  height: auto;
  display: block;
  object-fit: cover;
}

.app-icons img {
  width: 100px;
  height: auto;
  display: inline-block;
  object-fit: cover;
  margin: 75px 0;
}

.choice-card .live-prod {
  display: block;
  text-align: center;
  background: var(--primary-color-gradient);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: color 0.3s ease;
  border: var(--primary-color) solid 2px;
}

.choice-card .live-prod:hover {
  background: var(--background);
  color: var(--primary-color);
}

.choice-card .under-dev {
  display: block;
  text-align: center;
  background: var(--background);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: color 0.3s ease;
  border: var(--primary-color) solid 2px;
  cursor: not-allowed;
}

.choice-details {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
}

.detail-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s ease;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  padding: 15px;
  font-weight: 600;
  color: var(--text-color);
  background: #ffffff;
  border-right: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}

.detail-value {
  padding: 15px;
  color: #666;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.calendar-section {
  max-width: 900px !important;
  margin: 0 auto 4rem;
  padding: 40px 20px;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

/* ! Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(209, 29, 35, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(209, 29, 35, 0.5);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(3px);
  }
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ! Responsive */
@media (max-width: 1430px) {
  /* Banner Section */
  .event-banner .banner-desk {
    max-width: 1500px;
  }
}

@media (max-width: 1068px) {
  .choice-icon img {
    max-height: 220px;
    border-radius: 12px;
  }
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .featured-guide {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .featured-image {
    height: 250px;
  }
}

@media (max-width: 968px) {
  .notice-container {
    margin: 0 3rem;
  }

  /* Choice Section */
  .choices-grid {
    gap: 25px;
  }

  .choice-card.featured {
    transform: scale(1);
  }

  .choice-card.featured:hover {
    transform: translateY(-10px) scale(1);
  }

  /* Calendar Section */
  .calendar-section {
    margin: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .event-banner .banner-desk {
    display: none;
  }

  .event-banner .banner-mobile {
    display: block;
    max-width: 1000px;
    margin-top: 6.5rem;
  }

  /* Notice Section */
  .notice-container {
    margin: 2rem 3rem;
    padding: 1rem 1.5rem;
  }

  .notice-link li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .notice-date {
    min-width: auto;
    font-size: 0.8rem;
  }

  /* Product Category Section */
  .section-title {
    font-size: 1.8rem;
  }

  .categories-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .category-card {
    padding: 20px 20px;
    margin: 0 20px;
  }

  .category-icon {
    width: 100px;
    height: 100px;
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .category-icon img {
    max-width: 100px;
  }

  .category-name {
    font-size: 0.9rem;
  }

  .category-count {
    font-size: 0.75rem;
  }

  /* Ordering Choice Section */
  .create-header h1 {
    font-size: 30px;
  }

  .create-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .choices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choice-card {
    padding: 30px 20px;
  }

  .choice-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .choice-icon img {
    max-height: 200px;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2.5rem;
  }

  .choice-title {
    font-size: 1.3rem;
    margin-top: 3rem;
    padding: 1rem;
  }

  .choice-description {
    padding: 0 0.8rem;
  }

  .choice-button {
    padding: 12px 25px;
  }

  .detail-row {
    grid-template-columns: 1fr;
  }

  .detail-label {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px;
    background: #f0f0f0;
  }

  .detail-value {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .notice-container {
    margin: 0 2.7rem;
  }

  /* Ordering Choice Section */
  .choice-card {
    padding: 25px 15px;
  }

  .choice-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .choice-features li {
    font-size: 0.9rem;
  }

  .detail-label,
  .detail-value {
    font-size: 0.9rem;
    padding: 10px;
  }
}
