/* CSS Variables */
:root {
  --primary-color: #ffc0cb; /* pastel pink - original desktop */
  --secondary-color: #ffffff; /* white */
  --accent-color: #f59e0b; /* golden accent - original desktop */
  --text-color: #333333; /* dark text - original desktop */
  --light-pink: #ffe4e1; /* light pink - original desktop */
  /* --gradient-primary: linear-gradient(
    0deg,
    #ffb6c1,
    #ffc0cb,
    #ffe4e1
  );  */
  --gradient-primary: radial-gradient(
    146.92% 86.64% at 100% 100%,
    #ff528e 0%,
    #ffdfee 100%
  );
  --mobile-primary: #ff528e; /* bright pink from figma */
  --mobile-gradient: linear-gradient(
    135deg,
    #ff528e,
    #ff75a6,
    #ff99be,
    #ffdfee
  );
  --mobile-nav-gradient: linear-gradient(
    90deg,
    #4ecdc4,
    #44e08f,
    #ffd93d,
    #ff6b6b
  );
  --happy-color-gradient: linear-gradient(
    180deg,
    #f9cc0c 0%,
    #1676e6 48.63%,
    #3cc380 98.08%
  );
  --mobile-text: #fdf8e9; /* cream text from figma */
  --mobile-bg: rgba(255, 223, 238, 0.95);
  --mobile-card-bg: rgba(255, 255, 255, 0.9);
  --mobile-accent: #ff75a6;

  /* New Professional Mobile Variables */
  --mobile-primary-gradient: linear-gradient(
    135deg,
    rgba(249, 204, 12, 0.9) 0%,
    rgba(22, 118, 230, 0.85) 50%,
    rgba(60, 195, 128, 0.8) 100%
  );
  --mobile-header-bg: rgba(255, 255, 255, 0.95);
  --mobile-glass: rgba(255, 255, 255, 0.85);
  --mobile-professional: #2c3e50;
  --mobile-icon-professional: #34495e;
  --mobile-accent-blue: #1676e6;
  --mobile-shadow-professional: 0 8px 32px rgba(0, 0, 0, 0.12);
  --mobile-border-professional: rgba(255, 255, 255, 0.2);

  --shadow-light: 0 2px 10px rgba(255, 192, 203, 0.2);
  --shadow-medium: 0 4px 20px rgba(255, 192, 203, 0.3);
  --shadow-luxury: 0 20px 60px rgba(255, 82, 142, 0.15);
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --primary-blue: #397ac9;
  --primary-yellow: #f9cc0c;
  --text-dark: #1e1e1e;
  --cream-bg: #fdf8e9;
  --orange-accent: #eb3d00;
  --white-color: #ffffff;

  --primary-dark: #1d4ed8;
  --primary-light: #93c5fd;
  --white-bright: #ffffff;
  --white-soft: #f8fafc;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 8px 32px rgba(59, 130, 246, 0.12);
  --shadow-strong: 0 20px 60px rgba(59, 130, 246, 0.2);
}

/* GSAP Animation Helper */
.gsap-animating {
  transition: none !important;
}

/* header start */
.hc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.hc-logo-section {
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

.hc-nav {
  background: var(--white-color);
}

.hc-header.hc-header-scrolled {
  background: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/* .hc-header.hc-header-scrolled .hc-mobile-menu-btn {
  position: fixed;
  top: 20px;
  left: 15px;
  z-index: 1000;
  background: var(--white-color);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
} */

.min-vh-80 {
  min-height: 80vh;
}

/* Header Styles */
.hc-header {
  position: sticky;
  z-index: 1000;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  top: 0;
}

/* Top Bar */
.hc-topbar {
  background: var(--primary-color);
  padding: 8px 0;
  font-size: 14px;
}

.hc-social-icons {
  display: flex;
  align-items: center;
}

.hc-social-link {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.hc-social-link i {
  color: transparent;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 1.2rem;
}
.hc-social-link span {
  font-size: 0.7rem;
  color: transparent;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hc-social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.hc-hotline {
  display: flex;
  align-items: center;

  font-weight: 600;
}

.hc-hotline i {
}

/* Logo Section */
.hc-logo-section {
  padding: 10px 0;
}

.hc-logo img {
  max-height: 80px;
  width: auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hc-hotline-header-box-content {
  background: var(--white-color);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  min-width: 120px;
}
.hc-hotline-header-box-label,
.hc-hotline-header-box-phone-number {
  text-transform: uppercase;
  color: transparent;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
}
.hc-hotline-header-box-content a {
  color: transparent;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}
.hc-hotline-header-box-content a:hover {
  color: var(--accent-color);
}
.hc-hotline-header-box-icon {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--white-color);
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  position: relative;
  z-index: 5;
  transform: translateX(45px);
  -webkit-transform: translateX(45px);
  -moz-transform: translateX(45px);
  -ms-transform: translateX(45px);
  -o-transform: translateX(45px);
}
.hc-hotline-header-box-icon img {
  max-width: 55px;
  width: 100%;
  height: auto;
}
.hc-hotline-header-box-content {
  padding-left: 60px;
  padding-right: 20px;
}
/* Navigation */
.hc-nav {
  /* background: var(--light-pink); */
  background: linear-gradient(
    270deg,
    #f9cc0c 0%,
    #1676e6 48.63%,
    #3cc380 98.08%
  );
  padding: 0;
  border-top: 1px solid rgba(255, 192, 203, 0.3);
}

.hc-nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.hc-nav-item {
  position: relative;
}

.hc-nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  text-transform: uppercase;
}

.hc-nav-link:hover {
  color: var(--accent-color);
  background: var(--gradient-primary);
}
.hc-nav-item.active .hc-nav-link {
  color: var(--accent-color);
  background: var(--gradient-primary);
}

/* Dropdown Menu */
.hc-dropdown {
  position: relative;
}

.hc-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary-color);
  min-width: 220px;
  box-shadow: var(--shadow-medium);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  padding: 10px 0;
}

.hc-dropdown:hover .hc-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hc-dropdown-item {
  position: relative;
}

.hc-dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-dropdown-link:hover {
  background: var(--light-pink);
  color: var(--accent-color);
}

/* Submenu */

.hc-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  padding: 10px 0;
  background: var(--secondary-color);
  min-width: 150px;
  box-shadow: var(--shadow-medium);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: var(--transition);
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  min-width: 220px;
}

.hc-dropdown-submenu:hover .hc-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hc-submenu-link {
  display: block;
  padding: 10px 15px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.hc-submenu-link:hover {
  background: var(--light-pink);
  color: var(--accent-color);
}

/* Modern Mobile Menu Button */
.hc-mobile-menu-btn {
  position: relative;
  z-index: 1050;
  width: 60px;
  height: 60px;
  background: var(--mobile-header-bg);
  border: 1px solid var(--mobile-border-professional);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  box-shadow: var(--mobile-shadow-professional);
  transition: var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hc-mobile-menu-btn:hover {
  background: var(--mobile-primary-gradient);
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--mobile-shadow-professional),
    0 4px 20px rgba(22, 118, 230, 0.3);
}

.hc-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 2px;
}

.hc-hamburger-line {
  width: 22px;
  height: 3px;
  background: var(--mobile-icon-professional);
  border-radius: 2px;
  transition: var(--transition);
}

.hc-menu-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--mobile-icon-professional);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 1px;
}

.hc-mobile-menu-btn:hover .hc-hamburger-line {
  background: var(--secondary-color);
}

.hc-mobile-menu-btn:hover .hc-menu-text {
  color: var(--secondary-color);
}

/* Enhanced Mobile Header Actions */
.hc-mobile-header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hc-mobile-action-btn {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--mobile-header-bg);
  border: 1px solid var(--mobile-border-professional);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mobile-icon-professional);
  font-size: 18px;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--mobile-shadow-professional);
  text-decoration: none;
}

.hc-mobile-action-btn:hover {
  background: var(--mobile-primary-gradient);
  border-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--mobile-shadow-professional),
    0 4px 20px rgba(22, 118, 230, 0.25);
}

.hc-mobile-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Professional Desktop Header Actions */
.hc-header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: 20px;
}

.hc-action-btn {
  position: relative;
  width: 52px;
  height: 52px;
  background: var(--mobile-header-bg);
  border: 1px solid var(--mobile-border-professional);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mobile-icon-professional);
  font-size: 20px;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--mobile-shadow-professional);
  text-decoration: none;
}

.hc-action-btn:hover {
  background: var(--mobile-primary-gradient);
  border-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--mobile-shadow-professional),
    0 6px 25px rgba(22, 118, 230, 0.3);
}

.hc-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  color: white;
  font-size: 12px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  box-shadow: 0 3px 10px rgba(255, 71, 87, 0.4);
  animation: pulse 2s infinite;
}

/* Professional Mobile Offcanvas */
.hc-offcanvas {
  background: var(--mobile-header-bg);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  width: 380px;
  border-left: 1px solid var(--mobile-border-professional);
  box-shadow: var(--mobile-shadow-professional);
}

.hc-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mobile-primary-gradient);
  opacity: 0.08;
  pointer-events: none;
}

.hc-menu-header {
  background: var(--mobile-primary-gradient);
  border-bottom: 1px solid var(--mobile-border-professional);
  padding: 25px 20px 20px;
  position: relative;
  z-index: 2;
}

.hc-mobile-logo-section {
  text-align: center;
}

.hc-mobile-logo {
  max-height: 55px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.hc-mobile-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 6px 0;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.hc-mobile-tagline {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.hc-close-btn {
  position: absolute;
  top: 30px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  color: white;
  font-size: 18px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hc-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: rotate(90deg) scale(1.1);
}

.hc-menu-body {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.hc-mobile-navigation {
  margin-bottom: 40px;
}

.hc-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-mobile-nav-item {
  margin-bottom: 10px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--mobile-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--mobile-border-professional);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hc-mobile-nav-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(22, 118, 230, 0.3);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(22, 118, 230, 0.15);
}

/* New Professional Nav Item Structure */
.hc-nav-item-container {
  display: flex;
  align-items: center;
  position: relative;
}

.hc-nav-label-link {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--mobile-professional);
  text-decoration: none;
  transition: var(--transition);
  flex: 1;
  font-weight: 600;
  font-size: 15px;
}

.hc-nav-label-link:hover {
  color: var(--mobile-accent-blue);
}

.hc-menu-icon {
  width: 24px;
  text-align: center;
  margin-right: 15px;
  color: var(--mobile-accent-blue);
  font-size: 18px;
}

.hc-menu-label {
  flex: 1;
  font-weight: 600;
}

.hc-dropdown-toggle {
  width: 50px;
  height: 54px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--mobile-border-professional);
  color: var(--mobile-professional);
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-dropdown-toggle:hover {
  background: rgba(22, 118, 230, 0.1);
  color: var(--mobile-accent-blue);
}

.hc-mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}

.hc-mobile-nav-link:hover {
  color: var(--accent-color);
}

.hc-menu-arrow {
  color: rgba(245, 158, 11, 0.7);
  font-size: 12px;
  transition: var(--transition);
}

.hc-mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(22, 118, 230, 0.05);
  border-top: 1px solid var(--mobile-border-professional);
}

.hc-mobile-submenu.show {
  max-height: 600px;
  padding: 15px 0;
}

.hc-mobile-submenu .hc-mobile-nav-item {
  margin: 8px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--mobile-border-professional);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hc-submenu-level-2 .hc-mobile-nav-item {
  margin: 6px 25px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(22, 118, 230, 0.2);
}

.hc-submenu-link .hc-nav-label-link {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
}

.hc-submenu-level-2 .hc-nav-label-link {
  padding: 12px 14px;
  font-size: 13px;
}

/* Professional Mobile Contact */
.hc-mobile-contact {
  background: var(--mobile-glass);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--mobile-border-professional);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hc-contact-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  color: var(--mobile-professional);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--mobile-border-professional);
}

.hc-contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
}

.hc-contact-item i {
  width: 24px;
  text-align: center;
  margin-right: 15px;
  color: var(--mobile-accent-blue);
  font-size: 18px;
}

.hc-mobile-social {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.hc-social-btn {
  width: 48px;
  height: 48px;
  background: var(--mobile-primary-gradient);
  border: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(22, 118, 230, 0.3);
}

.hc-social-btn:hover {
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 24px rgba(22, 118, 230, 0.4);
}

/* Professional Mobile Offcanvas */
.hc-offcanvas {
  background: var(--mobile-header-bg);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  width: 380px;
  border-left: 1px solid var(--mobile-border-professional);
  box-shadow: var(--mobile-shadow-professional);
}

.hc-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mobile-primary-gradient);
  opacity: 0.08;
  pointer-events: none;
}

.hc-menu-header {
  background: var(--mobile-primary-gradient);
  border-bottom: 1px solid var(--mobile-border-professional);
  padding: 25px 20px 20px;
  position: relative;
  z-index: 2;
}

.hc-mobile-logo-section {
  text-align: center;
}

.hc-mobile-logo {
  max-height: 55px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.hc-mobile-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 6px 0;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.hc-mobile-tagline {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.hc-close-btn {
  position: absolute;
  top: 30px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  color: white;
  font-size: 18px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hc-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: rotate(90deg) scale(1.1);
}

.hc-menu-body {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.hc-mobile-navigation {
  margin-bottom: 40px;
}

.hc-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-mobile-nav-item {
  margin-bottom: 10px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--mobile-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--mobile-border-professional);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hc-mobile-nav-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(22, 118, 230, 0.3);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(22, 118, 230, 0.15);
}

/* New Professional Nav Item Structure */
.hc-nav-item-container {
  display: flex;
  align-items: center;
  position: relative;
}

.hc-nav-label-link {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--mobile-professional);
  text-decoration: none;
  transition: var(--transition);
  flex: 1;
  font-weight: 600;
  font-size: 15px;
}

.hc-nav-label-link:hover {
  color: var(--mobile-accent-blue);
}

.hc-menu-icon {
  width: 24px;
  text-align: center;
  margin-right: 15px;
  color: var(--mobile-accent-blue);
  font-size: 18px;
}

.hc-menu-label {
  flex: 1;
  font-weight: 600;
}

.hc-dropdown-toggle {
  width: 50px;
  height: 54px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--mobile-border-professional);
  color: var(--mobile-professional);
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-dropdown-toggle:hover {
  background: rgba(22, 118, 230, 0.1);
  color: var(--mobile-accent-blue);
}

.hc-mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}

.hc-mobile-nav-link:hover {
  color: var(--accent-color);
}

.hc-menu-arrow {
  color: rgba(245, 158, 11, 0.7);
  font-size: 12px;
  transition: var(--transition);
}

.hc-mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(22, 118, 230, 0.05);
  border-top: 1px solid var(--mobile-border-professional);
}

.hc-mobile-submenu.show {
  max-height: 600px;
  padding: 15px 0;
}

.hc-mobile-submenu .hc-mobile-nav-item {
  margin: 8px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--mobile-border-professional);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hc-submenu-level-2 .hc-mobile-nav-item {
  margin: 6px 25px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(22, 118, 230, 0.2);
}

.hc-submenu-link .hc-nav-label-link {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
}

.hc-submenu-level-2 .hc-nav-label-link {
  padding: 12px 14px;
  font-size: 13px;
}

/* Professional Mobile Contact */
.hc-mobile-contact {
  background: var(--mobile-glass);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--mobile-border-professional);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hc-contact-item {
  display: flex;
  align-items: center;
  padding: 14px 0;
  color: var(--mobile-professional);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--mobile-border-professional);
}

.hc-contact-item:last-of-type {
  border-bottom: none;
}
/* CSS Variables */
:root {
  --primary-color: #ffc0cb; /* pastel pink - original desktop */
  --secondary-color: #ffffff; /* white */
  --accent-color: #f59e0b; /* golden accent - original desktop */
  --text-color: #333333; /* dark text - original desktop */
  --light-pink: #ffe4e1; /* light pink - original desktop */
  /* --gradient-primary: linear-gradient(
    0deg,
    #ffb6c1,
    #ffc0cb,
    #ffe4e1
  );  */
  --gradient-primary: radial-gradient(
    146.92% 86.64% at 100% 100%,
    #ff528e 0%,
    #ffdfee 100%
  );
  --mobile-primary: #ff528e; /* bright pink from figma */
  --mobile-gradient: linear-gradient(
    135deg,
    #ff528e,
    #ff75a6,
    #ff99be,
    #ffdfee
  );
  --mobile-nav-gradient: linear-gradient(
    90deg,
    #4ecdc4,
    #44e08f,
    #ffd93d,
    #ff6b6b
  );
  --happy-color-gradient: linear-gradient(
    180deg,
    #f9cc0c 0%,
    #1676e6 48.63%,
    #3cc380 98.08%
  );
  --mobile-text: #fdf8e9; /* cream text from figma */
  --mobile-bg: rgba(255, 223, 238, 0.95);
  --mobile-card-bg: rgba(255, 255, 255, 0.9);
  --mobile-accent: #ff75a6;

  /* New Professional Mobile Variables */
  --mobile-primary-gradient: linear-gradient(
    135deg,
    rgba(249, 204, 12, 0.9) 0%,
    rgba(22, 118, 230, 0.85) 50%,
    rgba(60, 195, 128, 0.8) 100%
  );
  --mobile-header-bg: rgba(255, 255, 255, 0.95);
  --mobile-glass: rgba(255, 255, 255, 0.85);
  --mobile-professional: #2c3e50;
  --mobile-icon-professional: #34495e;
  --mobile-accent-blue: #1676e6;
  --mobile-shadow-professional: 0 8px 32px rgba(0, 0, 0, 0.12);
  --mobile-border-professional: rgba(255, 255, 255, 0.2);

  --shadow-light: 0 2px 10px rgba(255, 192, 203, 0.2);
  --shadow-medium: 0 4px 20px rgba(255, 192, 203, 0.3);
  --shadow-luxury: 0 20px 60px rgba(255, 82, 142, 0.15);
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --primary-blue: #397ac9;
  --primary-yellow: #f9cc0c;
  --text-dark: #1e1e1e;
  --cream-bg: #fdf8e9;
  --orange-accent: #eb3d00;
  --white-color: #ffffff;
}

/* GSAP Animation Helper */
.gsap-animating {
  transition: none !important;
}

/* header start */
.hc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

.hc-logo-section {
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

.hc-nav {
  background: var(--white-color);
}

.hc-header.hc-header-scrolled {
  background: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/* .hc-header.hc-header-scrolled .hc-mobile-menu-btn {
  position: fixed;
  top: 20px;
  left: 15px;
  z-index: 1000;
  background: var(--white-color);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
} */

.min-vh-80 {
  min-height: 80vh;
}

/* Header Styles */
.hc-header {
  position: sticky;
  z-index: 1000;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  top: 0;
}

/* Top Bar */
.hc-topbar {
  background: var(--primary-color);
  padding: 8px 0;
  font-size: 14px;
}

.hc-social-icons {
  display: flex;
  align-items: center;
}

.hc-social-link {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.hc-social-link i {
  color: transparent;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 1.2rem;
}
.hc-social-link span {
  font-size: 0.7rem;
  color: transparent;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hc-social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.hc-hotline {
  display: flex;
  align-items: center;

  font-weight: 600;
}

.hc-hotline i {
}

/* Logo Section */
.hc-logo-section {
  padding: 10px 0;
}

.hc-logo img {
  max-height: 80px;
  width: auto;
}
.hc-hotline-header-box-content {
  background: var(--white-color);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  min-width: 120px;
}
.hc-hotline-header-box-label,
.hc-hotline-header-box-phone-number {
  text-transform: uppercase;
  color: transparent;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
}
.hc-hotline-header-box-content a {
  color: transparent;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}
.hc-hotline-header-box-content a:hover {
  color: var(--accent-color);
}
.hc-hotline-header-box-icon {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--white-color);
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  position: relative;
  z-index: 5;
  transform: translateX(45px);
  -webkit-transform: translateX(45px);
  -moz-transform: translateX(45px);
  -ms-transform: translateX(45px);
  -o-transform: translateX(45px);
}
.hc-hotline-header-box-icon img {
  max-width: 55px;
  width: 100%;
  height: auto;
}
.hc-hotline-header-box-content {
  padding-left: 60px;
  padding-right: 20px;
}
/* Navigation */
.hc-nav {
  /* background: var(--light-pink); */
  background: linear-gradient(
    270deg,
    #f9cc0c 0%,
    #1676e6 48.63%,
    #3cc380 98.08%
  );
  padding: 0;
  border-top: 1px solid rgba(255, 192, 203, 0.3);
}

.hc-nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.hc-nav-item {
  position: relative;
}

.hc-nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  text-transform: uppercase;
}

.hc-nav-link:hover {
  color: var(--accent-color);
  background: var(--gradient-primary);
}
.hc-nav-item.active .hc-nav-link {
  color: var(--accent-color);
  background: var(--gradient-primary);
}

/* Dropdown Menu */
.hc-dropdown {
  position: relative;
}

.hc-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary-color);
  min-width: 220px;
  box-shadow: var(--shadow-medium);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  padding: 10px 0;
}

.hc-dropdown:hover .hc-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hc-dropdown-item {
  position: relative;
}

.hc-dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-dropdown-link:hover {
  background: var(--light-pink);
  color: var(--accent-color);
}

/* Submenu */

.hc-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  padding: 10px 0;
  background: var(--secondary-color);
  min-width: 150px;
  box-shadow: var(--shadow-medium);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: var(--transition);
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  min-width: 220px;
}

.hc-dropdown-submenu:hover .hc-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hc-submenu-link {
  display: block;
  padding: 10px 15px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.hc-submenu-link:hover {
  background: var(--light-pink);
  color: var(--accent-color);
}

/* Modern Mobile Menu Button */
.hc-mobile-menu-btn {
  position: relative;
  z-index: 1050;
  width: 60px;
  height: 60px;
  background: var(--mobile-header-bg);
  border: 1px solid var(--mobile-border-professional);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  box-shadow: var(--mobile-shadow-professional);
  transition: var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hc-mobile-menu-btn:hover {
  background: var(--mobile-primary-gradient);
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--mobile-shadow-professional),
    0 4px 20px rgba(22, 118, 230, 0.3);
}

.hc-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 2px;
}

.hc-hamburger-line {
  width: 22px;
  height: 3px;
  background: var(--mobile-icon-professional);
  border-radius: 2px;
  transition: var(--transition);
}

.hc-menu-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--mobile-icon-professional);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 1px;
}

.hc-mobile-menu-btn:hover .hc-hamburger-line {
  background: var(--secondary-color);
}

.hc-mobile-menu-btn:hover .hc-menu-text {
  color: var(--secondary-color);
}

/* Enhanced Mobile Header Actions */
.hc-mobile-header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hc-mobile-action-btn {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--mobile-header-bg);
  border: 1px solid var(--mobile-border-professional);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 18px;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--mobile-shadow-professional);
  text-decoration: none;
}

.hc-mobile-action-btn:hover {
  background: var(--mobile-primary-gradient);
  border-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--mobile-shadow-professional),
    0 4px 20px rgba(22, 118, 230, 0.25);
}

.hc-mobile-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Professional Desktop Header Actions */
.hc-header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: 20px;
}

.hc-action-btn {
  position: relative;
  width: 52px;
  height: 52px;
  background: var(--mobile-header-bg);
  border: 1px solid var(--mobile-border-professional);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mobile-icon-professional);
  font-size: 20px;
  transition: var(--transition);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--mobile-shadow-professional);
  text-decoration: none;
}

.hc-action-btn:hover {
  background: var(--mobile-primary-gradient);
  border-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--mobile-shadow-professional),
    0 6px 25px rgba(22, 118, 230, 0.3);
}

.hc-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff4757, #ff6b7a);
  color: white;
  font-size: 12px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  box-shadow: 0 3px 10px rgba(255, 71, 87, 0.4);
  animation: pulse 2s infinite;
}

/* Professional Mobile Offcanvas */
.hc-offcanvas {
  background: var(--mobile-header-bg);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  width: 380px;
  border-left: 1px solid var(--mobile-border-professional);
  box-shadow: var(--mobile-shadow-professional);
}

.hc-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mobile-primary-gradient);
  opacity: 0.08;
  pointer-events: none;
}

.hc-menu-header {
  background: var(--mobile-primary-gradient);
  border-bottom: 1px solid var(--mobile-border-professional);
  padding: 25px 20px 20px;
  position: relative;
  z-index: 2;
}

.hc-mobile-logo-section {
  text-align: center;
}

.hc-mobile-logo {
  max-height: 55px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.hc-mobile-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 6px 0;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.hc-mobile-tagline {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.hc-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 192, 203, 0.3);
  border-radius: 12px;
  color: var(--text-color);
  font-size: 16px;
  transition: var(--transition);
}

.hc-close-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--primary-color);
  color: var(--text-color);
  transform: rotate(90deg);
}

.hc-menu-body {
  padding: 20px 25px 25px;
  position: relative;
  z-index: 2;
}

.hc-mobile-navigation {
  margin-bottom: 40px;
}

.hc-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-mobile-nav-item {
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 192, 203, 0.2);
  transition: var(--transition);
}

.hc-mobile-nav-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--primary-color);
  transform: translateX(4px);
}

.hc-mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
}

.hc-mobile-nav-link:hover {
  color: var(--accent-color);
}

.hc-menu-icon {
  width: 20px;
  text-align: center;
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 16px;
}

.hc-menu-label {
  flex: 1;
  font-weight: 500;
}

.hc-menu-arrow {
  color: rgba(245, 158, 11, 0.7);
  font-size: 12px;
  transition: var(--transition);
}

.hc-dropdown-toggle {
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  transition: var(--transition);
  color: rgba(255, 192, 203, 0.8);
}

.hc-dropdown-toggle:hover {
  color: var(--primary-color);
  background: rgba(255, 192, 203, 0.2);
}

.hc-mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 228, 225, 0.5);
  border-top: 1px solid rgba(255, 192, 203, 0.2);
}

.hc-mobile-submenu.show {
  max-height: 600px;
  padding: 12px 0;
}

.hc-mobile-submenu .hc-mobile-nav-item {
  margin: 6px 15px;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 192, 203, 0.3);
}

.hc-submenu-level-2 .hc-mobile-nav-item {
  margin: 4px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 192, 203, 0.4);
}

.hc-submenu-link {
  padding: 14px 16px;
  font-size: 14px;
}

.hc-submenu-level-2 .hc-submenu-link {
  padding: 12px 14px;
  font-size: 13px;
}

/* Mobile Contact Section */
.hc-mobile-contact {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255, 192, 203, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hc-contact-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 192, 203, 0.2);
}

.hc-contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.hc-contact-item i {
  width: 20px;
  text-align: center;
  margin-right: 12px;
  color: var(--accent-color);
}

.hc-mobile-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.hc-social-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 192, 203, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 16px;
  background: var(--mobile-primary-gradient);
  color: var(--white-color);
}

.hc-social-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 192, 203, 0.4);
}

.index .hc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}
.hc-nav-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hc-header.hc-header-scrolled .hc-logo img {
  max-height: 45px;
  width: auto;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
/* header end */

/* Cart & Search Buttons */
.hc-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.hc-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  position: relative;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.hc-action-btn i {
  color: transparent;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 1.2rem;
  transition: var(--transition);
}

.hc-action-btn:hover {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
.hc-logo-section-right .hc-action-btn:hover i {
  color: var(--white-color) !important;
  background: transparent !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--white-color) !important;
  background-clip: unset !important;
  text-fill-color: var(--text-color) !important;
}
.hc-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-accent);
  color: var(--white-color);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Mobile Header Actions */
.hc-mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hc-mobile-action-btn {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-luxury);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255, 192, 203, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hc-mobile-action-btn i {
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
}

.hc-mobile-action-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.hc-mobile-action-btn:hover i {
  color: var(--white-color);
}

.hc-mobile-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-accent);
  color: var(--white-color);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid var(--white-color);
}

/* Search Modal */
.hc-search-modal .modal-dialog {
  max-width: 800px;
  margin: 1.75rem auto;
}

.hc-search-modal .modal-content {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 30px;
  box-shadow: var(--shadow-luxury), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 192, 203, 0.2);
}

.hc-search-modal .modal-header {
  border: none;
  padding: 25px 30px 0;
  position: relative;
  z-index: 1;
}

.hc-search-modal .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: transparent;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hc-search-modal .modal-body {
  padding: 20px 30px 30px;
  position: relative;
  z-index: 1;
}

/* Search Form */
.hc-search-form {
  position: relative;
  margin-bottom: 25px;
}

/* Enhanced Search Input Group */
.hc-search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 192, 203, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hc-search-input-group:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(255, 192, 203, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hc-search-input {
  flex: 1;
  padding: 20px 25px;
  border: none;
  font-size: 1.1rem;
  background: transparent;
  outline: none;
  min-width: 0;
}

.hc-search-input::placeholder {
  color: #999;
  font-size: 1rem;
}

.hc-search-type {
  padding: 20px 15px;
  border: none;
  border-left: 1px solid rgba(255, 192, 203, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 192, 203, 0.1);
  color: var(--text-color);
  outline: none;
  cursor: pointer;
  min-width: 90px;
  transition: var(--transition);
}

.hc-search-type:focus {
  background: rgba(255, 192, 203, 0.2);
}

.hc-search-btn {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border: none;
  color: var(--white-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-search-btn:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

.hc-close-search {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 192, 203, 0.15);
  border: none;
  color: var(--text-color);
  font-size: 1.1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hc-close-search:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: rotate(90deg);
}

/* Search Categories */
.hc-search-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.hc-search-category {
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(255, 192, 203, 0.1);
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(255, 192, 203, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-search-category i {
  font-size: 0.8rem;
  color: var(--primary-color);
}

.hc-search-category:hover {
  background: var(--gradient-primary);
  color: var(--white-color);
  border-color: transparent;
}

.hc-search-category:hover i {
  color: var(--white-color);
}

/* Popular Searches */
.hc-popular-searches {
  padding: 20px 25px;
  background: rgba(255, 192, 203, 0.08);
  border-radius: 20px;
  margin-bottom: 20px;
}

.hc-popular-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-popular-title i {
  color: var(--primary-color);
}

.hc-popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hc-popular-tag {
  padding: 6px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-color);
  font-size: 0.85rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 192, 203, 0.15);
  cursor: pointer;
}

.hc-popular-tag:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* Search Tips */
.hc-search-tips {
  padding: 15px 20px;
  background: rgba(255, 192, 203, 0.05);
  border-radius: 15px;
  border: 1px dashed rgba(255, 192, 203, 0.3);
}

.hc-tips-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-tips-title i {
  color: var(--primary-color);
}

.hc-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hc-tip-item {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hc-tip-item i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

/* Decorative Elements */
.hc-search-modal::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 192, 203, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

.hc-search-modal::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 192, 203, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* slider start */
.hc-slider-outer {
  position: relative;
  width: 100%;
  height: 100vh;
  isolation: isolate;
  z-index: 1;
}

.hc-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hc-hero {
  background: var(--gradient-primary);
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.hc-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ice-cream-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ice-cream-pattern)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Các phần tử trong hero */
.hc-hero-milk {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 1;
}

.hc-hero-tree-bottom {
  position: absolute;
  bottom: -50px;
  right: 7%;
  height: auto;
  width: 100%;
  max-width: 300px;
  pointer-events: none;
  z-index: 2;
  transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
}
.hc-hero-tree-top {
  position: absolute;
  bottom: -10%;
  right: 3%;
  height: auto;
  width: 100%;
  max-width: 400px;
  pointer-events: none;
  z-index: 2;
  transform: rotate(5deg);
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
}
.hc-hero-left-strawberry {
  position: absolute;
  bottom: -10%;
  right: 0;
  pointer-events: none;
  z-index: 2;
  max-width: 300px;
}
.hc-hero-left-strawberry-img {
  width: 100%;
  height: auto;
}
.hc-hero-left-strawberry-milk {
  position: absolute;
  bottom: 5%;
  left: 0;
  pointer-events: none;
  z-index: 2;
  max-width: 400px;
}
.hc-hero-left-strawberry-milk-img {
  width: 100%;
  height: auto;
}
.slider-text-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 3;
  max-width: 500px;
}
.slider-text-content-text {
  font-family: KeeponTruckin;
  color: var(--mobile-accent);
  font-size: clamp(2.5rem, 2.0385rem + 2.3077vw, 4rem);
  text-transform: uppercase;
  overflow: hidden;
  display: block;
  line-height: 1.4;
}

/* SplitText styles for better rendering */
.slider-text-content-text .split-line {
  display: block;
  overflow: hidden;
  line-height: inherit;
}
/* slider end */

/* TRANG CHỦ START */

/* ABOUT START */
/* About Section Styles */
.hc-about {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hc-about-title {
  font-family: Baloo2-ExtraBold, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 10px;
}

.hc-about-heading {
  font-family: Baloo2-ExtraBold;
  text-transform: uppercase;
  font-size: clamp(2rem, 1.6923rem + 1.5385vw, 3rem);
  color: var(--primary-blue);
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 10px;
  display: inline-block; /* Thêm display inline-block để text wrap đúng */
  white-space: normal; /* Đảm bảo text có thể xuống dòng */
  word-wrap: break-word; /* Cho phép từ dài được wrap */
}

.hc-about-heading::after {
  content: attr(data-text);
  position: absolute;
  left: 5px;
  top: 1px;
  color: var(--primary-yellow);
  z-index: -1;
  width: 100%; /* Đảm bảo width bằng với text gốc */
  height: 100%; /* Đảm bảo height bằng với text gốc */
  white-space: normal; /* Đảm bảo text shadow cũng xuống dòng giống text gốc */
  word-wrap: break-word; /* Cho phép từ dài được wrap giống text gốc */
}

.hc-about-text,
.hc-process-text {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  line-height: 2;
  color: var(--text-dark);
  text-align: justify;
}

.hc-about-more {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  background: linear-gradient(120deg, var(--primary-yellow) 0%, #ffe082 100%);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.hc-about-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #ffe082 0%, var(--primary-yellow) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hc-about-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
  color: var(--primary-blue);
}

.hc-about-more:hover::before {
  opacity: 1;
}

.hc-about-more i {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.hc-about-more:hover i {
  transform: translateX(8px);
}

.hc-about-more span {
  position: relative;
  z-index: 1;
}

.hc-about-images {
  position: relative;
}

.hc-about-main-image,
.hc-process-image {
  border-radius: 23px;
  box-shadow: var(--shadow-medium);
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  -ms-border-radius: 23px;
  -o-border-radius: 23px;
  overflow: hidden;
  --bs-aspect-ratio: calc(9 / 13 * 100%);
}
.hc-about-main-image a,
.hc-about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-about-floating-image {
  position: absolute;
  border-radius: 22px;
  background: #fff;
  padding: 6px;
  box-shadow: var(--shadow-medium);
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  z-index: 3;
}

.hc-about-floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.hc-about-floating-1 {
  top: -45px;
  left: -55px;
}

.hc-about-floating-2 {
  bottom: -45px;
  right: -20px;
}
.hc-about-floating-1 .hc-about-floating-image-box {
  overflow: hidden;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  width: 200px;
}
.hc-about-floating-2 .hc-about-floating-image-box {
  overflow: hidden;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  width: 140px;
  --bs-aspect-ratio: 150%;
}
.hc-about-floating-image-box a,
.hc-about-floating-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.element-particle {
  position: absolute;
  z-index: 6;
  pointer-events: none;
}
.element-particle-1 {
  bottom: 10%;
  left: 42%;
}
.element-particle-2 {
  top: 10%;
  right: 12%;
}
.svg-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.hc-about-main-image-line {
  position: absolute;
  top: 48%;
  left: 46%;
  z-index: 7;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
  height: 112%;
  pointer-events: none;
  background: var(--primary-yellow);
  clip-path: url(#about-clip-path);
}
/* about end */

/* process start */
/* Production Process Section */
.hc-process {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hc-process-title {
  font-family: Baloo2-ExtraBold, sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  color: var(--primary-blue);
  text-shadow: 3px 1px 0px var(--primary-yellow);
  margin-bottom: 30px;
}

.hc-process-image img,
.hc-process-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-process .container {
  position: relative;
  z-index: 5;
}

.hc-process-background {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: var(--background-process);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  pointer-events: none;
}

.hc-process-gradient {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, #fff, transparent);
  pointer-events: none;
}

.hc-process-gradient-vertical {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #fff, transparent 18.406%);
  pointer-events: none;
}
.hc-process-gradient-vertical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff, transparent 18.406%);
  pointer-events: none;
}

/* Thêm styles cho các element mới */
.hc-process {
  padding: 100px 0;
}

.hc-process-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.hc-process-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px dashed var(--primary-blue);
  border-radius: 50%;
  opacity: 0.15;
  top: -100px;
  left: -150px;
}

.hc-process-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--primary-yellow) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.2;
  right: 10%;
  top: 20%;
}

.hc-process-line {
  position: absolute;
  width: 150px;
  height: 3px;
  background: var(--primary-blue);
  opacity: 0.2;
  right: 5%;
  bottom: 30%;
  transform: rotate(-45deg);
}

.hc-ice-cream-float {
  position: absolute;
  width: 120px;
  right: 15%;
  bottom: 15%;
}

.hc-ice-cream-float img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hc-process-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hc-process-image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary-blue);
  z-index: 2;
  transform-origin: left;
}

.hc-process-image-inner {
  transform-origin: center;
}

.hc-heading-wrapper {
  overflow: hidden;
}

.hc-heading-line {
  display: block;
  transform-origin: left;
}

.hc-process-text-wrapper {
  overflow: hidden;
  opacity: 0;
}

.hc-process-gradient-radial {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  mix-blend-mode: overlay;
}

/* process end */

/* reasons start */
/* Reasons Section */
.hc-reasons {
  padding: 80px 0;
  background: #f3f1ed;
  border-radius: 32px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}
.hc-reasons .container {
  position: relative;
  z-index: 5;
}

.hc-reason-item {
  margin-bottom: 40px;
}

.hc-reason-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hc-reason-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.5;
}

.hc-reason-center {
  position: relative;
  text-align: center;
  align-content: end;
}

.hc-reason-main-img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.hc-reason-splash {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  z-index: 1;
  opacity: 0.8;
  animation: rotate 20s linear infinite;
}
.hc-reasons .hc-about-heading {
  font-size: clamp(2rem, 1.7538rem + 1.2308vw, 2.8rem);
}
.hc-reason-header-box {
  margin-bottom: 80px;
}
.hc-reasons-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #fff,
    transparent,
    transparent,
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
.hc-reasons-bg-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    #fff,
    transparent,
    transparent,
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
.hc-reason-center-image {
  overflow: hidden;
  width: 70%;
  height: 70%;
  margin: 0 auto;
  position: relative;
  z-index: 6;
}
.hc-reason-center-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hc-reason-center-bg-circle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  /* background: var(--white-color); */
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 2;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border: 40px solid var(--white-color);
}
.hc-reason-center-image {
  transform: translateY(30%);
  -webkit-transform: translateY(30%);
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -o-transform: translateY(30%);
}
.hc-reason-center-dong-sua {
  position: absolute;
  bottom: -19%;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 3;
  max-width: 300px;
  pointer-events: none;
}
.hc-reason-center-dong-sua-left {
  left: -20%;
  transform: rotate(40deg) rotateY(190deg);
  -webkit-transform: rotate(40deg) rotateY(190deg);
  -moz-transform: rotate(40deg) rotateY(190deg);
  -ms-transform: rotate(40deg) rotateY(190deg);
  -o-transform: rotate(40deg) rotateY(190deg);
}
.hc-reason-center-dong-sua-right {
  left: auto;
  right: -20%;
  transform: rotate(-40deg) rotateY(0deg);
  -webkit-transform: rotate(-40deg) rotateY(0deg);
  -moz-transform: rotate(-40deg) rotateY(0deg);
  -ms-transform: rotate(-40deg) rotateY(0deg);
  -o-transform: rotate(-40deg) rotateY(0deg);
}
.hc-reason-center-item-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  max-width: 60px;
  object-fit: contain;
  cursor: pointer;
}
.hc-reason-center-item-icon-1 {
  left: 5%;
  top: 0%;
}
.hc-reason-center-item-icon-2 {
  left: 22%;
  top: -25%;
  max-width: 70px;
}
.hc-reason-center-item-icon-3 {
  left: 56%;
  top: -26%;
}
.hc-reason-center-item-icon-4 {
  left: 77%;
  top: 0%;
  max-width: 70px;
}
.hc-line-svg {
}
/* reasons end */

/* gallery and stats start */
/* Gallery Section */
.hc-gallery {
  padding: 80px 0;
}

.hc-gallery-title {
  font-family: Baloo2-ExtraBold, sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  color: var(--primary-blue);
  text-shadow: 3px 1px 0px var(--primary-yellow);
  margin-bottom: 50px;
  text-align: center;
}

.hc-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.hc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hc-gallery-item:hover img {
  transform: scale(1.05);
}

.hc-gallery-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hc-gallery-more .hc-arrow-right {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hc-gallery-more:hover .hc-arrow-right {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  fill: var(--primary-blue) !important;
}
.hc-gallery-more:hover {
  color: var(--primary-blue);
}

/* Stats Section */
.hc-stats {
  padding: 40px 0 0;
}

.hc-stat-item {
  display: flex;
  align-items: center;
}

.hc-stat-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-blue);
}
.hc-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hc-stat-content {
  flex: 1;
}

.hc-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.hc-stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}
.hc-gallery-images-container {
  column-count: 4;
  column-gap: 20px;
}
.hc-gallery-image-item {
  margin-bottom: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
}
.hc-gallery-image-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hc-gallery .hc-about-heading {
  white-space: nowrap;
}
.hc-stat-number-label {
  font-size: 0.9rem;
  max-width: 50px;
  display: inline-flex;
  font-weight: 500;
  line-height: 1;
}
.svg-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.hc-gallery-and-stast-wrapper {
  position: relative;
  z-index: 2;
  padding: 150px 0;
}
.hc-gallery-and-stast-wrapper section {
  position: relative;
  z-index: 5;
}
.hc-gallery-and-stast-wrapper-bg {
  background: #fdf8e9;
  clip-path: url(#gallery-clip-path);
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hc-gallery-image-item {
  visibility: hidden;
}

.hc-stat-item {
  opacity: 0;
  transform: translateY(30px);
}

.hc-stat-number-text {
  display: inline-block;
}
.hc-image-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hc-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hc-gallery-image-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hc-gallery-lazy-image {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hc-gallery-lazy-image.loaded {
  opacity: 1;
}

.hc-gallery-image-item.image-loaded .hc-image-preloader {
  opacity: 0;
  pointer-events: none;
}

/* Gallery Particles */
.hc-gallery {
  position: relative;
  overflow: hidden;
}

.hc-gallery-particles-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hc-gallery-particle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Large SVG particles */
.hc-gallery-particle-1 {
  top: 10%;
  right: 5%;
  transform: rotate(15deg) scale(0.8);
  z-index: 3;
}

.hc-gallery-particle-2 {
  bottom: 15%;
  left: 8%;
  transform: rotate(-20deg) scale(0.7);
  z-index: 3;
}

/* Small particles */
.hc-gallery-particle-small {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9cc0c, #1676e6);
  box-shadow: 0 0 10px rgba(22, 118, 230, 0.5);
  z-index: 4;
}

.hc-gallery-particle-3 {
  top: 25%;
  right: 15%;
}

.hc-gallery-particle-4 {
  top: 45%;
  left: 20%;
}

.hc-gallery-particle-5 {
  bottom: 30%;
  right: 25%;
}

.hc-gallery-particle-6 {
  top: 15%;
  left: 30%;
}

.hc-gallery-particle-7 {
  bottom: 20%;
  right: 35%;
}

/* Medium particles */
.hc-gallery-particle-medium {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1676e6, #3cc380);
  box-shadow: 0 0 15px rgba(60, 195, 128, 0.6);
  z-index: 3;
}

.hc-gallery-particle-8 {
  top: 35%;
  right: 40%;
}

.hc-gallery-particle-9 {
  bottom: 40%;
  left: 25%;
}

.hc-gallery-particle-10 {
  top: 60%;
  right: 15%;
}
/* Fix z-index for gallery items */
.hc-gallery-images-container {
  position: relative;
  z-index: 1;
}

.hc-gallery-image-item {
  position: relative;
  z-index: 1;
}
/* gallery and stats end */

/* tin tức trang chủ start */
/* News Section */
.hc-news {
  padding: 80px 0;
  background: #fff;
}

.hc-news-title {
  font-family: Baloo2-ExtraBold, sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  color: var(--primary-blue);
  text-shadow: 3px 1px 0px var(--primary-yellow);
  margin-bottom: 50px;
  text-align: center;
}

.hc-news-item {
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  height: 100%;
}

.hc-news-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.hc-news-img img,
.hc-news-img a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.hc-news-date {
  position: absolute;
  bottom: 6px;
  left: 3%;
  background: var(--primary-blue);
  color: var(--white-color);
  padding: 5px 20px;
  border-radius: 10px 10px 0 0;
  font-size: 16px;
  font-weight: 500;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}

.hc-news-content {
  padding: 20px;
}

.hc-news-heading a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hc-news-heading a:hover {
  color: var(--primary-blue);
}
.hc-news-text > * {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
  opacity: 0.8;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -moz-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.hc-news .hc-about-heading {
  white-space: nowrap;
}
.hc-news {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hc-news-special-container {
  padding: 40px 0;
}

.hcNewsSwiper {
  padding-bottom: 50px;
}

.hc-news-navigation {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.hc-news-prev,
.hc-news-next {
  width: 50px !important;
  height: 50px !important;
  background-color: rgba(56, 69, 85, 0.9) !important;
  border-radius: 50%;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.hc-news-prev:after,
.hc-news-next:after {
  font-size: 20px !important;
  color: #fff !important;
}

.hc-news-prev:hover,
.hc-news-next:hover {
  background-color: #384555 !important;
  transform: scale(1.1);
}

.hc-news-pagination {
  position: absolute;
  bottom: 0 !important;
}

.hc-news-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #384555;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.hc-news-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  opacity: 1;
}
/* News Item Hover Effects */
.hc-news-item {
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.hc-news-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(56, 69, 85, 0) 0%,
    rgba(56, 69, 85, 0.05) 100%
  );
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.hc-news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(56, 69, 85, 0.15);
}

.hc-news-item:hover::before {
  opacity: 1;
}

/* Image Hover Effects */
.hc-news-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.hc-news-img img {
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hc-news-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(56, 69, 85, 0.2) 0%,
    rgba(56, 69, 85, 0) 100%
  );
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}

.hc-news-item:hover .hc-news-img img {
  transform: scale(1.08);
}

.hc-news-item:hover .hc-news-img::after {
  opacity: 1;
}

/* Text Content Hover Effects */
.hc-news-content {
  position: relative;
  z-index: 2;
}

.hc-news-title {
  transition: all 0.3s ease;
}

.hc-news-item:hover .hc-news-title {
  color: #384555;
}

/* Date and Category Effects */
.hc-news-meta {
  position: relative;
  transition: all 0.3s ease;
}

.hc-news-item:hover .hc-news-meta {
  color: #384555;
  opacity: 0.9;
}

/* Navigation and Pagination Styles */
.hc-news-navigation {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.hc-news-prev,
.hc-news-next {
  width: 50px !important;
  height: 50px !important;
  background-color: rgba(56, 69, 85, 0.9) !important;
  border-radius: 50%;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.hc-news-prev:after,
.hc-news-next:after {
  font-size: 20px !important;
  color: #fff !important;
}

.hc-news-prev:hover,
.hc-news-next:hover {
  background-color: #384555 !important;
  transform: scale(1.1);
}

.hc-news-pagination {
  position: absolute;
  bottom: 0 !important;
}

.hc-news-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #384555;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.hc-news-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  opacity: 1;
}
/* tin tức trang chủ end */

/* TRANG CHỦ END */

/* FOOTER START */
/* Footer Header Section */
.hc-footer-new {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  z-index: 5;
}

.hc-footer-header {
  position: relative;
  padding: 60px 0 0;
  width: 90%;
  margin: 0 auto;
}

/* Snowflakes Animation */
.hc-snowflakes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hc-snowflakes .hc-snowflake {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0.7;
  animation: snowfall 10s linear infinite;
}

.hc-snowflake-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.hc-snowflake-2 {
  top: 20%;
  left: 30%;
  animation-delay: -2s;
}
.hc-snowflake-3 {
  top: 5%;
  left: 50%;
  animation-delay: -4s;
}
.hc-snowflake-4 {
  top: 15%;
  left: 70%;
  animation-delay: -6s;
}
.hc-snowflake-5 {
  top: 25%;
  left: 90%;
  animation-delay: -8s;
}
.hc-snowflake-6 {
  top: 30%;
  left: 15%;
  animation-delay: -1s;
}
.hc-snowflake-7 {
  top: 35%;
  left: 35%;
  animation-delay: -3s;
}
.hc-snowflake-8 {
  top: 40%;
  left: 55%;
  animation-delay: -5s;
}
.hc-snowflake-9 {
  top: 45%;
  left: 75%;
  animation-delay: -7s;
}
.hc-snowflake-10 {
  top: 50%;
  left: 95%;
  animation-delay: -9s;
}

@keyframes snowfall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Footer Products Section */
.hc-footer-products-new {
  position: relative;
  height: 170px;
  z-index: 5;
}

.hc-footer-product-pack {
  position: absolute;
  bottom: -10%;
  left: 3%;
  width: 120px;
  height: auto;
}

.hc-footer-product-small {
  position: absolute;
  bottom: -10%;
  left: 11%;
  width: 150px;
  height: auto;
  z-index: 3;
}

.hc-footer-product-package {
  position: absolute;
  bottom: -10%;
  left: 21%;
  width: 120px;
  height: auto;
}

.hc-footer-product-rotate {
  position: absolute;
  width: 60px;
  height: auto;
}

.hc-footer-product-rotate:nth-child(4) {
  top: 20px;
  left: 50%;
  animation-delay: 0s;
}

.hc-footer-product-rotate:nth-child(5) {
  top: 40px;
  right: 30%;
  animation-delay: 1s;
}

.hc-footer-product-rotate:nth-child(6) {
  top: 60px;
  left: 20%;
  animation-delay: 2s;
}

.hc-footer-product-rotate:nth-child(7) {
  top: 80px;
  right: 10%;
  animation-delay: 3s;
}

/* Footer Decorative Elements */
.hc-footer-decoration {
  position: absolute;
  width: 40px;
  height: auto;
  opacity: 0.8;
}

.hc-decoration-1 {
  bottom: -20%;
  right: 16%;
  width: 100px;
  transform: rotate(-19deg);
  -webkit-transform: rotate(-19deg);
  -moz-transform: rotate(-19deg);
  -ms-transform: rotate(-19deg);
  -o-transform: rotate(-19deg);
}

.hc-decoration-2 {
  bottom: -15%;
  right: 11%;
  width: 117px;
  transform: rotate(-13deg);
  -webkit-transform: rotate(-13deg);
  -moz-transform: rotate(-13deg);
  -ms-transform: rotate(-13deg);
  -o-transform: rotate(-13deg);
}

.hc-decoration-3 {
  bottom: -18%;
  right: 5%;
  width: 140px;
  transform: rotate(-12deg);
  -webkit-transform: rotate(-12deg);
  -moz-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  -o-transform: rotate(-12deg);
}

.hc-decoration-4 {
  bottom: -15%;
  right: -1%;
  width: 140px;
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
}

.hc-decoration-5 {
  bottom: 10px;
  left: 45%;
  animation-delay: 4s;
}

/* Footer Main Content */
.hc-footer-main-new {
  background: #1a1a1a;
  padding: 60px 0 30px;
  color: #ffffff;
}

/* Newsletter Section */
.hc-footer-newsletter {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.hc-newsletter-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0;
}

.hc-newsletter-form {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hc-newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #333;
  border-radius: 50px;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.hc-newsletter-input::placeholder {
  color: #999;
}

.hc-newsletter-input:focus {
  border-color: #ffd700;
}

.hc-newsletter-btn {
  padding: 15px 30px;
  background: #ffd700;
  color: #1a1a1a;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hc-newsletter-btn:hover {
  background: #ffed4e;
  color: var(--text-dark);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

/* Footer Content */
.hc-footer-content {
  margin-bottom: 40px;
}

.hc-footer-content h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Company Section */
.hc-footer-company p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
}

.hc-footer-logo-new {
  max-width: 100px;
  height: auto;
  margin: 0px 0;
}

/* Products List */
.hc-footer-products-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-footer-products-list li {
  margin-bottom: 12px;
}

.hc-footer-products-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.hc-footer-products-list a:hover {
  color: #ffd700;
}

.hc-list-icon {
  width: 16px;
  height: 16px;
}

/* Contact Section */
.hc-footer-contact-new ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-footer-contact-new li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}

.hc-footer-contact-new-list li i {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--white-color);
  color: var(--text-dark);
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Links Section */
.hc-footer-links-new ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-footer-links-new li {
  margin-bottom: 12px;
}

.hc-footer-links-new a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.hc-footer-links-new a:hover {
  color: #ffd700;
}

/* Footer Bottom */
.hc-footer-bottom-new {
  padding-top: 30px;
  border-top: 1px solid #333;
}

.hc-footer-social-new {
  display: flex;
  gap: 15px;
}

.hc-social-icon-new {
  width: 40px;
  height: 40px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.hc-social-icon-new i {
  color: var(--text-dark);
  font-size: 1.1rem;
}
.hc-social-icon-new:hover {
  background: #ffd700;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}
.hc-social-icon-new span {
  color: var(--text-dark);
  font-size: 0.8rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  font-weight: 500;
}
.hc-social-icon-new:hover i,
.hc-social-icon-new:hover span {
  color: var(--text-dark);
}
.hc-social-img {
  width: 20px;
  height: 20px;
}

.hc-footer-credit {
  color: #999;
  font-size: 14px;
  margin: 0;
}
.hc-footer-credit a {
  color: #999;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hc-footer-credit a:hover {
  color: var(--white-color);
}
.i-transform i {
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
}
/* FOOTER END */

/* banner start */

/* About Hero Section */
.hc-about-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hc-about-hero-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, var(--cream-bg) 0%, #fff 100%);
  clip-path: url(#banner-clip-path);
}
.hc-about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hc-about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) brightness(0.5);
  -webkit-filter: grayscale(100%) brightness(0.5);
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
}
.svg-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.hc-hero-ice-cream {
  position: absolute;
  width: 150px;
  height: auto;
}

.hc-hero-ice-left {
  top: 20%;
  left: -50px;
  animation-delay: 0s;
}

.hc-hero-ice-right {
  top: 30%;
  right: -50px;
}

.hc-about-title {
  font-size: clamp(2rem, 1.6923rem + 1.5385vw, 3rem);
  font-weight: 900;
  color: var(--orange-accent);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hc-breadcrumb {
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  max-width: 100%;
  overflow: hidden;
}

.hc-breadcrumb-link {
  color: #666;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.hc-breadcrumb-link:hover {
  color: var(--orange-accent);
}

.hc-breadcrumb-separator {
  margin: 0 15px;
  color: #999;
  flex-shrink: 0;
}

.hc-breadcrumb-current {
  color: var(--orange-accent);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
  .hc-breadcrumb {
    font-size: 0.9rem;
  }

  .hc-breadcrumb-link,
  .hc-breadcrumb-current {
    max-width: 120px;
  }

  .hc-breadcrumb-separator {
    margin: 0 8px;
  }
}

@media (max-width: 576px) {
  .hc-breadcrumb {
    font-size: 0.85rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hc-breadcrumb-link,
  .hc-breadcrumb-current {
    max-width: 200px;
  }

  .hc-breadcrumb-separator {
    display: none;
  }

  .hc-breadcrumb-link::after {
    content: " >";
    color: #999;
    margin-left: 0.5rem;
  }

  .hc-breadcrumb-current::before {
    content: "> ";
    color: #999;
  }
}

/* banner end */

/* trang giới thiệu start */
.hc-about-content {
  background: var(--white-color);
  position: relative;
  z-index: 1;
}
.hc-about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--white-color) 0%,
    transparent 100%
  );
  z-index: 2;
}
.hc-about-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--white-color) 0%, transparent 100%);
  z-index: 2;
}
.hc-about-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-image: var(--background-introduce);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.3;
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  -ms-opacity: 0.3;
  -o-opacity: 0.3;
}
.hc-about-content .container {
  position: relative;
  z-index: 5;
}
/* trang giới thiệu end */

/* đánh giá khách hàng start */

/* Testimonials Section */
.hc-testimonials {
  padding: 0px 0;
}

.hc-testimonials-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange-accent);
  text-align: center;
  margin-bottom: 60px;
}

.hc-testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.hc-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hc-testimonial-active {
  background: linear-gradient(
    135deg,
    rgba(249, 204, 12, 0.9) 0%,
    rgba(22, 118, 230, 0.85) 50%,
    rgba(60, 195, 128, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hc-testimonial-active .hc-testimonial-quote,
.hc-testimonial-active .hc-testimonial-content,
.hc-testimonial-active .hc-testimonial-author h5,
.hc-testimonial-active .hc-testimonial-author span {
  color: rgba(255, 255, 255, 0.95) !important;
}

.hc-testimonial-active .hc-testimonial-footer {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.hc-testimonial-quote {
  font-size: 60px;
  font-weight: 900;
  color: var(--orange-accent);
  line-height: 1;
  margin-bottom: 20px;
}

.hc-testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hc-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.hc-testimonial-footer-orange {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.hc-testimonial-avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-blue);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hc-testimonial-card.hc-testimonial-active .hc-testimonial-avatar {
  border-color: var(--white-color);
}

.hc-testimonial-avatar img,
.hc-testimonial-avatar a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-testimonial-author h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Navigation Styles */
.hc-testimonial-navigation {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: -30px;
  right: -30px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.hc-testimonial-prev,
.hc-testimonial-next {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.hc-testimonial-prev:hover,
.hc-testimonial-next:hover {
  background: linear-gradient(
    135deg,
    rgba(249, 204, 12, 0.9) 0%,
    rgba(22, 118, 230, 0.85) 50%,
    rgba(60, 195, 128, 0.8) 100%
  );
  color: #fff;
  transform: scale(1.1);
}

/* Pagination Styles */
.hc-testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.hc-pagination-dot {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #666;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.hc-pagination-dot:hover {
  background: rgba(249, 204, 12, 0.15);
  color: rgba(22, 118, 230, 0.9);
}

.hc-pagination-dot.hc-pagination-active {
  background: linear-gradient(
    135deg,
    rgba(249, 204, 12, 0.9) 0%,
    rgba(22, 118, 230, 0.85) 50%,
    rgba(60, 195, 128, 0.8) 100%
  );
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(22, 118, 230, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* đánh giá khách hàng end */

/* Cây kem elements */
.cay_kem_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cay_kem_1,
.cay_kem_2,
.cay_kem_3,
.cay_kem_4,
.cay_kem_5,
.cay_kem_6 {
  position: absolute;
  z-index: 2;
  transition: all 0.3s ease;
  animation: floatFade 6s cubic-bezier(0.4, 0, 0.2, 1) infinite,
    glowPulse 8s ease-in-out infinite;
  mix-blend-mode: luminosity;
  will-change: transform, opacity, filter, left, top;
  cursor: grab;
  user-select: none;
  touch-action: none;
  pointer-events: all;
}

/* Dragging State */
.ice-cream-dragging {
  cursor: grabbing !important;
  animation: none !important;
  transform: scale(1.15) !important;
  opacity: 0.95 !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7))
    drop-shadow(0 0 30px rgba(255, 192, 203, 0.5)) !important;
  transition: none !important;
  z-index: 1000 !important;
}

/* Reset Animation */
@keyframes resetBounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(0.8);
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.ice-cream-reset {
  animation: resetBounce 0.5s cubic-bezier(0.36, 0, 0.66, -0.56) !important;
  pointer-events: none;
}

/* Container styles to ensure proper positioning */
.hc-about-content {
  position: relative;
  overflow: visible !important;
}

/* Hover Effects */
.cay_kem_1:hover,
.cay_kem_2:hover,
.cay_kem_3:hover,
.cay_kem_4:hover,
.cay_kem_5:hover,
.cay_kem_6:hover {
  transform: scale(1.08);
  z-index: 3;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6))
    drop-shadow(0 0 25px rgba(255, 192, 203, 0.4));
  cursor: grab;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .cay_kem_1,
  .cay_kem_2,
  .cay_kem_3,
  .cay_kem_4,
  .cay_kem_5,
  .cay_kem_6 {
    transform: scale(0.85);
  }

  .ice-cream-dragging {
    transform: scale(1) !important;
  }

  .cay_kem_1:hover,
  .cay_kem_2:hover,
  .cay_kem_3:hover,
  .cay_kem_4:hover,
  .cay_kem_5:hover,
  .cay_kem_6:hover {
    transform: scale(0.92);
  }
}

.cay_kem_1 {
  left: 2%;
  top: 85%;
  animation-delay: 0s, 0.5s;
}

.cay_kem_2 {
  right: 15%;
  top: 100%;
  animation-delay: 1s, 1.5s;
}

.cay_kem_3 {
  left: 25%;
  top: 115%;
  animation-delay: 2s, 2.5s;
}

.cay_kem_4 {
  right: 28%;
  top: 125%;
  animation-delay: 3s, 3.5s;
}

.cay_kem_5 {
  left: 35%;
  top: 110%;
  animation-delay: 4s, 4.5s;
}

.cay_kem_6 {
  right: 38%;
  top: 135%;
  animation-delay: 5s, 5.5s;
}

.cay_kem_1:hover,
.cay_kem_2:hover,
.cay_kem_3:hover,
.cay_kem_4:hover,
.cay_kem_5:hover,
.cay_kem_6:hover {
  transform: scale(1.08);
  z-index: 3;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6))
    drop-shadow(0 0 25px rgba(255, 192, 203, 0.4));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .cay_kem_1,
  .cay_kem_2,
  .cay_kem_3,
  .cay_kem_4,
  .cay_kem_5,
  .cay_kem_6 {
    transform: scale(0.85);
  }

  .cay_kem_1 {
    left: 5%;
    top: 85%;
  }
  .cay_kem_2 {
    right: 20%;
    top: 100%;
  }
  .cay_kem_3 {
    left: 15%;
    top: 115%;
  }
  .cay_kem_4 {
    right: 25%;
    top: 125%;
  }
  .cay_kem_5 {
    left: 28%;
    top: 110%;
  }
  .cay_kem_6 {
    right: 32%;
    top: 135%;
  }

  .cay_kem_1:hover,
  .cay_kem_2:hover,
  .cay_kem_3:hover,
  .cay_kem_4:hover,
  .cay_kem_5:hover,
  .cay_kem_6:hover {
    transform: scale(0.92);
  }
}

/* Hover Effects */
.cay_kem_1:hover .ice-cream-glow,
.cay_kem_2:hover .ice-cream-glow,
.cay_kem_3:hover .ice-cream-glow,
.cay_kem_4:hover .ice-cream-glow,
.cay_kem_5:hover .ice-cream-glow,
.cay_kem_6:hover .ice-cream-glow {
  opacity: 1;
}

/* Ice Cream Glow Effect */
.ice-cream-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Ice Cream Advanced Animations */
@keyframes glowPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3))
      drop-shadow(0 0 12px rgba(255, 192, 203, 0.15));
    opacity: 0.9;
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4))
      drop-shadow(0 0 16px rgba(255, 192, 203, 0.25));
    opacity: 1;
  }
}

@keyframes floatFade {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }
  25% {
    transform: translateY(-8px);
    opacity: 0.95;
  }
  50% {
    transform: translateY(-12px);
    opacity: 1;
  }
  75% {
    transform: translateY(-8px);
    opacity: 0.95;
  }
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cay_kem_1,
  .cay_kem_2,
  .cay_kem_3,
  .cay_kem_4,
  .cay_kem_5,
  .cay_kem_6 {
    transform: scale(0.8);
    animation-duration: 4s;
  }

  .cay_kem_1 {
    left: -50px;
  }
  .cay_kem_2 {
    right: -40px;
  }
  .cay_kem_3 {
    left: 5%;
  }
  .cay_kem_4 {
    right: 10%;
  }
  .cay_kem_5 {
    right: 15%;
  }
  .cay_kem_6 {
    left: 10%;
  }
}

/* Scroll Animation Helper */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Ice Cream Animations */
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes rotateFloat {
  0%,
  100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(5deg) translateY(-10px);
  }
}

@keyframes bounceScale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/* trang sản phẩm start */

/* =============================================
   PRODUCTS PAGE STYLES
   ============================================= */

/* Products Hero Section */
.hc-products-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream-bg) 0%, #fff 100%);
  overflow: hidden;
}

.hc-products-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hc-products-hero .hc-hero-ice-cream {
  position: absolute;
  width: 120px;
  height: auto;
  animation: floatUpDown 4s ease-in-out infinite;
}

.hc-products-hero .hc-hero-ice-left {
  top: 15%;
  left: -40px;
  animation-delay: 0s;
}

.hc-products-hero .hc-hero-ice-right {
  top: 25%;
  right: -40px;
  animation-delay: 2s;
}

.hc-products-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--orange-accent);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Products Main Section */
.hc-products-main {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Products Sidebar */
.hc-products-sidebar {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.hc-sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange-accent);
  margin-bottom: 25px;
  text-align: center;
}

.hc-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-category-item {
  margin-bottom: 15px;
}

.hc-category-link {
  display: block;
  padding: 15px 20px;
  background: #f8f9fa;
  color: #666;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hc-category-link:hover,
.hc-category-link.active {
  background: var(--orange-accent);
  color: #fff;
  transform: translateX(5px);
}

/* Products Grid */
.hc-products-content {
  position: relative;
}

.hc-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.hc-product-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hc-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hc-product-image {
  position: relative;
}

.hc-product-image img,
.hc-product-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.hc-product-card:hover .hc-product-image img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.hc-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hc-product-info h3 a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hc-product-info h3 a:hover {
  color: var(--orange-accent);
}
.hc-product-price {
  font-size: 1rem;
  text-align: center;
}

.hc-product-price .fs-14 {
  font-size: 0.875rem;
}

.hc-product-price .text-danger {
  color: var(--orange-accent) !important;
}

@media (max-width: 576px) {
  .hc-product-price {
    font-size: 0.875rem;
  }
  .hc-product-price .fs-14 {
    font-size: 0.75rem;
  }
}

.hc-product-actions {
  text-align: center;
}

.hc-order-btn {
  background: var(--orange-accent);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.hc-order-btn:hover {
  background: #ff8c00;
  transform: translateY(-2px);
}

/* Products Pagination */
.hc-products-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}

.hc-pagination-btn {
  padding: 12px 20px;
  background: #fff;
  color: #666;
  border: 2px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.hc-pagination-btn:hover,
.hc-pagination-btn.active {
  background: var(--orange-accent);
  color: #fff;
  border-color: var(--orange-accent);
}

.hc-pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hc-page-numbers {
  display: flex;
  gap: 10px;
}

.hc-page-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #666;
  border: 2px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.hc-page-number:hover,
.hc-page-number.active {
  background: var(--orange-accent);
  color: #fff;
  border-color: var(--orange-accent);
}

/* Loading State */
.hc-products-loading {
  text-align: center;
  padding: 50px;
  color: #666;
}

.hc-loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--orange-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* trang sản phẩm end */

/* trang sản phẩm start */

/* Sidebar Menu Styles */
.san-pham .hc-sidebar {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}

.san-pham .hc-sidebar-title {
  font-size: clamp(0.95rem, 0.5457rem + 0.6522vw, 1.1rem);
  font-weight: 600;
  color: var(--white-color);
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(249, 204, 12, 0.9) 0%,
    rgba(22, 118, 230, 0.85) 50%,
    rgba(60, 195, 128, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.san-pham .hc-category-icon {
  width: 23px;
  height: 23px;
  object-fit: contain;
  margin-right: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hc-category-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-category-item {
  margin-bottom: 10px;
}

.hc-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hc-category-link i {
  transition: transform 0.3s ease;
}

.hc-category-link.active i {
  transform: rotate(180deg);
}

.hc-category-link:hover,
.hc-category-link.active {
  background: var(--orange-accent);
  color: #fff;
  transform: translateX(5px);
}
.hc-category-link:hover img,
.hc-category-link.active img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%)
    hue-rotate(288deg) brightness(100%) contrast(100%);
}

.hc-subcategory {
  display: none;
  list-style: none;
  padding: 0 0 0 20px;
  margin: 10px 0;
}

.hc-subcategory-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #666;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hc-subcategory-link:hover,
.hc-subcategory-link.active {
  color: var(--orange-accent);
  background: #f8f9fa;
  transform: translateX(5px);
}

.hc-subcategory-level3 {
  display: none;
  list-style: none;
  padding: 0 0 0 20px;
  margin: 5px 0;
}

.hc-subcategory-link3 {
  display: block;
  padding: 8px 15px;
  color: #777;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.hc-subcategory-link3:hover,
.hc-subcategory-link3.active {
  color: var(--orange-accent);
  background: #f8f9fa;
  transform: translateX(5px);
}

/* Loading Spinner */
.hc-products-loading {
  text-align: center;
  padding: 50px;
}

.hc-loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--orange-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Pagination Styles */
.hc-pagination {
  margin-top: 40px;
}

.pagination {
  gap: 5px;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50% !important;
  border: 2px solid #ddd;
  color: #666;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link:hover,
.page-item.active .page-link {
  background: var(--orange-accent);
  border-color: var(--orange-accent);
  color: #fff;
}

.page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

/* trang sản phẩm end */

/* trang sản phẩm chi tiết start */
/* =============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================= */

/* Product Detail Hero */
.san-pham-detail .hc-product-detail-hero {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--cream-bg) 0%, #fff 100%);
}

/* Product Detail Main */
.san-pham-detail .hc-product-detail-main {
  padding: 80px 0;
  background: #fff;
}

/* Product Images */
.san-pham-detail .hc-product-images {
  position: relative;
}

.san-pham-detail .hc-product-main-swiper {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.san-pham-detail .hc-product-main-img {
  overflow: hidden;
  background: var(--white-color);
}

.san-pham-detail .hc-product-main-img img,
.san-pham-detail .hc-product-main-img a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.san-pham-detail .hc-product-main-img:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.san-pham-detail .hc-product-thumb-swiper {
  height: 120px;
}

.san-pham-detail .hc-product-thumb-swiper .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}

.san-pham-detail .hc-product-thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 3px solid var(--orange-accent);
}

.san-pham-detail .hc-product-thumb-img {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.san-pham-detail .hc-product-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.san-pham-detail .hc-product-info {
  padding-left: 40px;
}

.san-pham-detail .hc-product-title {
  font-size: 36px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.san-pham-detail .hc-product-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.san-pham-detail .hc-stars {
  display: flex;
  gap: 5px;
}

.san-pham-detail .hc-stars i {
  color: #ffd700;
  font-size: 18px;
}

.san-pham-detail .hc-rating-text {
  color: #666;
  font-size: 14px;
}

.san-pham-detail .hc-product-price {
  margin-bottom: 25px;
}

.san-pham-detail .hc-price-current {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange-accent);
  margin-right: 15px;
}

.san-pham-detail .hc-price-old {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
  margin-right: 15px;
}

.san-pham-detail .hc-price-discount {
  background: #ff4757;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.san-pham-detail .hc-product-description {
  margin-bottom: 30px;
}

.san-pham-detail .hc-product-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Product Options */
.san-pham-detail .hc-product-options {
  margin-bottom: 30px;
}

.san-pham-detail .hc-option-group {
}

.san-pham-detail .hc-option-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 16px;
}

.san-pham-detail .hc-size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.san-pham-detail .hc-size-btn {
  padding: 12px 20px;
  border: 2px solid #ddd;
  background: #fff;
  color: #666;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.san-pham-detail .hc-size-btn:hover,
.san-pham-detail .hc-size-btn.active {
  border-color: var(--orange-accent);
  background: var(--orange-accent);
  color: #fff;
}

.san-pham-detail .hc-quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid #ddd;
  border-radius: 25px;
  overflow: hidden;
  width: fit-content;
}

.san-pham-detail .hc-qty-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: #f8f9fa;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.san-pham-detail .hc-qty-btn:hover {
  background: var(--orange-accent);
  color: #fff;
}

.san-pham-detail .hc-qty-input {
  width: 80px;
  height: 45px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

/* Product Actions */
.san-pham-detail .hc-product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.san-pham-detail .hc-btn-add-cart {
  flex: 1;
  padding: 15px 25px;
  background: var(--orange-accent);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
}

.san-pham-detail .hc-btn-add-cart:hover {
  background: #ff8c00;
  transform: translateY(-2px);
}

.san-pham-detail .hc-btn-buy-now {
  flex: 1;
  padding: 15px 25px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.san-pham-detail .hc-btn-buy-now:hover {
  background: #218838;
  transform: translateY(-2px);
}

.san-pham-detail .hc-btn-wishlist {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.san-pham-detail .hc-btn-wishlist:hover {
  border-color: #ff4757;
  color: #ff4757;
  background: #fff5f5;
}

/* Product Features */
.san-pham-detail .hc-product-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.san-pham-detail .hc-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.san-pham-detail .hc-feature-item:last-child {
  border-bottom: none;
}

.san-pham-detail .hc-feature-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.san-pham-detail .hc-feature-item span {
  color: #666;
  font-weight: 500;
}

/* Product Details Tabs */
.san-pham-detail .hc-product-details {
  padding: 80px 0;
  background: #f8f9fa;
}

.san-pham-detail .hc-detail-tabs .nav-tabs {
  border-bottom: 3px solid var(--orange-accent);
  margin-bottom: 40px;
}

.san-pham-detail .hc-detail-tabs .nav-link {
  border: none;
  border-radius: 0;
  color: #666;
  font-weight: 600;
  padding: 15px 25px;
  background: transparent;
  transition: all 0.3s ease;
}

.san-pham-detail .hc-detail-tabs .nav-link:hover {
  color: var(--orange-accent);
  border-color: transparent;
}

.san-pham-detail .hc-detail-tabs .nav-link.active {
  color: var(--orange-accent);
  background: #fff;
  border-color: transparent;
}

.san-pham-detail .hc-tab-content {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.san-pham-detail .hc-tab-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.san-pham-detail .hc-tab-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.san-pham-detail .hc-tab-content ul {
  padding-left: 20px;
}

.san-pham-detail .hc-tab-content li {
  margin-bottom: 10px;
  color: #666;
  line-height: 1.6;
}

.hc-tab-content table {
  margin-top: 20px;
}

.hc-tab-content table td {
  padding: 12px 15px;
  border-color: #f0f0f0;
}

/* Review Summary */
.hc-review-summary {
  margin-bottom: 30px;
}

.hc-rating-overview {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
}

.hc-rating-score {
  font-size: 48px;
  font-weight: 800;
  color: var(--orange-accent);
  margin-bottom: 10px;
}

.hc-rating-overview .hc-rating-stars {
  margin-bottom: 10px;
}

.hc-rating-overview .hc-rating-stars i {
  font-size: 24px;
  margin: 0 2px;
}

.hc-rating-count {
  color: #666;
  font-size: 16px;
}

/* Similar Products */
.hc-similar-products {
  padding: 80px 0;
  background: #fff;
}

.hc-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange-accent);
  text-align: center;
  margin-bottom: 50px;
}

.hc-similar-swiper {
  padding: 20px 0 60px;
}

.hc-similar-swiper .swiper-pagination {
  bottom: 20px;
}

.hc-similar-swiper .swiper-button-next,
.hc-similar-swiper .swiper-button-prev {
  color: var(--orange-accent);
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hc-similar-swiper .swiper-button-next::after,
.hc-similar-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 600;
}

/* Customer Reviews */
.hc-customer-reviews {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, var(--cream-bg) 100%);
}

.hc-reviews-swiper {
  padding: 20px 0 60px;
}

.hc-review-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.hc-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hc-review-content .hc-review-stars {
  margin-bottom: 20px;
}

.hc-review-content .hc-review-stars i {
  color: #ffd700;
  font-size: 16px;
  margin-right: 2px;
}

.hc-review-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
  font-style: italic;
}

.hc-reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.hc-reviewer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.hc-reviewer-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.hc-reviewer-info span {
  font-size: 14px;
  color: #999;
}
/* Enhanced Rating System Styles */
.hc-product-rating {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-stars {
  display: inline-flex;
  gap: 2px;
  cursor: pointer;
}

.rating-stars i {
  font-size: 1.2rem;
  color: #ddd;
  transition: all 0.3s ease;
}

.rating-stars i.active {
  color: #ffc107;
}

.rating-stars i:hover {
  transform: scale(1.1);
  color: #ffc107;
}

.rating-tooltip {
  position: absolute;
  top: -35px;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.hc-product-rating:hover .rating-tooltip {
  opacity: 1;
  visibility: visible;
}

.rating-stars.rated {
  pointer-events: none;
  opacity: 0.7;
}

.rating-stars.submitting {
  pointer-events: none;
  opacity: 0.5;
}

.rating-text {
  color: #666;
  font-size: 0.9rem;
}
.san-pham-detail .hc-similar-products .hc-product-info {
  padding-left: 0;
}
/* trang sản phẩm chi tiết end */

/* Modern Similar Products Navigation & Pagination */
.hc-similar-products {
  position: relative;
  padding: 60px 0;
}

/* Custom Navigation Buttons */
.hc-similar-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 50%;
  box-shadow: var(--shadow-medium);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mobile-primary);
  border: 2px solid transparent;
}

.hc-similar-nav::after {
  display: none;
}

.hc-similar-nav i {
  font-size: 20px;
  transition: var(--transition);
}

.hc-similar-nav.hc-similar-prev {
  left: -25px;
}

.hc-similar-nav.hc-similar-next {
  right: -25px;
}

.hc-similar-nav:hover {
  background: var(--mobile-primary);
  color: var(--white-color);
  transform: translateY(-50%) scale(1.1);
  border-color: var(--white-color);
}

.hc-similar-nav:hover i {
  transform: scale(1.2);
}

/* Custom Pagination */
.hc-similar-pagination {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hc-similar-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 3px;
  background: var(--light-pink);
  opacity: 0.5;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hc-similar-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--mobile-primary),
    var(--accent-color)
  );
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.hc-similar-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 50px;
}

.hc-similar-pagination .swiper-pagination-bullet-active::after {
  transform: translateX(0);
}

.hc-similar-pagination .swiper-pagination-bullet:hover {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hc-similar-nav {
    width: 40px;
    height: 40px;
  }

  .hc-similar-nav.hc-similar-prev {
    left: 10px;
  }

  .hc-similar-nav.hc-similar-next {
    right: 10px;
  }

  .hc-similar-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 4px;
  }

  .hc-similar-pagination .swiper-pagination-bullet-active {
    width: 40px;
  }
}

/* Modern Product Detail Tabs */
.san-pham-detail .hc-detail-tabs {
  margin: 60px 0;
  position: relative;
}

.san-pham-detail .hc-detail-tabs .nav-tabs {
  border: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
}

.san-pham-detail .hc-detail-tabs .nav-tabs::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(249, 204, 12, 0.3) 25%,
    rgba(22, 118, 230, 0.3) 50%,
    rgba(60, 195, 128, 0.3) 75%,
    transparent 100%
  );
}

.san-pham-detail .hc-detail-tabs .nav-link {
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  transition: all 0.3s ease;
  background: transparent;
  border-radius: 0;
}

.san-pham-detail .hc-detail-tabs .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    270deg,
    #f9cc0c 0%,
    #1676e6 48.63%,
    #3cc380 98.08%
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 3px 3px 0 0;
}

.san-pham-detail .hc-detail-tabs .nav-link:hover {
  background: linear-gradient(
    270deg,
    #f9cc0c 0%,
    #1676e6 48.63%,
    #3cc380 98.08%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.san-pham-detail .hc-detail-tabs .nav-link.active {
  background: linear-gradient(
    270deg,
    #f9cc0c 0%,
    #1676e6 48.63%,
    #3cc380 98.08%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
}

.san-pham-detail .hc-detail-tabs .nav-link.active::before {
  transform: scaleX(1);
}

/* Tab Content Animation */
.san-pham-detail .tab-pane {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.san-pham-detail .tab-pane.show.active {
  opacity: 1;
  transform: translateY(0);
}

/* Call Modal Styles */
.hc-call-modal .modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: var(--shadow-luxury);
  overflow: hidden;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.hc-call-modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.hc-call-modal .modal-header {
  background: linear-gradient(135deg, var(--primary-blue), #2c5a94);
  border: none;
  padding: 20px;
  position: relative;
}

.hc-call-modal .modal-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hc-call-modal .modal-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-call-modal .modal-icon i {
  color: #fff;
  font-size: 20px;
  animation: shake 1.5s ease-in-out infinite;
}

.hc-call-modal .modal-title {
  color: #fff;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.hc-call-modal .btn-close {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
}

.hc-call-modal .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.hc-call-modal .modal-body {
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.call-animation {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.call-animation i {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.call-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  animation: wave 2s infinite;
  opacity: 0;
}

.call-wave:nth-child(2) {
  animation-delay: 0.5s;
}

.call-wave:nth-child(3) {
  animation-delay: 1s;
}

.call-content {
  margin-top: 20px;
}

.call-description {
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 20px;
}

.call-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(57, 122, 201, 0.1);
  padding: 15px 25px;
  border-radius: 50px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.call-number:hover {
  background: rgba(57, 122, 201, 0.2);
  transform: translateY(-2px);
}

.call-number i {
  color: var(--primary-blue);
  font-size: 24px;
}

.call-number span {
  color: var(--primary-blue);
  font-size: 24px;
  font-weight: 600;
}

.hc-call-modal .modal-footer {
  border: none;
  padding: 20px;
  justify-content: center;
  gap: 15px;
}

.hc-call-modal .btn {
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.hc-call-modal .btn-secondary {
  background: #e9ecef;
  border: none;
  color: #495057;
}

.hc-call-modal .btn-secondary:hover {
  background: #dee2e6;
  transform: translateY(-2px);
}

.hc-call-modal .btn-primary {
  background: var(--primary-blue);
  border: none;
}

.hc-call-modal .btn-primary:hover {
  background: #2c5a94;
  transform: translateY(-2px);
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

@keyframes wave {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.modal-backdrop {
  width: 100%;
  height: 100%;
  z-index: 1000;
}

/* Modern Content Styles */
.hydrosite-content {
  font-family: var(--font-primary);
  line-height: 1.8;
  color: var(--text-dark);
}

/* Headings */
.hydrosite-content h1,
.hydrosite-content h2,
.hydrosite-content h3,
.hydrosite-content h4,
.hydrosite-content h5,
.hydrosite-content h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hydrosite-content h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.hydrosite-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--happy-color-gradient);
  border-radius: 2px;
}

.hydrosite-content h3 {
  font-size: 2rem;
}

.hydrosite-content h4 {
  font-size: 1.75rem;
}

/* Paragraphs */
.hydrosite-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Lists */
.hydrosite-content ul,
.hydrosite-content ol {
  margin: 0;
  padding-left: 1.2rem;
  list-style: none;
  padding: 0;
}

.hydrosite-content ul li,
.hydrosite-content ol li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.hydrosite-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background: var(--happy-color-gradient);
  border-radius: 50%;
}

.hydrosite-content ol {
  counter-reset: item;
  list-style: none;
}

.hydrosite-content ol li {
  counter-increment: item;
}

.hydrosite-content ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Links */
.hydrosite-content a {
  color: var(--primary-blue);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.hydrosite-content a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--happy-color-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.hydrosite-content a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Blockquotes */
.hydrosite-content blockquote {
  margin: 2rem 0;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(249, 204, 12, 0.1),
    rgba(22, 118, 230, 0.1)
  );
  border-radius: 15px;
  position: relative;
}

.hydrosite-content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
}

.hydrosite-content blockquote p {
  margin: 0;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Tables */
.hydrosite-content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.hydrosite-content th {
  background: var(--happy-color-gradient);
  color: white;
  font-weight: 600;
  text-align: left;
  padding: 1rem;
}

.hydrosite-content td {
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
  transition: all 0.3s ease;
}

.hydrosite-content tr:last-child td {
  border-bottom: none;
}

.hydrosite-content tr:hover td {
  background: rgba(249, 204, 12, 0.05);
}

/* Strong & Bold */
.hydrosite-content strong,
.hydrosite-content b {
  font-weight: 700;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Code Blocks */
.hydrosite-content pre,
.hydrosite-content code {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.2rem 0.5rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
}

.hydrosite-content pre {
  padding: 1rem;
  margin: 1.5rem 0;
  overflow-x: auto;
}

/* Images */
.hydrosite-content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 1.5rem 0;
  transition: transform 0.3s ease;
}

.hydrosite-content img:hover {
  transform: scale(1.02);
}

/* Horizontal Rule */
.hydrosite-content hr {
  margin: 2rem 0;
  border: none;
  height: 2px;
  background: var(--happy-color-gradient);
  border-radius: 1px;
}

/* Definition Lists */
.hydrosite-content dl {
  margin: 1.5rem 0;
}

.hydrosite-content dt {
  font-weight: 700;
  margin-top: 1rem;
  background: var(--happy-color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hydrosite-content dd {
  margin-left: 2rem;
  margin-top: 0.5rem;
}

/* Cart Offcanvas Styles */
.hc-cart-offcanvas {
  max-width: 400px;
  width: 100%;
  background: #fff;
}

.hc-cart-offcanvas .offcanvas-header {
  background: var(--primary-blue);
  padding: 20px;
  border: none;
}

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon i {
  color: #fff;
  font-size: 20px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #fff;
  color: var(--primary-blue);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.hc-cart-offcanvas .offcanvas-title {
  color: #fff;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.hc-cart-offcanvas .btn-close {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease;
}

.hc-cart-offcanvas .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.hc-cart-offcanvas .offcanvas-body {
  padding: 0;
}

.cart-items {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s ease;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-content {
  flex: 1;
}

.cart-item-title {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.cart-item-price {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  overflow: hidden;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  color: var(--primary-blue);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: rgba(57, 122, 201, 0.1);
}

.qty-input {
  width: 40px;
  border: none;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.remove-item {
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-item:hover {
  background: rgba(255, 0, 0, 0.2);
  transform: scale(1.1);
}

.cart-summary {
  background: #f8f9fa;
  padding: 20px;
  position: sticky;
  bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.total-amount {
  color: var(--primary-blue);
}

.cart-actions {
  display: flex;
  gap: 10px;
}

.btn-clear-cart,
.btn-checkout,
.btn-shopping {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-clear-cart {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}

.btn-clear-cart:hover {
  background: rgba(255, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-checkout {
  background: var(--primary-blue);
  color: #fff;
}

.btn-checkout:hover {
  background: #2c5a94;
  transform: translateY(-2px);
}

.cart-empty {
  padding: 40px 20px;
  text-align: center;
}

.cart-empty-icon {
  width: 80px;
  height: 80px;
  background: rgba(57, 122, 201, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cart-empty-icon i {
  font-size: 40px;
  color: var(--primary-blue);
}

.cart-empty p {
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-shopping {
  background: var(--primary-blue);
  color: #fff;
  display: inline-flex;
}

.btn-shopping:hover {
  background: #2c5a94;
  transform: translateY(-2px);
  color: #fff;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Add to Cart Effects */
.hc-btn-add-cart {
  position: relative;
  overflow: hidden;
}

.hc-btn-add-cart.loading {
  background: linear-gradient(45deg, var(--primary-blue), #2196f3);
  pointer-events: none;
}

.hc-btn-add-cart.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Quantity Button Effects */
.qty-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Cart Count Animation */
.hc-cart-count:not(.show),
.hc-mobile-cart-count:not(.show) {
  display: none;
}

.hc-cart-count.show,
.hc-mobile-cart-count.show {
  animation: popIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* New Cart Item Animation */
.cart-item.new-item {
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Cart Item Actions */
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  background: #f8f9fa;
  border: none;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.qty-btn:hover {
  background: #e9ecef;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 0.25rem;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input {
  -moz-appearance: textfield;
}

.remove-item {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}

.remove-item:hover {
  color: #c82333;
}

/* Cart Item Animations */
.cart-item {
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Cart Empty State */
.cart-empty {
  text-align: center;
  padding: 2rem;
}

.cart-empty i {
  font-size: 3rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.cart-empty p {
  color: #6c757d;
  margin-bottom: 1rem;
}

/* Cart Summary */
.cart-summary {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 1rem;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: bold;
}

.cart-actions {
  display: flex;
  gap: 1rem;
}

.btn-clear-cart,
.btn-checkout,
.btn-shopping {
  flex: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-clear-cart {
  background: #dc3545;
  color: #fff;
}

.btn-clear-cart:hover {
  background: #c82333;
}

.btn-checkout {
  background: #28a745;
  color: #fff;
  text-decoration: none;
}

.btn-checkout:hover {
  background: #218838;
}

/* SweetAlert2 Custom Styles */
.swal2-popup.swal2-toast {
  padding: 0.5rem 1rem;
}

.swal2-popup.swal2-toast .swal2-title {
  margin: 0;
  font-size: 1rem;
}

.swal2-popup.swal2-toast .swal2-html-container {
  margin: 0;
  font-size: 0.875rem;
}

.swal2-popup.swal2-toast .swal2-icon {
  margin: 0 0.5rem 0 0;
}

/* Cart Badge */
.cart-count,
.hc-mobile-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc3545;
  color: #fff;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
/* Cart Item Actions */
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  background: #f8f9fa;
  border: none;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.qty-btn:hover {
  background: #e9ecef;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 0.25rem;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input {
  -moz-appearance: textfield;
}

.remove-item {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}

.remove-item:hover {
  color: #c82333;
}

.cart-summary {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: bold;
}

.cart-actions {
  display: flex;
  gap: 1rem;
}

.btn-clear-cart,
.btn-checkout {
  flex: 1;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-clear-cart {
  background-color: #dc3545;
  color: white;
}

.btn-clear-cart:hover {
  background-color: #c82333;
}

.btn-checkout {
  background-color: #28a745;
  color: white;
  text-decoration: none;
}

.btn-checkout:hover {
  background-color: #218838;
  color: white;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-content {
  flex: 1;
}

.cart-item-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.cart-item-price {
  color: #dc3545;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 2rem;
}

.cart-empty i {
  font-size: 3rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.cart-empty p {
  margin: 0;
  color: #6c757d;
}

/* Cart Count Badge */
.cart-count,
.hc-mobile-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #dc3545;
  color: white;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* footer bổ sung start */

/* CSS cho snowflakes trong header */
.hc-snowflakes-header {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hc-snowflake-header {
  position: absolute;
  opacity: 0;
  transform-origin: center center;
  transition: opacity 0.3s ease;
}

.hc-snowflake-h1 {
  width: 20px;
  top: 10%;
  left: 10%;
}
.hc-snowflake-h2 {
  width: 25px;
  top: 20%;
  left: 30%;
}
.hc-snowflake-h3 {
  width: 15px;
  top: 15%;
  left: 50%;
}
.hc-snowflake-h4 {
  width: 30px;
  top: 25%;
  left: 70%;
}
.hc-snowflake-h5 {
  width: 18px;
  top: 35%;
  left: 85%;
}
.hc-snowflake-h6 {
  width: 22px;
  top: 45%;
  left: 15%;
}
.hc-snowflake-h7 {
  width: 28px;
  top: 55%;
  left: 60%;
}
.hc-snowflake-h8 {
  width: 16px;
  top: 65%;
  left: 40%;
}

/* Newsletter Enhanced Styling */
.hc-newsletter-input-group {
  width: 100%;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.hc-newsletter-input-wrapper {
  flex: 1;
  position: relative;
}

.hc-newsletter-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hc-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hc-newsletter-input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hc-newsletter-input.error {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
}

.hc-input-error-message {
  position: absolute;
  top: 100%;
  left: 20px;
  color: #ff4757;
  font-size: 14px;
  margin-top: 5px;
  opacity: 0;
  transition: all 0.3s ease;
}

.hc-input-error-message.show {
  opacity: 1;
}

.hc-newsletter-btn {
  background: linear-gradient(135deg, #1676e6 0%, #3cc380 100%);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: 160px;
}

.hc-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(22, 118, 230, 0.4);
}

.hc-newsletter-btn:active {
  transform: translateY(0);
}

.hc-newsletter-btn.loading {
  pointer-events: none;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hc-newsletter-btn.loading .btn-text {
  opacity: 0;
}

.hc-newsletter-btn.loading .btn-loader {
  display: block !important;
}

/* Newsletter Modal Styling */
.newsletter-modal-inner {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  z-index: 2000;
}

/* Fix modal z-index issues */
#newsletterSuccessModal,
#newsletterErrorModal {
  z-index: 2000;
}

#newsletterSuccessModal .modal-dialog,
#newsletterErrorModal .modal-dialog {
  z-index: 2000;
}

#newsletterErrorModal {
  z-index: 2000 !important;
}
/* Modal animation enhancements */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}

/* Newsletter specific modal styling */
.newsletter-modal-content {
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Backdrop blur effect */
.modal-backdrop.show {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.6);
}

.newsletter-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
  z-index: 10;
}

.newsletter-modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #333;
  transform: rotate(90deg);
}

.newsletter-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

/* Success Icon */
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4bb71b 0%, #5cbf2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  animation: successBounce 0.6s ease-in-out;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(75, 183, 27, 0.3);
}

/* Error Icon */
.error-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px;
  animation: shake 0.5s ease-in-out;
}

.newsletter-modal-title {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.newsletter-modal-title.error-title {
  color: #ff4757;
}

.newsletter-modal-text {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.newsletter-modal-btn {
  background: linear-gradient(135deg, #1676e6 0%, #3cc380 100%);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.newsletter-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 118, 230, 0.3);
}

.newsletter-modal-btn.error-btn {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
}

.newsletter-modal-btn.error-btn:hover {
  box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

/* Animations */
@keyframes successBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

/* footer bổ sung end */

/* trang đại lý start */
.hc-agency-register {
  padding: 80px 0;
  background: linear-gradient(
    to bottom,
    var(--white-color),
    var(--cream-bg),
    var(--white-color)
  );
  position: relative;
  overflow: hidden;
}

.hc-agency-register::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(57, 122, 201, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}

.hc-agency-register-content-image {
  position: relative;
  z-index: 2;
}

.hc-agency-register-content-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.hc-agency-register-content-image:hover img {
  transform: translateY(-5px);
}

.hc-agency-register-content-form {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hc-agency-register-content-form .hc-about-heading {
  margin-bottom: 30px;
  text-align: left;
}

/* Agency Form Styling */
#agencyRegisterForm .form-group {
  margin-bottom: 25px;
  position: relative;
}

#agencyRegisterForm .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

#agencyRegisterForm .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

#agencyRegisterForm .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(57, 122, 201, 0.1);
  outline: none;
}

#agencyRegisterForm .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

#agencyRegisterForm .form-control.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

#agencyRegisterForm textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

#agencyRegisterForm .invalid-feedback {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #dc3545;
}

#agencyRegisterForm .valid-feedback {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #28a745;
}

/* Submit Button */
#agencyRegisterForm button[type="submit"] {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #4a90e2 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#agencyRegisterForm button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(57, 122, 201, 0.3);
}

#agencyRegisterForm button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

#agencyRegisterForm button[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

#agencyRegisterForm button[type="submit"]:hover::before {
  left: 100%;
}

/* Modal Styles */
.hc-agency-modal-content {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hc-agency-modal-inner {
  padding: 50px 40px;
  text-align: center;
  position: relative;
}

.hc-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.hc-modal-close:hover {
  color: #333;
}

.hc-modal-icon {
  margin-bottom: 25px;
}

.hc-success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: #fff;
  animation: successPulse 0.6s ease-out;
}

.hc-error-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: #fff;
  animation: errorShake 0.6s ease-out;
}

.hc-modal-title {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hc-modal-text {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Animations */
@keyframes successPulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes errorShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hc-agency-register {
    padding: 60px 0;
  }

  .hc-agency-register-content-form {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .hc-agency-modal-inner {
    padding: 40px 30px;
  }

  #agencyRegisterForm .form-control {
    padding: 12px 15px;
  }

  #agencyRegisterForm button[type="submit"] {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

/* Loading Animation */

.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* =============================================
   FEATURED NEWS SIDEBAR STYLES
   ============================================= */

/* Featured News Container */
.hc-featured-news {
  background: transparent;
  padding: 0;
}

/* Featured News Item */
.hc-featured-news-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hc-featured-news-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.05) 0%,
    rgba(255, 107, 0, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.hc-featured-news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.2);
}

.hc-featured-news-item:hover::before {
  opacity: 1;
}

.hc-featured-news-item:last-child {
  margin-bottom: 0;
}

/* News Thumbnail */
.hc-featured-news-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hc-featured-news-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 107, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.hc-featured-news-item:hover .hc-featured-news-thumb::after {
  opacity: 1;
}

.hc-featured-news-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.hc-featured-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.hc-featured-news-item:hover .hc-featured-news-thumb img {
  transform: scale(1.1);
}

/* News Content */
.hc-featured-news-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}

/* News Title */
.hc-featured-news-title {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.hc-featured-news-title a {
  color: #2c3e50;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;

  /* Text truncation for 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-featured-news-item:hover .hc-featured-news-title a {
  color: var(--orange-accent);
  transform: translateX(2px);
}

/* News Date */
.hc-featured-news-date {
  font-size: 12px;
  color: #7f8c8d;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.hc-featured-news-date i {
  font-size: 11px;
  color: var(--orange-accent);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hc-featured-news-item:hover .hc-featured-news-date {
  color: #34495e;
}

.hc-featured-news-item:hover .hc-featured-news-date i {
  opacity: 1;
}

/* Sidebar Title Enhancement */
.hc-sidebar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.hc-sidebar-title i {
  color: var(--orange-accent);
  font-size: 18px;
  background: linear-gradient(45deg, var(--orange-accent), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .hc-featured-news-item {
    padding: 12px;
    gap: 12px;
  }

  .hc-featured-news-thumb {
    width: 60px;
    height: 60px;
  }

  .hc-featured-news-title {
    font-size: 13px;
  }

  .hc-featured-news-date {
    font-size: 11px;
  }
}

@media (max-width: 991px) {
  .hc-featured-news-item {
    padding: 15px;
    gap: 15px;
    margin-bottom: 20px;
  }

  .hc-featured-news-thumb {
    width: 80px;
    height: 80px;
  }

  .hc-featured-news-title {
    font-size: 15px;
  }

  .hc-featured-news-date {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .hc-featured-news-item {
    padding: 12px;
    gap: 12px;
  }

  .hc-featured-news-thumb {
    width: 70px;
    height: 70px;
  }

  .hc-featured-news-title {
    font-size: 14px;
  }

  .hc-featured-news-date {
    font-size: 12px;
  }
}

/* Animation Enhancement */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hc-featured-news-item {
  animation: fadeInUp 0.6s ease forwards;
}

.hc-featured-news-item:nth-child(1) {
  animation-delay: 0.1s;
}
.hc-featured-news-item:nth-child(2) {
  animation-delay: 0.2s;
}
.hc-featured-news-item:nth-child(3) {
  animation-delay: 0.3s;
}
.hc-featured-news-item:nth-child(4) {
  animation-delay: 0.4s;
}
.hc-featured-news-item:nth-child(5) {
  animation-delay: 0.5s;
}
/* trang đại lý end */

/* ===============================================
   NEWS DETAIL PAGE STYLES - MODERN & ELEGANT
   =============================================== */

/* News Hero Section */
.hc-news-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hc-news-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hc-news-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hc-news-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(255, 107, 0, 0.3) 100%
  );
  z-index: 2;
}

.hc-news-hero .container {
  position: relative;
  z-index: 3;
}

/* News Meta Section */
.hc-news-meta {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hc-news-category {
  margin-bottom: 15px;
}

.hc-news-category a {
  background: var(--orange-accent);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.hc-news-category a:hover {
  background: #e67300;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.hc-news-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hc-news-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.hc-news-date,
.hc-news-views,
.hc-news-author {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hc-news-date i,
.hc-news-views i,
.hc-news-author i {
  color: var(--orange-accent);
  font-size: 12px;
}

.hc-news-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  max-width: 600px;
}

/* Main Content Area */

/* Article Content */
.hc-article {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

/* Social Share */
.hc-social-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  border-left: 4px solid var(--orange-accent);
}

.hc-share-label {
  font-weight: 600;
  color: #495057;
  font-size: 14px;
}

.hc-share-buttons {
  display: flex;
  gap: 10px;
}

.hc-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hc-share-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: transform 0.3s ease;
  z-index: 1;
}

.hc-share-btn:hover::before {
  transform: scale(1.1);
}

.hc-share-btn i {
  position: relative;
  z-index: 2;
  font-size: 16px;
}

.hc-share-facebook {
  background: #3b5998;
}

.hc-share-twitter {
  background: #1da1f2;
}

.hc-share-linkedin {
  background: #0077b5;
}

.hc-share-copy {
  background: #28a745;
}

.hc-share-copy.copied {
  background: #20c997;
  transform: scale(1.1);
}

.hc-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Article Body */
.hc-article-body {
  font-size: 16px;
  line-height: 1.8;
  color: #343a40;
  margin-bottom: 40px;
}

.hc-article-body h1,
.hc-article-body h2,
.hc-article-body h3,
.hc-article-body h4,
.hc-article-body h5,
.hc-article-body h6 {
  color: #2c3e50;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hc-article-body h2 {
  font-size: 1.75rem;
  padding-bottom: 10px;
}

.hc-article-body p {
  margin-bottom: 20px;
  text-align: justify;
}

.hc-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hc-article-body blockquote {
  background: #f8f9fa;
  border-left: 4px solid var(--orange-accent);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  position: relative;
}

.hc-article-body blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--orange-accent);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
  opacity: 0.3;
}

/* Tags Section */
.hc-article-tags {
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  margin-bottom: 30px;
  border: 1px solid #dee2e6;
}

.hc-tags-label {
  font-weight: 600;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

.hc-tags-label i {
  color: var(--orange-accent);
}

.hc-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hc-tag {
  background: white;
  color: #495057;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hc-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange-accent);
  transition: left 0.3s ease;
  z-index: 1;
}

.hc-tag:hover::before {
  left: 0;
}

.hc-tag:hover {
  color: white;
  border-color: var(--orange-accent);
  transform: translateY(-2px);
}

.hc-tag span {
  position: relative;
  z-index: 2;
}

/* Article Navigation */
.hc-article-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
}

.hc-nav-prev,
.hc-nav-next {
  flex: 1;
  max-width: 48%;
}

.hc-nav-label {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 8px;
}

.hc-nav-title {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.hc-nav-title:hover {
  color: var(--orange-accent);
  transform: translateX(5px);
}

.hc-nav-next .hc-nav-title {
  text-align: right;
  justify-content: flex-end;
}

.hc-nav-prev .hc-nav-title:hover {
  transform: translateX(-5px);
}

/* Comments Section */
.hc-comments-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.hc-comments-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hc-comments-title i {
  color: var(--orange-accent);
  font-size: 1.2rem;
}

/* Sidebar Styles */
.hc-news-sidebar {
  position: sticky;
  top: 100px;
}

.hc-sidebar-widget {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hc-sidebar-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.hc-widget-title {
  background: linear-gradient(135deg, var(--orange-accent) 0%, #e67300 100%);
  color: white;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.hc-widget-title i {
  font-size: 18px;
}

/* Author Widget */
.hc-author-info {
  padding: 25px;
  text-align: center;
}

.hc-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 4px solid var(--orange-accent);
  position: relative;
}

.hc-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-author-name {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.hc-author-bio {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
}

/* Related News Widget */
.hc-related-news {
  padding: 0;
}

.hc-related-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid #f1f3f4;
  transition: all 0.3s ease;
}

.hc-related-item:last-child {
  border-bottom: none;
}

.hc-related-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.hc-related-thumb {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.hc-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hc-related-item:hover .hc-related-thumb img {
  transform: scale(1.1);
}

.hc-related-content {
  flex: 1;
  min-width: 0;
}

.hc-related-title {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.hc-related-title a {
  color: #2c3e50;
  text-decoration: none;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;

  /* Text truncation for 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-related-title a:hover {
  color: var(--orange-accent);
}

.hc-related-date {
  font-size: 12px;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hc-related-date i {
  color: var(--orange-accent);
  font-size: 10px;
}

/* Newsletter Widget */
.hc-newsletter-content {
  padding: 25px;
}

.hc-newsletter-content p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hc-form-group {
  position: relative;
}

.hc-form-control {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
}

.hc-form-control:focus {
  outline: none;
  border-color: var(--orange-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.hc-btn-newsletter {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: var(--orange-accent);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-btn-newsletter:hover {
  background: #e67300;
  transform: translateY(-50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hc-news-title {
    font-size: 2rem;
  }

  .hc-article {
    padding: 30px 20px;
  }

  .hc-news-sidebar {
    position: static;
    margin-top: 40px;
  }

  .hc-article-navigation {
    flex-direction: column;
    gap: 20px;
  }

  .hc-nav-prev,
  .hc-nav-next {
    max-width: 100%;
  }

  .hc-nav-next .hc-nav-title {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hc-news-hero {
    min-height: 50vh;
  }

  .hc-news-title {
    font-size: 1.75rem;
  }

  .hc-news-info {
    flex-direction: column;
    gap: 10px;
  }

  .hc-article {
    padding: 20px 15px;
    border-radius: 15px;
  }

  .hc-social-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hc-share-buttons {
    justify-content: center;
    width: 100%;
  }

  .hc-sidebar-widget {
    border-radius: 15px;
  }

  .hc-related-item {
    padding: 15px;
  }

  .hc-related-thumb {
    width: 60px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .hc-news-hero {
    min-height: 40vh;
  }

  .hc-news-title {
    font-size: 1.5rem;
  }

  .hc-article-body {
    font-size: 15px;
  }

  .hc-tags-list {
    gap: 8px;
  }

  .hc-tag {
    font-size: 11px;
    padding: 5px 12px;
  }

  .hc-article-navigation {
    padding: 20px;
  }

  .hc-nav-title {
    font-size: 13px;
  }

  .hc-comments-section {
    padding: 25px 15px;
  }
}

/* Animation Enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hc-article {
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hc-sidebar-widget:nth-child(1) {
  animation: slideInFromRight 0.8s ease 0.8s both;
}

.hc-sidebar-widget:nth-child(2) {
  animation: slideInFromRight 0.8s ease 1s both;
}

.hc-sidebar-widget:nth-child(3) {
  animation: slideInFromRight 0.8s ease 1.2s both;
}

.hc-comments-section {
  animation: fadeInUp 0.8s ease 1.4s both;
}

/* Print Styles */
@media print {
  .hc-news-hero,
  .hc-social-share,
  .hc-article-navigation,
  .hc-news-sidebar,
  .hc-comments-section {
    display: none !important;
  }

  .hc-article {
    box-shadow: none;
    border: 1px solid #ddd;
    padding: 20px;
  }

  .hc-article-body {
    font-size: 12pt;
    line-height: 1.5;
  }
}

/* NEWS DETAIL STYLES END */

/* ===== NEWS DETAIL ARTICLE CONTENT STYLING ===== */

/* Article Body Container */
.hc-article-body {
  font-family: "Nunito", Arial, sans-serif;
  line-height: 1.8;
  color: #333;
  font-size: 16px;
  margin-bottom: 30px;
}

/* Typography - Headings */
.hc-article-body h1,
.hc-article-body h2,
.hc-article-body h3,
.hc-article-body h4,
.hc-article-body h5,
.hc-article-body h6 {
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.hc-article-body h1 {
  font-size: 2.5em;
  border-bottom: 3px solid #3498db;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.hc-article-body h2 {
  font-size: 2.2em;
  color: #2980b9;
  border-left: 4px solid #3498db;
  padding-left: 15px;
  margin-bottom: 20px;
}

.hc-article-body h3 {
  font-size: 1.8em;
  color: #34495e;
  position: relative;
  padding-bottom: 8px;
}

.hc-article-body h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
}

.hc-article-body h4 {
  font-size: 1.5em;
  color: #2c3e50;
  font-weight: 600;
}

.hc-article-body h5 {
  font-size: 1.3em;
  color: #34495e;
  font-weight: 600;
}

.hc-article-body h6 {
  font-size: 1.1em;
  color: #7f8c8d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Paragraphs */
.hc-article-body p {
  margin-bottom: 18px;
  text-align: justify;
  text-indent: 25px;
}

.hc-article-body p:first-child {
  font-size: 1.1em;
  font-weight: 500;
  color: #2c3e50;
  text-indent: 0;
}

/* Links */
.hc-article-body a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.hc-article-body a:hover {
  color: #2980b9;
  border-bottom-color: #3498db;
  transform: translateY(-1px);
}

.hc-article-body a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  transition: width 0.3s ease;
}

.hc-article-body a:hover:before {
  width: 100%;
}

/* Lists */
.hc-article-body ul,
.hc-article-body ol {
  margin: 20px 0;
  padding-left: 30px;
}

.hc-article-body ul li,
.hc-article-body ol li {
  margin-bottom: 12px;
  line-height: 1.7;
  position: relative;
}

/* Unordered Lists */
.hc-article-body ul li {
  list-style: none;
  padding-left: 25px;
}

.hc-article-body ul li:before {
  content: "▶";
  color: #3498db;
  font-size: 0.8em;
  position: absolute;
  left: 0;
  top: 4px;
  transition: transform 0.3s ease;
}

.hc-article-body ul li:hover:before {
  transform: translateX(3px);
  color: #2ecc71;
}

/* Ordered Lists */
.hc-article-body ol {
  counter-reset: custom-counter;
}

.hc-article-body ol li {
  list-style: none;
  counter-increment: custom-counter;
  padding-left: 35px;
}

.hc-article-body ol li:before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* Nested Lists */
.hc-article-body ul ul,
.hc-article-body ol ol,
.hc-article-body ul ol,
.hc-article-body ol ul {
  margin: 10px 0;
  padding-left: 20px;
}

/* Blockquotes */
.hc-article-body blockquote {
  background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
  border-left: 5px solid #3498db;
  margin: 25px 0;
  padding: 20px 25px;
  border-radius: 0 8px 8px 0;
  position: relative;
  font-style: italic;
  box-shadow: 0 2px 10px rgba(52, 152, 219, 0.1);
}

.hc-article-body blockquote:before {
  content: '"';
  font-size: 4em;
  color: #3498db;
  position: absolute;
  top: -10px;
  left: 10px;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.hc-article-body blockquote p {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #2c3e50;
  text-indent: 0;
}

.hc-article-body blockquote cite {
  display: block;
  text-align: right;
  margin-top: 10px;
  font-size: 0.9em;
  color: #7f8c8d;
  font-style: normal;
  font-weight: 600;
}

.hc-article-body blockquote cite:before {
  content: "— ";
}

/* Tables */
.hc-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hc-article-body table thead {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.hc-article-body table th {
  padding: 15px 12px;
  text-align: left;
  font-weight: 600;
  color: white;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hc-article-body table td {
  padding: 12px;
  border-bottom: 1px solid #ecf0f1;
  transition: background-color 0.3s ease;
}

.hc-article-body table tbody tr:hover {
  background-color: #f8f9fa;
}

.hc-article-body table tbody tr:nth-child(even) {
  background-color: #fcfcfc;
}

.hc-article-body table tbody tr:nth-child(even):hover {
  background-color: #f0f8ff;
}

/* Code blocks */
.hc-article-body code {
  background: #f1f2f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #e74c3c;
  border: 1px solid #ddd;
}

.hc-article-body pre {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hc-article-body pre code {
  background: none;
  padding: 0;
  border: none;
  color: inherit;
  font-size: 14px;
}

/* Images */
.hc-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-article-body img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Horizontal Rules */
.hc-article-body hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71, #f39c12);
  margin: 30px 0;
  border-radius: 3px;
}

/* Strong and Em */
.hc-article-body strong {
  font-weight: 700;
  color: #2c3e50;
}

.hc-article-body em {
  font-style: italic;
  color: #34495e;
}

/* Marks/Highlights */
.hc-article-body mark {
  background: linear-gradient(120deg, #f1c40f 0%, #f39c12 100%);
  padding: 2px 4px;
  border-radius: 3px;
  color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hc-article-body {
    font-size: 15px;
  }

  .hc-article-body h1 {
    font-size: 2em;
  }

  .hc-article-body h2 {
    font-size: 1.8em;
    padding-left: 10px;
  }

  .hc-article-body h3 {
    font-size: 1.5em;
  }

  .hc-article-body p {
    text-indent: 15px;
  }

  .hc-article-body ul,
  .hc-article-body ol {
    padding-left: 20px;
  }

  .hc-article-body blockquote {
    padding: 15px 20px;
    margin: 20px 0;
  }

  .hc-article-body table {
    font-size: 14px;
  }

  .hc-article-body table th,
  .hc-article-body table td {
    padding: 8px 10px;
  }
}

@media (max-width: 576px) {
  .hc-article-body {
    font-size: 14px;
  }

  .hc-article-body h2 {
    padding-left: 8px;
  }

  .hc-article-body blockquote {
    padding: 12px 15px;
  }

  .hc-article-body table {
    font-size: 12px;
  }

  .hc-article-body table th,
  .hc-article-body table td {
    padding: 6px 8px;
  }
}

/* ===== NEWS DETAIL HEADER STYLING ===== */

.hc-news-header {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-bottom: 1px solid #e9ecef;
}

.hc-breadcrumb-simple {
  font-size: 14px;
  color: #6c757d;
}

.hc-breadcrumb-simple a:hover {
  color: #3498db !important;
  text-decoration: underline !important;
}

.hc-article-header {
  max-width: none;
}

.hc-article-category .badge {
  font-size: 12px;
  padding: 5px 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hc-article-title {
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hc-article-meta {
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
}

.hc-article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hc-article-meta i {
  color: #3498db;
}

.hc-article-description {
  background: linear-gradient(135deg, #e3f2fd, #f8f9fa) !important;
  border-left: 4px solid #3498db;
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hc-news-header {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .hc-breadcrumb-simple {
    font-size: 12px;
  }

  .hc-article-title {
    font-size: 1.5rem;
  }

  .hc-article-meta {
    font-size: 12px;
  }

  .hc-article-description {
    font-size: 14px;
    padding: 15px !important;
  }
}

/* ===== ENHANCED NEWSLETTER FORM STYLING ===== */

.hc-newsletter-widget {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-newsletter-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.hc-newsletter-widget .hc-widget-title {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hc-newsletter-widget .hc-widget-title i {
  font-size: 18px;
  opacity: 0.9;
}

.hc-newsletter-content {
  padding: 20px;
}

.hc-newsletter-content p {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

/* Form Groups */
.hc-newsletter-form .hc-form-group {
  margin-bottom: 15px;
  position: relative;
}

.hc-newsletter-form .hc-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Nunito", Arial, sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
  box-sizing: border-box;
}

.hc-newsletter-form .hc-form-control:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
  transform: translateY(-1px);
}

.hc-newsletter-form .hc-form-control.error {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

.hc-newsletter-form .hc-form-control.error:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Error Messages */
.hc-error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  padding-left: 5px;
  font-weight: 500;
  display: none;
}

/* Submit Button */
.hc-btn-newsletter {
  width: 100%;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.hc-btn-newsletter:hover {
  background: linear-gradient(135deg, #2980b9, #1e6091);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.hc-btn-newsletter:active {
  transform: translateY(0);
}

.hc-btn-newsletter:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hc-btn-newsletter .btn-text {
  transition: opacity 0.3s ease;
}

.hc-btn-newsletter .fa-paper-plane {
  transition: transform 0.3s ease;
}

.hc-btn-newsletter:hover .fa-paper-plane {
  transform: translateX(3px);
}

.hc-btn-newsletter .loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Success Message */
.hc-newsletter-success {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #d5f4e6, #fefefe);
  border-radius: 8px;
  border: 2px solid #27ae60;
}

.hc-newsletter-success i {
  font-size: 2.5em;
  color: #27ae60;
  margin-bottom: 15px;
  display: block;
}

.hc-newsletter-success p {
  color: #2c3e50;
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
}

/* Responsive Design for Newsletter Form */
@media (max-width: 768px) {
  .hc-newsletter-content {
    padding: 15px;
  }

  .hc-newsletter-form .hc-form-control {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hc-btn-newsletter {
    padding: 10px 15px;
    font-size: 13px;
  }

  .hc-newsletter-widget .hc-widget-title {
    padding: 12px 15px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .hc-newsletter-content {
    padding: 12px;
  }

  .hc-newsletter-content p {
    font-size: 13px;
  }

  .hc-newsletter-success {
    padding: 15px;
  }

  .hc-newsletter-success i {
    font-size: 2em;
    margin-bottom: 10px;
  }
}

/* Recruitment Styles */
.hc-recruitment-main {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.hc-job-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hc-job-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hc-job-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  min-height: 100%;
}

.hc-job-image img,
.hc-job-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.hc-job-item:hover .hc-job-image img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.hc-job-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hc-job-title {
  margin: 0 0 15px;
  font-size: 1rem;
  font-weight: 600;
}

.hc-job-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hc-job-title a:hover {
  color: #0056b3;
}
.hc-job-date,
.hc-job-author,
.hc-job-view {
  color: #7f8c8d;
}
.hc-job-description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.hc-job-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.hc-job-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hc-job-info-item {
  display: flex;
  align-items: center;
  color: #6c757d;
  font-size: 0.9rem;
}

.hc-job-info-item i {
  margin-right: 8px;
  color: #0056b3;
}

.hc-job-apply {
  margin-left: auto;
}

.hc-apply-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #0056b3;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid #0056b3;
}

.hc-apply-btn:hover {
  background: #fff;
  color: #0056b3;
  transform: translateY(-2px);
}

/* Loading Indicator */
#loadingIndicator {
  padding: 40px 0;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  color: #0056b3;
}

/* No Jobs Message */
#noJobsMessage {
  padding: 60px 0;
}

#noJobsMessage i {
  color: #dee2e6;
  margin-bottom: 20px;
}

#noJobsMessage h5 {
  color: #6c757d;
  margin-bottom: 10px;
}

#noJobsMessage p {
  color: #adb5bd;
}

/* Pagination */
.hc-pagination {
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  margin: 30px 0 0;
}

.page-item {
  margin: 0 5px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #6c757d;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-link:hover {
  background: #0056b3;
  color: #fff;
  transform: translateY(-2px);
}

.page-item.active .page-link {
  background: #0056b3;
  color: #fff;
}

.page-item.disabled .page-link {
  background: #f8f9fa;
  color: #adb5bd;
  cursor: not-allowed;
}

/* Recruitment Detail Page Styles */
.hc-recruitment-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #2980b9 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hc-recruitment-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/pattern.png") repeat;
  opacity: 0.1;
}

.hc-recruitment-breadcrumb {
  position: relative;
  z-index: 1;
}

.hc-recruitment-breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.hc-recruitment-breadcrumb .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hc-recruitment-breadcrumb .breadcrumb-item a:hover {
  color: #e3f2fd;
}

.hc-recruitment-breadcrumb .breadcrumb-item.active {
  color: #e3f2fd;
}

.hc-recruitment-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.hc-recruitment-detail {
  padding: 60px 0;
  background: linear-gradient(
    to bottom var(--white-color) 0%,
    #ffed4e 50%,
    #fff59d 100%
  );
}

.hc-recruitment-article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease-out;
}

.hc-recruitment-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.hc-recruitment-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.hc-recruitment-meta {
  display: flex;
  align-items: center;
  color: #6c757d;
  font-size: 0.95rem;
}

.hc-recruitment-meta i {
  color: var(--primary-blue);
  margin-right: 8px;
}

.hc-recruitment-description {
  color: #2c3e50;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e9ecef;
}

.hc-recruitment-content {
  color: #2c3e50;
  line-height: 1.8;
}

/* Content Typography */
.hc-recruitment-content h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 30px 0 20px;
  font-weight: 600;
}

.hc-recruitment-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 25px 0 15px;
  font-weight: 600;
}

.hc-recruitment-content p {
  margin-bottom: 1.5rem;
}

.hc-recruitment-content ul,
.hc-recruitment-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style: none;
}

.hc-recruitment-content li {
  margin-bottom: 0.5rem;
}

.hc-recruitment-content a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hc-recruitment-content a:hover {
  color: #2980b9;
  text-decoration: underline;
}

.hc-recruitment-content blockquote {
  border-left: 4px solid var(--primary-blue);
  padding: 20px;
  background: #f8f9fa;
  margin: 20px 0;
  font-style: italic;
}

.hc-recruitment-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.hc-recruitment-content th,
.hc-recruitment-content td {
  padding: 12px;
  border: 1px solid #dee2e6;
}

.hc-recruitment-content th {
  background: #f8f9fa;
  font-weight: 600;
}

/* Sidebar Styles */
.hc-recruitment-sidebar {
  position: sticky;
  top: 20px;
}

.hc-related-jobs {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease-out 0.2s;
  animation-fill-mode: both;
}

.hc-related-jobs h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-blue);
}

.hc-related-job-item {
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.hc-related-job-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hc-related-job-item h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.hc-related-job-item h4 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hc-related-job-item h4 a:hover {
  color: var(--primary-blue);
}

.hc-related-job-meta {
  color: #6c757d;
  font-size: 0.9rem;
}

.hc-related-job-meta i {
  color: var(--primary-blue);
  margin-right: 5px;
}
/* Recruitment Content Styling */
.hc-recruitment-content {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 40px;
}

.hc-recruitment-content h2 {
  font-size: 28px;
  color: #2c3e50;
  margin: 35px 0 20px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 600;
}

.hc-recruitment-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
}

.hc-recruitment-content h3 {
  font-size: 24px;
  color: #34495e;
  margin: 30px 0 15px;
  font-weight: 500;
}

.hc-recruitment-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.hc-recruitment-content ul,
.hc-recruitment-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.hc-recruitment-content li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.hc-recruitment-content ul li::before {
  content: "•";
  color: var(--primary-blue);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.hc-recruitment-content ol {
  counter-reset: item;
}

.hc-recruitment-content ol li {
  counter-increment: item;
}

.hc-recruitment-content ol li::before {
  content: counter(item) ".";
  color: var(--primary-blue);
  font-weight: 600;
  position: absolute;
  left: 0;
}

.hc-recruitment-content a {
  color: var(--primary-blue);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.hc-recruitment-content a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.hc-recruitment-content a:hover {
  color: var(--primary-color);
}

.hc-recruitment-content a:hover::after {
  transform: scaleX(1);
}

.hc-recruitment-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid var(--primary-blue);
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.hc-recruitment-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.hc-recruitment-content th,
.hc-recruitment-content td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.hc-recruitment-content th {
  background-color: var(--primary-blue);
  color: white;
  font-weight: 500;
}

.hc-recruitment-content tr:hover {
  background-color: #f8f9fa;
}

/* Company Information Styling */
.hc-recruitment-company {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.hc-recruitment-company:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hc-recruitment-company h3 {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
  position: relative;
}

.hc-recruitment-company h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-blue);
}

.hc-company-info {
  text-align: center;
}

.hc-company-info img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hc-company-info img:hover {
  transform: scale(1.05);
}

.hc-company-info h4 {
  color: #2c3e50;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.hc-company-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.hc-company-contact {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

.hc-company-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #2c3e50;
}

.hc-company-contact p:last-child {
  margin-bottom: 0;
}

.hc-company-contact i {
  width: 35px;
  height: 35px;

  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hc-company-contact p:hover i {
  transform: scale(1.1);
  background: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hc-recruitment-sidebar {
    margin-top: 30px;
    position: static;
  }
}

@media (max-width: 768px) {
  .hc-recruitment-detail {
    padding: 40px 0;
  }

  .hc-recruitment-title {
    font-size: 1.4rem;
  }

  .hc-recruitment-article {
    padding: 20px;
  }

  .hc-recruitment-content h2 {
    font-size: 1.5rem;
  }

  .hc-recruitment-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .hc-recruitment-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .hc-recruitment-header {
    padding-bottom: 10px;
  }

  .hc-recruitment-description {
    font-size: 1rem;
  }
  .hc-recruitment-content ul,
  .hc-recruitment-content ol {
    padding-left: 0;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --recruitment-primary: var(--primary-blue);
  --recruitment-text: #2c3e50;
  --recruitment-border: #e9ecef;
  --recruitment-hover: #f8f9fa;
  --recruitment-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --recruitment-radius: 8px;
  --recruitment-transition: all 0.3s ease;
}

/* Recruitment Content Styling */
.hc-recruitment-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--recruitment-text);
  margin-bottom: 40px;
}

.hc-recruitment-content h2 {
  font-size: 28px;
  color: var(--recruitment-text);
  margin: 35px 0 20px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 600;
}

.hc-recruitment-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--recruitment-primary);
  border-radius: 3px;
}

.hc-recruitment-content h3 {
  font-size: 24px;
  color: #34495e;
  margin: 30px 0 15px;
  font-weight: 500;
}

.hc-recruitment-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.hc-recruitment-content ul,
.hc-recruitment-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.hc-recruitment-content li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.hc-recruitment-content ul li::before {
  content: "•";
  color: var(--recruitment-primary);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.hc-recruitment-content ol {
  counter-reset: item;
}

.hc-recruitment-content ol li {
  counter-increment: item;
}

.hc-recruitment-content ol li::before {
  content: counter(item) ".";
  color: var(--recruitment-primary);
  font-weight: 600;
  position: absolute;
  left: 0;
}

.hc-recruitment-content a {
  color: var(--recruitment-primary);
  text-decoration: none;
  position: relative;
  transition: var(--recruitment-transition);
}

.hc-recruitment-content a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--recruitment-primary);
  transform: scaleX(0);
  transition: var(--recruitment-transition);
}

.hc-recruitment-content a:hover {
  color: var(--primary-color);
}

.hc-recruitment-content a:hover::after {
  transform: scaleX(1);
}

.hc-recruitment-content blockquote {
  background: var(--recruitment-hover);
  border-left: 4px solid var(--recruitment-primary);
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 var(--recruitment-radius) var(--recruitment-radius) 0;
  font-style: italic;
}

.hc-recruitment-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  box-shadow: var(--recruitment-shadow);
  border-radius: var(--recruitment-radius);
  overflow: hidden;
}

.hc-recruitment-content th,
.hc-recruitment-content td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--recruitment-border);
}

.hc-recruitment-content th {
  background-color: var(--recruitment-primary);
  color: white;
  font-weight: 600;
}

.hc-recruitment-content tr:hover {
  background-color: var(--recruitment-hover);
}

/* Company Information Styling */
.hc-recruitment-company {
  background: white;
  border-radius: var(--recruitment-radius);
  padding: 25px;
  box-shadow: var(--recruitment-shadow);
  transition: var(--recruitment-transition);
  margin-bottom: 30px;
}

.hc-recruitment-company:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hc-recruitment-company h3 {
  color: var(--recruitment-text);
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--recruitment-border);
  font-weight: 600;
}

.hc-company-info {
  text-align: center;
}

.hc-company-info img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  padding: 10px;
  border: 2px solid var(--recruitment-border);
  transition: var(--recruitment-transition);
}

.hc-company-info:hover img {
  border-color: var(--recruitment-primary);
  transform: scale(1.05);
}

.hc-company-info h4 {
  color: var(--recruitment-text);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.hc-company-info p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hc-company-contact {
  text-align: left;
}

.hc-company-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--recruitment-text);
}

.hc-company-contact i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: var(--recruitment-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--recruitment-primary);
  transition: var(--recruitment-transition);
}

.hc-company-contact p:hover i {
  background: var(--recruitment-primary);
  color: white;
  transform: scale(1.1);
}

/* trang tuyển dụng chi tiét end */

/* trang liên hệ start */
/* ================================================
   CONTACT PAGE STYLES
   ================================================ */

/* Contact Header */
.lien-he .contact-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  z-index: 100;
}

.lien-he .social-links {
  display: flex;
  gap: 15px;
}

.lien-he .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lien-he .social-link:hover {
  background: #1676e6;
  color: white;
  transform: translateY(-2px);
}

.lien-he .logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lien-he .logo-img {
  width: 60px;
  height: auto;
}

.lien-he .logo-text {
  font-weight: 800;
  font-size: 28px;
  color: #2c5aa0;
  margin: 0;
  letter-spacing: 1px;
}

.lien-he .hotline-section {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f0f8ff;
  padding: 12px 20px;
  border-radius: 25px;
  border: 2px solid #1676e6;
}

.lien-he .hotline-icon {
  width: 40px;
  height: 40px;
  background: #1676e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.lien-he .hotline-info {
  display: flex;
  flex-direction: column;
}

.lien-he .hotline-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
}

.lien-he .hotline-number {
  font-size: 16px;
  color: #1676e6;
  font-weight: 700;
}

/* Contact Hero Section */
.lien-he .contact-hero {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff59d 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lien-he .hero-decoration {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 300px;
  z-index: 1;
}

.lien-he .decoration-left {
  left: 0;
}

.lien-he .decoration-right {
  right: 0;
  transform: scaleX(-1);
}

.lien-he .floating-ice-cream {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  animation: floatUpDown 6s ease-in-out infinite;
}

.lien-he .floating-ice-cream.right {
  animation-delay: -3s;
}

.lien-he .wave-background {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 2;
}

.lien-he .wave-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lien-he .hero-title {
  font-size: 42px;
  font-weight: 600;
  color: #384555;
  margin-bottom: 20px;
  letter-spacing: 2px;
  position: relative;
  z-index: 10;
}

.lien-he .hero-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 10;
}

.lien-he .breadcrumb-item {
  font-size: 18px;
  font-weight: 600;
  color: #384555;
  text-transform: uppercase;
}

.lien-he .breadcrumb-item.active {
  color: #1676e6;
}

.lien-he .breadcrumb-arrow {
  color: #384555;
  font-size: 14px;
}

/* Contact Cards */
.lien-he .contact-cards {
  margin-top: -60px;
  position: relative;
  z-index: 20;
}

.lien-he .contact-card {
  background: white;
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  height: 100%;
}

.lien-he .contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.lien-he .contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lien-he .contact-icon img {
  width: 100%;
  height: auto;
}

.lien-he .contact-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #8d8d8d;
  margin-bottom: 15px;
}

.lien-he .contact-card-text {
  font-size: 18px;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0;
}

/* Map and Contact Form Section */

.lien-he .map-contact-section .btn-submit {
  background: linear-gradient(135deg, #1676e6 0%, #3cc380 100%);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: 160px;
}

.lien-he .map-container {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.lien-he .map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lien-he .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lien-he .google-map-embed {
  width: 100%;
  height: 100%;
}

.lien-he .contact-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 40px 20px;
}

.lien-he .contact-form-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 23px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  max-width: 600px;
  width: 100%;
}

.lien-he .form-title {
  font-size: 32px;
  font-weight: 700;
  color: #1676e6;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lien-he .contact-input,
.lien-he .contact-textarea {
  background: white;
  border: 1px solid #d9d9d9;
  border-radius: 13px;
  padding: 18px 20px;

  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  width: 100%;
}

.lien-he .contact-input:focus,
.lien-he .contact-textarea:focus {
  border-color: #1676e6;
  box-shadow: 0 0 0 0.2rem rgba(22, 118, 230, 0.25);
  outline: none;
}

.lien-he .contact-input::placeholder,
.lien-he .contact-textarea::placeholder {
  color: #bbb9b9;
}

.lien-he .contact-textarea {
  resize: vertical;
  min-height: 120px;
}
.map-contact-section {
  margin: 150px 0;
}
.hc-map-contact-section-pc {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 70%;
  height: 120%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
}
.hc-map-contact-section-pc iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all !important;
}
.map-contact-section .container {
  position: relative;
  z-index: 5;
}

.map-contact-section-content-mobile iframe {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* trang liên hệ end */

.hc-search-category-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
}

/* bổ sung trang sản phẩm start */
.hc-intro-content-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hc-intro-content-image img,
.hc-intro-content-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hc-intro-content-image-small-image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border: 5px solid var(--white-color);
  --bs-aspect-ratio: 130%;
}
.hc-intro-content-image-small-image img,
.hc-intro-content-image-small-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hc-intro-content-image-small {
  position: absolute;
  z-index: 3;
  bottom: -10%;
  right: 0%;
  width: 30%;
}
.hc-intro-content-image-content {
  padding-right: 5%;
}
.hc-intro-section-about-category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-image: var(--bg-about-category);
  opacity: 0.3;
}
.hc-intro-section-about-category {
  z-index: 1;
}
.hc-intro-section-about-category .container {
  position: relative;
  z-index: 3;
}
.hc-intro-section-about-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 2;
  background: linear-gradient(to bottom, var(--white-color), transparent);
}
.hc-intro-section-about-category::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 2;
  background: linear-gradient(to top, var(--white-color), transparent);
}
/* bổ sung trang sản phẩm end */

/* float contact start */
/* Floating Contact Buttons */
.hydrosite-nhadidong-floating-contact {
  position: fixed;
  right: 10px;
  top: 50%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  /* transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition); */
}

.hydrosite-nhadidong-float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white-color);
  font-size: 1.2rem;
  box-shadow: var(--shadow-light);
}

.hydrosite-nhadidong-float-btn:hover {
  transform: scale(1.1);
  color: var(--white-color);
}

.hydrosite-nhadidong-phone {
  background: #25d366;
}

.hydrosite-nhadidong-messenger {
  background: #0084ff;
}

.hydrosite-nhadidong-zalo {
  background: #0068ff;
  font-size: 0.7rem;
  font-weight: bold;
}

.hydrosite-nhadidong-viber {
  background: #665cac;
}

/* float contact end */

/* bổ sung slider động start */

.dynamic-slider-container {
  position: relative;
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--white-bright) 0%,
    var(--white-soft) 100%
  );
  overflow: hidden;
}

.dynamic-hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.dynamic-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-bright);
  overflow: hidden;
}

.dynamic-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(59, 130, 246, 0.03) 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.dynamic-slider-container .slide-image-container {
  position: relative;
  overflow: hidden;
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.dynamic-slider-container .slide-image,
.dynamic-slider-container .slide-image-container a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dynamic-slider-container .slide-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  max-width: 600px;
  width: 90%;
}

.dynamic-slider-container .slide-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dynamic-slider-container .slide-description {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #64748b;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

/* Swiper Custom Styling */
.dynamic-slider-container .swiper-pagination {
  bottom: 2rem !important;
  z-index: 10;
}

.dynamic-slider-container .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  background: rgba(59, 130, 246, 0.3) !important;
  border: 2px solid var(--white-bright) !important;
  opacity: 1 !important;
  margin: 0 8px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: var(--shadow-soft) !important;
}

.dynamic-slider-container .swiper-pagination-bullet-active {
  background: var(--primary-dark) !important;
  box-shadow: var(--shadow-strong) !important;
  border-color: var(--primary-dark) !important;
  width: 25px !important;
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
}

.dynamic-slider-container .swiper-button-next,
.dynamic-slider-container .swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  background: var(--glass-bg) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--white-bright) !important;
  font-size: 18px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: var(--shadow-soft) !important;
}

.dynamic-slider-container .swiper-button-next:after,
.dynamic-slider-container .swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.dynamic-slider-container .swiper-button-next:hover,
.dynamic-slider-container .swiper-button-prev:hover {
  background: var(--primary-dark) !important;
  color: var(--white-bright) !important;
  transform: scale(1.1) !important;
  box-shadow: var(--shadow-strong) !important;
}

/* Animation Classes */
.dynamic-slider-container .slide-active .slide-title,
.dynamic-slider-container .slide-active .slide-description {
  opacity: 1;
  transform: translateY(0);
}

.dynamic-slider-container .slide-active .slide-image {
  transform: scale(1.02);
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

/* Parallax Background */
.dynamic-slider-container .dynamic-slide::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 197, 253, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(59, 130, 246, 0.03) 0%,
      transparent 50%
    );
  animation: backgroundFloat 15s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(-20px) translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateX(20px) translateY(10px) rotate(-1deg);
  }
  75% {
    transform: translateX(-10px) translateY(20px) rotate(0.5deg);
  }
}
.hc-header.position-sticky.header-dynamic {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white-color);
}
/* bổ sung slider động end */
