@import url("root.css");

/* ===== MODERN HEADER STYLES ===== */

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.top-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.top-link i {
  font-size: 1.4rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.auth-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.login-btn {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.register-btn {
  color: var(--colorGreen);
  background: #fff;
  border: 1px solid #fff;
}

.register-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* User Menu */
.user-menu {
  position: relative;
}

.user-avatar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 1.5rem;
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.user-avatar:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.avatar-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--colorOrange) 0%, #ff8a65 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
}

.avatar-icon i {
  font-size: 1.8rem;
  font-weight: 600;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.user-name {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-status {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  font-weight: 500;
}

.dropdown-arrow {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  transition: transform 0.3s ease;
  margin-left: 0.5rem;
}

.user-menu:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* User Dropdown */
.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 30rem;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1002;
  margin-top: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem;
  border-bottom: 1px solid #f0f0f0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 1.2rem 1.2rem 0 0;
}

.dropdown-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, var(--colorOrange) 0%, #ff8a65 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
}

.dropdown-avatar i {
  font-size: 2.2rem;
  font-weight: 600;
}

.dropdown-user-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dropdown-name {
  color: var(--textColor);
  font-size: 1.4rem;
  font-weight: 600;
}

.dropdown-email {
  color: #666;
  font-size: 1.2rem;
}

.dropdown-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 0.5rem 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 2rem;
  color: var(--textColor);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0.8rem;
  margin: 0.3rem 1rem;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #fff5f2 0%, #f8f9fa 100%);
  color: var(--colorOrange);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.1);
}

.dropdown-item i {
  font-size: 1.8rem;
  width: 2.2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.dropdown-item:hover i {
  transform: scale(1.1);
}

.dropdown-item span {
  font-size: 1.4rem;
  font-weight: 500;
}

.item-badge {
  margin-left: auto;
  background: linear-gradient(135deg, var(--colorOrange) 0%, #ff8a65 100%);
  color: #fff;
  font-size: 1.1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 1.2rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.logout-item {
  color: #dc3545;
  margin-top: 0.5rem;
}

.logout-item:hover {
  background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
  color: #dc3545;
}

.logout-item:hover {
  background: #fff5f5;
  color: #dc3545;
}

/* Main Header */
.main-header {
  background: #fff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.header-logo {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-icon {
  font-size: 2.4rem;
  color: var(--colorOrange);
}

.logo-text {
  font-family: var(--logoFontFam);
  font-size: 2.4rem;
  color: var(--colorGreen);
  font-weight: 700;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo:hover .logo-text {
  color: var(--colorOrange);
}

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 70rem;
  margin: 0 auto;
}

.search-container {
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-container:hover {
  transform: translateY(-2px);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e9ecef;
  border-radius: 3rem;
  padding: 1.2rem 1.8rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-height: 5.6rem;
}

.search-input-wrapper:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-color: var(--colorOrange);
  box-shadow: 0 8px 30px rgba(255, 111, 60, 0.2);
  transform: translateY(-1px);
}

.search-input-wrapper:active {
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(255, 111, 60, 0.15);
}

.search-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  background: var(--colorOrange);
  border-radius: 50%;
  margin-right: 1.2rem;
  flex-shrink: 0;
}

.search-icon-container i {
  font-size: 1.6rem;
  color: #fff;
}

.search-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.search-placeholder-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--textColor);
  line-height: 1.2;
}

.search-category {
  font-size: 1.2rem;
  color: #6c757d;
  font-weight: 400;
}

.search-actions {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.search-shortcut-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 111, 60, 0.1);
  color: var(--colorOrange);
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid rgba(255, 111, 60, 0.2);
  transition: all 0.3s ease;
}

.search-shortcut-badge i {
  font-size: 1.4rem;
}

.search-shortcut-badge:hover {
  background: var(--colorOrange);
  color: #fff;
  transform: scale(1.05);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  border-radius: 2rem;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--colorOrange);
  transform: translateY(-1px);
}

.contact-link:hover .contact-icon i,
.contact-link:hover .contact-number {
  color: #fff;
}

.contact-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--colorOrange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: #fff;
  font-size: 1.4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

.contact-number {
  font-size: 1.3rem;
  color: var(--textColor);
  font-weight: 600;
}

/* Social Links */
.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--colorOrange);
  color: #fff;
  transform: translateY(-2px);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.action-btn {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--textColor);
  font-size: 1.6rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.action-btn:hover {
  background: var(--colorOrange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 111, 60, 0.3);
}

.cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: #dc3545;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
  min-width: 1.8rem;
  text-align: center;
}

/* Navigation Menu */
.main-navigation {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 2rem;
  color: var(--textColor);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link i {
  font-size: 1.6rem;
}

.nav-link:hover {
  color: var(--colorOrange);
  background: #f8f9fa;
}

.nav-link.active {
  color: var(--colorOrange);
  background: #fff5f2;
  border-bottom: 3px solid var(--colorOrange);
}

.dropdown-arrow {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-left: 0.5rem;
  color: #333 !important;
  opacity: 1;
  font-weight: bold;
}

.dropdown-arrow:hover {
  color: var(--colorOrange) !important;
  opacity: 1;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 25rem !important;
  background: #fff !important;
  border-radius: 1rem !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  padding: 1rem 0 !important;
  margin-top: 0.5rem !important;
  z-index: 1001 !important;
  display: none !important;
  transform-origin: top left !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  list-style: none !important;
  margin: 0 !important;
}



/* Ensure dropdown menu is properly positioned */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
}

/* Bootstrap dropdown show class */
.dropdown-menu.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 1001 !important;
}

/* Dropdown items */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  color: var(--textColor);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  color: var(--colorOrange);
  background: #f8f9fa;
}

.dropdown-item i {
  font-size: 1.6rem;
  width: 2rem;
  text-align: center;
}

.nav-item.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--textColor);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: var(--colorOrange);
  padding-left: 2rem;
}

.dropdown-item i {
  font-size: 1.4rem;
  color: #999;
  transition: color 0.3s ease;
}

.dropdown-item:hover i {
  color: var(--colorOrange);
}

/* Search Modal */
.search-modal .modal-content {
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.search-modal .modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 2rem 2.5rem 1.5rem;
}

.search-modal .modal-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--textColor);
}

.search-modal .modal-title i {
  color: var(--colorOrange);
  font-size: 2.2rem;
}

.search-modal .modal-body {
  padding: 2rem 2.5rem 2.5rem;
}

.search-input-container {
  position: relative;
  margin-bottom: 2rem;
}

.search-input-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: #999;
}

.search-input {
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  border: 2px solid #f0f0f0;
  border-radius: 1rem;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--colorOrange);
  box-shadow: 0 0 0 3px rgba(255, 111, 60, 0.1);
}

.search-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--colorOrange);
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  padding: 0.8rem;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: var(--colorOrange2);
  transform: translateY(-50%) scale(1.05);
}

.search-suggestions {
  margin-bottom: 2rem;
}

.suggestions-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--textColor);
  margin-bottom: 1rem;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.suggestion-tag {
  padding: 0.6rem 1.2rem;
  background: #f8f9fa;
  color: #666;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.suggestion-tag:hover {
  background: var(--colorOrange);
  color: #fff;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-info {
    display: none;
  }
  
  .social-links {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-search {
    display: none;
  }
  
  .header-content {
    gap: 1rem;
  }
}

@media (max-width: 1200px) {
  .header-search {
    max-width: 60rem;
  }
  
  .search-input-wrapper {
    padding: 1rem 1.5rem;
    min-height: 5rem;
  }
  
  .search-placeholder-text {
    font-size: 1.4rem;
  }
  
  .search-category {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .main-header {
    padding: 1rem 0;
  }
  
  .header-content {
    justify-content: space-between;
  }
  
  .logo-text {
    font-size: 2rem;
  }
  
  .action-buttons {
    gap: 0.5rem;
  }
  
  .action-btn {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }
}

/* Legacy styles for backward compatibility */
.band {
  background-color: var(--colorOrange);
}
.bandcontent {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 576px) {
  .bandcontent {
    height: 4rem;
    padding: 0;
  }
}
.bandcontent p {
  font-size: 1.4rem;
  color: #fff;
}
@media (min-width: 576px) {
  .bandcontent p {
    font-size: 1.5rem;
  }
}
.headertoplinks {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}
@media (min-width: 992px) {
  .headertoplinks {
    column-gap: 2rem;
  }
}
.headertoplinks {
  display: flex;
  align-items: center;
}
.headertoplinks.positionleft {
  justify-content: flex-start;
}
.headertoplinks.positionright {
  justify-content: flex-end;
}
.headertoplinks a {
  font-size: 1.4rem;
  color: var(--textColor);
  transition: color 300ms ease;
  font-weight: 500;
  position: relative;
}
@media (min-width: 992px) {
  .headertoplinks a {
    font-size: 1.5rem;
  }
}
.headertoplinks a::after {
  content: "";
  position: absolute;
  background-color: var(--colorOrange2);
  left: 0;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  bottom: -0.3rem;
  transform: scaleX(0);
  transform-origin: right center;
  height: 0.15rem;
}
.headertoplinks a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.headertoplinks a i {
  margin-right: 0.3rem;
}
.headertoplinks a:hover {
  color: var(--colorOrange2);
}
.headerside {
  height: var(--header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerside figure {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
}
.searchbar {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.searchbaritem {
  border: 0.1rem solid #f6f6f6;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 30rem;
  border-radius: 0.3rem;
  cursor: pointer;
}
@media (min-width: 992px) {
  .searchbaritem {
    width: 35rem;
  }
}
@media (min-width: 1200px) {
  .searchbaritem {
    width: 40rem;
  }
}
.searchbaritem p {
  font-size: 1.4rem;
}
.searchbaritem p i {
  margin-right: 0.5rem;
}
.searchbaritem span {
  font-size: 1.2rem;
  background-color: #f6f6f6;
  border-radius: 0.3rem;
  padding: 0.3rem 0.5rem;
  font-weight: 500;
}
.headerend {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 2rem;
  flex: 1;
}
.socialmedia {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}
.socialmedia a {
  font-size: 1.6rem;
  color: var(--textColor);
  transition: color 500ms ease;
}
.socialmedia a:hover {
  color: var(--colorOrange);
}
.contactnumber {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactnumber a {
  font-size: 1.6rem;
  color: var(--textColor);
  transition: color 500ms ease;
  font-weight: 500;
}
.contactnumber a:hover {
  color: var(--colorOrange);
}
.headeractionsbuttons {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1rem;
}
@media (min-width: 1200px) {
  .headeractionsbuttons {
    column-gap: 0.5rem;
  }
}
.headeractionsbuttons a,
.headeractionsbuttons button {
  color: var(--textColor);
  transition: color 500ms ease;
  font-size: 1.6rem;
}
.headeractionsbuttons a:hover,
.headeractionsbuttons button:hover {
  color: var(--colorOrange);
}
.headeractionsbuttons button {
  padding: 0;
}
.mainmenu {
  background-color: #f6f6f6;
}
.mainmenuside {
  height: var(--menu);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mainlink {
  padding: 0 2rem;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--textColor);
  transition: color 500ms ease;
}
.mainlink i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
}
.dropdownmain {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  position: relative;
  padding: 0 2rem;
  cursor: pointer;
  transition: all 500ms ease;
}
.dropdownmain p {
  font-size: 1.5rem;
  color: var(--textColor);
  transition: color 500ms ease;
  font-weight: 500;
}
.dropdownmain i {
  margin-left: 0.5rem;
  transition: color 500ms ease, transform 500ms ease;
}
.dropdownmenu {
  position: absolute;
  z-index: 5;
  top: 100%;
  left: 0;
  background-color: #f6f6f6;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 25rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
}
.dropdownmain:hover .dropdownmenu {
  display: block;
  transform: perspective(600px) rotateX(0deg);
}
.dropdownmenu a {
  width: 100%;
  display: block;
  padding: 1rem;
  font-size: 1.5rem;
  color: var(--textColor);
  transition: all 500ms ease;
  position: relative;
  z-index: 0;
}
.dropdownmenu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 100%;
  background-color: var(--colorOrange);
  z-index: -1;
  transition: all 500ms ease;
}
.dropdownmenu a:hover::before {
  right: 0;
}
.dropdownmenu a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.dropdownmenu a:hover {
  color: #fff;
}
.mainlink.active,
.mainlink.active:hover,
.mainlink.active:focus {
  background-color: var(--colorOrange);
  color: #fff;
}
.mainlink:hover {
  background-color: var(--colorGreen);
  color: #fff;
}
.dropdownmain:hover {
  background-color: var(--colorGreen);
}
.dropdownmain:hover p,
.dropdownmain:hover i {
  color: #fff;
}
.dropdownmain:hover i {
  transform: rotate(-45deg);
}
.dropdownmain.active {
  background-color: var(--colorOrange);
}
.dropdownmain.active p,
.dropdownmain.active i {
  color: #fff;
}
/* ===== MODERN HERO SLIDER ===== */
.hero-slider {
  height: 70rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1600px) {
  .hero-slider {
    height: 80rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 60rem;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 50rem;
  }
}
.hero-swiper {
  height: 100%;
}

.hero-slide {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  max-width: 60rem;
  color: #fff;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: var(--colorOrange);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.hero-badge.hero-offer {
  background: #e74c3c;
  animation: pulse 2s infinite;
}

/* Hero Title */
.hero-text h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2.4rem;
  }
}

/* Hero Description */
.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-text p {
    font-size: 1.4rem;
  }
}

/* Slider Buttons */
.slider-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.slider-btn-primary {
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 2.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 0.5rem 1.5rem rgba(255, 111, 60, 0.4);
  border: none;
  position: relative;
  overflow: hidden;
}

.slider-btn-primary::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 ease;
}

.slider-btn-primary:hover::before {
  left: 100%;
}

.slider-btn-primary:hover {
  background: linear-gradient(135deg, var(--colorOrange2), var(--colorOrange));
  transform: translateY(-0.3rem);
  box-shadow: 0 0.8rem 2.5rem rgba(255, 111, 60, 0.6);
  color: #fff;
}

.slider-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1rem);
  color: #fff;
  padding: 1.2rem 2.5rem;
  border: 0.2rem solid rgba(255, 255, 255, 0.3);
  border-radius: 2.5rem;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.slider-btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.slider-btn-secondary:hover::before {
  left: 100%;
}

.slider-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-0.3rem);
  box-shadow: 0 0.8rem 2rem rgba(255, 255, 255, 0.2);
  color: #fff;
}

@media (max-width: 576px) {
  .slider-buttons {
    flex-direction: column;
  }
  
  .slider-btn-primary,
  .slider-btn-secondary {
    text-align: center;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
  }
}
/* Slider Features */
.slider-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.slider-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1rem);
  padding: 0.8rem 1.2rem;
  border-radius: 2rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.slider-feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.slider-feature-item i {
  color: var(--colorOrange);
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.9);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--colorOrange);
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  font-size: 1.3rem;
  color: #fff;
  opacity: 0.9;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.timer-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1rem);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  min-width: 8rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
}

.timer-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--colorOrange);
  margin-bottom: 0.5rem;
}

.timer-label {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

/* Hero Navigation */
.hero-nav-next,
.hero-nav-prev {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1rem);
  width: 5rem !important;
  height: 5rem !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.hero-nav-next::after,
.hero-nav-prev::after {
  font-size: 2rem !important;
  font-weight: bold;
}

/* Hero Pagination */
.hero-pagination {
  bottom: 3rem !important;
}

.hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 1.2rem;
  height: 1.2rem;
  transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--colorOrange);
  transform: scale(1.3);
}

/* Progress Bar */
.swiper-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.swiper-progress-bar {
  height: 100%;
  background: var(--colorOrange);
  width: 0;
  transition: width 0.1s ease;
}

/* ===== ENHANCED HERO LAYOUT ===== */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 40rem;
  gap: 4rem;
  align-items: center;
  height: 100%;
}

@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: 1fr 35rem;
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-product-card {
    display: none;
  }
}

/* Enhanced Hero Content */
.hero-badge-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-badge-new {
  background: #10b981;
  animation: pulse 2s infinite;
}

.hero-badge-hot {
  background: #ef4444;
  animation: pulse 2s infinite;
}

.hero-badge-limited {
  background: #f59e0b;
  animation: pulse 2s infinite;
}

.hero-title {
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.3);
}

.title-highlight {
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
  max-width: 50rem;
}

/* Enhanced Feature Items */
.slider-feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1rem);
  padding: 1.2rem 1.6rem;
  border-radius: 2rem;
  color: #fff;
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 20rem;
}

.slider-feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.3rem);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.2);
}

.feature-icon {
  background: rgba(255, 255, 255, 0.9);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: var(--colorOrange);
  font-size: 1.6rem;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.feature-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== HERO PRODUCT CARD REDESIGN ===== */
.hero-product-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--colorOrange) 0%, var(--colorOrange2) 100%);
  border-radius: 2rem 2rem 0 0;
}

.hero-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2), 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.hero-card-badge {
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  box-shadow: 0 4px 15px rgba(26, 107, 122, 0.3);
}

.hero-card-badge-discount {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  animation: pulse 2s infinite;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.hero-card-rating {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-stars {
  display: flex;
  gap: 0.2rem;
}

.hero-star {
  color: #fbbf24;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
  transition: all 0.3s ease;
}

.hero-star:hover {
  transform: scale(1.2);
  color: #f59e0b;
}

.hero-rating-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--textColor);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-image-container {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  margin-bottom: 2rem;
  height: 22rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-card-inner:hover .hero-product-image {
  transform: scale(1.08);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.hero-card-inner:hover .hero-image-overlay {
  opacity: 1;
}

.hero-view-btn {
  background: linear-gradient(135deg, var(--colorOrange) 0%, var(--colorOrange2) 100%);
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  transform: translateY(2rem);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.hero-card-inner:hover .hero-view-btn {
  transform: translateY(0);
}

.hero-view-btn:hover {
  background: linear-gradient(135deg, var(--colorOrange2) 0%, var(--colorOrange) 100%);
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.hero-discount-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 1.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  animation: pulse 2s infinite;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.hero-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-product-title {
  margin-bottom: 1.5rem;
}

.hero-product-title a {
  color: var(--textColor);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-product-title a:hover {
  color: var(--colorOrange);
  background: linear-gradient(135deg, var(--colorOrange) 0%, var(--colorOrange2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-product-price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--colorOrange);
  text-shadow: 0 2px 4px rgba(255, 107, 0, 0.2);
}

.hero-price-old {
  font-size: 1.6rem;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #ef4444;
}

.hero-price-note {
  font-size: 1.3rem;
  color: #666;
  font-weight: 500;
}

.hero-action-btn {
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
  padding: 1.2rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(26, 107, 122, 0.3);
  margin-top: auto;
}

.hero-action-btn:hover {
  background: linear-gradient(135deg, #1a6b7a 0%, var(--colorGreen) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(26, 107, 122, 0.4);
  color: #fff;
}

.hero-action-btn i {
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.hero-action-btn:hover i {
  transform: translateX(3px);
}

/* Responsive Design for Hero Product Card */
@media (max-width: 1200px) {
  .hero-product-card {
    padding: 2rem;
  }
  
  .hero-image-container {
    height: 18rem;
  }
  
  .hero-product-title a {
    font-size: 1.6rem;
  }
  
  .hero-price-amount {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-product-card {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .hero-image-container {
    height: 16rem;
  }
  
  .hero-product-title a {
    font-size: 1.4rem;
  }
  
  .hero-price-amount {
    font-size: 1.8rem;
  }
  
  .hero-action-btn {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
  }
  
  .hero-card-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .hero-card-rating {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .hero-product-card {
    padding: 1.2rem;
  }
  
  .hero-image-container {
    height: 14rem;
  }
  
  .hero-product-title a {
    font-size: 1.3rem;
  }
  
  .hero-price-amount {
    font-size: 1.6rem;
  }
  
  .hero-action-btn {
    padding: 0.8rem 1.2rem;
    font-size: 1.2rem;
  }
}

.product-action-btn {
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  width: 100%;
}

.product-action-btn:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2rem rgba(255, 111, 60, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Enhanced Countdown Timer */
.countdown-timer {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: flex-start;
}

.timer-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1rem);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  min-width: 8rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.timer-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.2rem);
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
  .slider-features {
    gap: 1.5rem;
  }
  
  .slider-feature-item {
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
    min-width: auto;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .countdown-timer {
    gap: 1rem;
  }
  
  .timer-item {
    padding: 1rem;
    min-width: 6rem;
  }
  
  .timer-number {
    font-size: 2rem;
  }
  
  .timer-label {
    font-size: 1rem;
  }
  
  .hero-nav-next,
  .hero-nav-prev {
    width: 4rem !important;
    height: 4rem !important;
  }
  
  .hero-nav-next::after,
  .hero-nav-prev::after {
    font-size: 1.6rem !important;
  }
  
  .title-line {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .slider-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .slider-feature-item {
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    min-width: auto;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .countdown-timer {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .timer-item {
    min-width: 5rem;
  }
  
  .hero-nav-next,
  .hero-nav-prev {
    display: none !important;
  }
  
  .title-line {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.4rem;
  }
  
  .hero-badge-container {
    gap: 0.8rem;
  }
  
  .hero-badge {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations to hero elements */
.hero-content {
  animation: slideInFromLeft 1s ease-out;
}

.hero-product-card {
  animation: slideInFromRight 1s ease-out 0.3s both;
}

.hero-badge-container {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-title {
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-description {
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.slider-buttons {
  animation: fadeInUp 0.8s ease-out 1.1s both;
}

.slider-features {
  animation: fadeInUp 0.8s ease-out 1.3s both;
}

.product-card-inner {
  animation: scaleIn 1s ease-out 0.6s both;
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .hero-product-card {
    display: block;
    max-width: 35rem;
    margin: 0 auto;
  }
  
  .product-card-inner {
    padding: 1.5rem;
  }
  
  .product-image-container {
    height: 15rem;
  }
  
  .slider-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .slider-feature-item {
    min-width: auto;
    padding: 0.8rem 1.2rem;
  }
  
  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .feature-icon i {
    font-size: 1.4rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .countdown-timer {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .timer-item {
    min-width: 6rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: auto;
    min-height: 60rem;
  }
  
  .hero-slide {
    padding: 2rem 0;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .title-line {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .slider-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .slider-btn-primary,
  .slider-btn-secondary {
    padding: 1rem 1.8rem;
    font-size: 1.3rem;
    text-align: center;
  }
  
  .product-card-inner {
    padding: 0.8rem;
  }
  
  .product-image-container {
    height: 12rem;
  }
  
  .product-title a {
    font-size: 1.3rem;
  }
  
  .price-amount {
    font-size: 1.8rem;
  }
  
  .hero-badge {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ===== SMOOTH TRANSITIONS ===== */
.hero-product-card,
.product-card-inner,
.slider-feature-item,
.timer-item,
.hero-badge,
.slider-btn-primary,
.slider-btn-secondary {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== LOADING STATES ===== */
.hero-product-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.hero-product-card.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--colorOrange);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.hero-product-card:focus-within {
  outline: 2px solid var(--colorOrange);
  outline-offset: 2px;
}

.slider-btn-primary:focus,
.slider-btn-secondary:focus,
.product-action-btn:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-product-card {
  will-change: transform, opacity;
}

.product-image {
  will-change: transform;
}

.slider-feature-item {
  will-change: transform;
}

.iconboxes {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.iconboxes figure {
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.iconboxes .content {
  width: calc(100% - 6rem);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
.iconboxes .content p {
  font-size: 1.5rem;
}
/* ===== MODERN FOOTER STYLES ===== */
.footer {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  position: relative;
  overflow: hidden;
}

.footer::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}
.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.footerbox h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footerbox h4::before {
  content: '';
  width: 0.3rem;
  height: 2rem;
  background: var(--colorOrange);
  border-radius: 0.2rem;
}

.footerbox h4::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  height: 0.1rem;
  background: linear-gradient(90deg, var(--colorOrange) 0%, transparent 100%);
  width: 4rem;
}
.footerbox ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.footerbox ul li {
  padding: 0;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  position: relative;
}

.footerbox ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  position: relative;
}

.footerbox ul li a::before {
  content: '';
  width: 0;
  height: 0.2rem;
  background: var(--colorOrange);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.footerbox ul li:hover a {
  color: #fff;
  transform: translateX(0.5rem);
}

.footerbox ul li:hover a::before {
  width: 2rem;
}
.footersocial {
  margin: 2.5rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.footersocial a {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.6rem;
}

.footersocial a:hover {
  background: var(--colorOrange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 111, 60, 0.3);
  border-color: var(--colorOrange);
}
.footercontact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footercontact a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footercontact a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(0.5rem);
  border-color: rgba(255, 255, 255, 0.2);
}

.footercontact a i {
  font-size: 1.6rem;
  color: var(--colorOrange);
}
.footerbox .form-control {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  color: #fff;
  padding: 1.2rem 1.5rem;
  transition: all 0.3s ease;
}

.footerbox .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--colorOrange);
  box-shadow: 0 0 0 3px rgba(255, 111, 60, 0.1);
}

.footerbox .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footerbox label {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footerbox button[type="submit"] {
  background: linear-gradient(135deg, var(--colorOrange) 0%, var(--colorOrange2) 100%);
  color: #fff;
  border: none;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1.2rem 2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footerbox button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 111, 60, 0.3);
}

.footerbox button[type="submit"] i {
  font-size: 1.6rem;
}
.deep {
  background: linear-gradient(135deg, var(--textColor) 0%, #2c2c2c 100%);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.deepside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.deepsideitem {
  display: flex;
  align-items: center;
  flex: 1;
}

.deepsideleft {
  gap: 2rem;
}

.deepsideleft a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.deepsideleft a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.deepsidemid {
  justify-content: center;
}

.deepsidemid a {
  color: var(--colorOrange);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.deepsidemid a:hover {
  color: var(--colorOrange2);
  transform: scale(1.05);
}

.deepsideright {
  justify-content: flex-end;
  gap: 1rem;
}

.deepsideright figure {
  width: 4.5rem;
}
.deepsideright figure img {
  aspect-ratio: 4/3;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.deepsideright figure:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Navigation Responsive Design */
@media (max-width: 1200px) {
  .nav-item.dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    background: #f8f9fa;
  }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
  
  .footerbox h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .footerbox ul li a {
    font-size: 1.3rem;
    padding: 0.6rem 0;
  }
  
  .footersocial {
    margin: 2rem 0;
    gap: 0.8rem;
  }
  
  .footersocial a {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }
  
  .footercontact a {
    font-size: 1.3rem;
    padding: 0.6rem 1rem;
  }
  
  .deepside {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .deepsideleft {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .deepsideright {
    justify-content: center;
  }
}
.deepsideleft {
  justify-content: flex-start;
  column-gap: 1rem;
}
.deepsideleft a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 500ms ease;
}
.deepsideleft a:hover {
  color: rgba(255, 255, 255, 1);
}
.deepsidemid {
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .deepsidemid {
    justify-content: center;
  }
}
@font-face {
  font-family: pill;
  src: url(../fonts/magnolia_sky.ttf);
}
.deepsidemid a {
  color: #fff;
  font-family: pill;
  font-size: 1.8rem;
  line-height: 0;
  transition: color 500ms ease;
}
.deepsidemid a:hover {
  color: var(--colorOrange);
}
.productBoxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
}
.productBoxesimages {
  width: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
}
.productBoxesimages img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: all 1.2s ease-in-out;
}
.productBoxes:hover .productBoxesimages img {
  transform: scale(1.2);
  filter: brightness(80%) blur(1px);
}
.productBoxes .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
}
.productBoxes .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  flex: 1;
}
.productBoxes .content h3 a {
  color: var(--textColor);
  transition: color 500ms ease;
}
.productBoxes .content h3:hover a {
  color: var(--colorOrange);
}
.productBoxes:hover .content h3 a {
  color: var(--colorOrange);
}
.contentprice {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contentprice span {
  font-size: 1.5rem;
  font-weight: 500;
}
.contentprice p {
  font-size: 1.6rem;
  font-weight: 600;
}
.pagemap {
  background: #ff6f3c;
  background: linear-gradient(
    90deg,
    rgba(255, 111, 60, 1) 0%,
    rgba(255, 154, 60, 1) 100%
  );
}
.pagemap ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 2rem;
  padding: 1rem;
}
@media (min-width: 992px) {
  .pagemap ul {
    flex-wrap: nowrap;
  }
}
.pagemap ul li {
  font-size: 1.5rem;
  color: #fff;
  position: relative;
}
.pagemap ul li a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 300ms ease;
}
.pagemap ul li:hover a {
  color: #fff;
  text-decoration: underline;
}
.pagemap ul li.active {
  color: var(--colorGreen) !important;
  font-weight: 700;
}
.pagemap ul li:not(:last-child)::after {
  content: "\EA54";
  font-family: "remixicon";
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  right: -1.7rem;
  top: 0.2rem;
}
.generalTitle {
  margin-bottom: 2rem;
}
.generalTitle h2 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
}
.productMainimages {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.productMainimages img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.controlBoxes {
  padding: 2rem;
  margin-left: 2rem;
  border-radius: 0.5rem;
  background-color: #fff;
}
@media (min-width: 1200px) {
  .controlBoxes {
    padding: 5rem;
  }
}
.productOptions {
  padding: 2rem;
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}
@media (min-width: 1200px) {
  .productOptions {
    margin-left: 2rem;
    padding: 5rem;
  }
}
.productOptionsitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.productOptionsitem h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.optButton {
  border-radius: 0.3rem;
  font-size: 1.4rem;
  font-weight: 500;
  border: 0.1rem solid #eaeaea;
  padding: 0.6rem 1.2rem;
  transition: all 300ms ease;
}
.optButton:hover {
  background-color: var(--colorOrange);
  border: 0.1rem solid var(--colorOrange);
  color: #fff;
}
.optButton.active,
.optButton.active:hover,
.optButton.active:focus {
  background-color: var(--colorGreen);
  color: #fff;
  border: 0.1rem solid var(--colorGreen);
}
.productOptionsitem .form-control {
  width: 20rem;
  background-color: #f6f6f6;
}
.productOptionsEnd {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .productOptionsEnd {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.productOptionsEnd a {
  padding: 1rem 2rem;
  background-color: var(--colorOrange);
  font-size: 1.5rem;
  color: #fff;
  border-radius: 0.3rem;
  transition: all 300ms ease;
}
.productOptionsEnd a:hover {
  background-color: var(--colorGreen);
  color: #fff;
}
.subs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.generalContent {
  margin-top: 1rem;
}
.generalContent h1,
.generalContent h2,
.generalContent h3,
.generalContent h4,
.generalContent h5,
.generalContent h6 {
  font-weight: 700;
  text-transform: none;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--colorGreen);
}
.generalContent p {
  font-weight: 400;
  margin-bottom: 1rem;
}
.questionboxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}
.questionboxes:not(:last-child) {
  margin-bottom: 2rem;
}
.questionboxestitle {
  width: 100%;
  cursor: pointer;
}
.questionboxestitle h3 {
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 300ms ease;
}
.questionboxes:hover .questionboxestitle h3 {
  color: var(--colorOrange);
}
.questionboxescontent {
  font-size: 1.5rem;
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.1rem dashed #eaeaea;
}
.commentFormContent {
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}
@media (min-width: 1200px) {
  .commentFormContent {
    position: sticky;
    top: 1rem;
  }
}
.commentFormContent .form-control {
  background-color: #f6f6f6;
}
.commentFormContent button[type="submit"] {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  background-color: var(--colorOrange);
  color: #fff;
  font-size: 1.5rem;
  transition: all 300ms ease;
}
.commentFormContent button[type="submit"]:hover {
  background-color: var(--colorGreen);
  color: #fff;
}
.commentBoxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  padding: 2rem;
  border: 0.2rem solid #f6f6f6;
  border-radius: 0.5rem;
  transition: all 300ms ease;
  background-color: #fff;
}
.commentBoxes:hover {
  border: 0.2rem solid var(--colorOrange);
}
.commentBoxesHead {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}
.commentBoxesUsers {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--colorGreen);
  border-radius: 50%;
}
.commentBoxesUsers p {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
}
.commentBoxesHead .content {
  width: calc(100% - 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
}
.commentBoxesHead .content h3 {
  font-size: 1.4rem;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.commentStars {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.2rem;
  margin-top: 0.3rem;
}
.commentBoxes .content {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 1.5rem;
}
.commentboxesend {
  border-top: 0.2rem solid #f6f6f6;
  padding-top: 1rem;
  margin-top: 1rem;
}
.commentboxesend p {
  font-size: 1.4rem;
}
.commentboxesend p i {
  margin-right: 0.3rem;
}
.maintextcontent h1,
.maintextcontent h2,
.maintextcontent h3,
.maintextcontent h4,
.maintextcontent h5,
.maintextcontent h6 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.maintextcontent p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.maintextcontent ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
  list-style-type: circle;
}
.maintextcontent ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
  list-style-type: decimal;
}
.maintextcontent li {
  padding: 0.5rem 0;
  font-size: 1.6rem;
}
.maintextcontent ul p,
.maintextcontent ol p {
  margin: 0;
}
.maintextcontent blockquote {
  background-color: #f6f6f6;
  border-left: 0.6rem solid var(--colorOrange);
  padding: 2rem;
}
.maintextcontent table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.maintextcontent th,
.maintextcontent td {
  padding: 1rem;
  font-size: 1rem;
  color: var(--textColor);
  border: 0.1rem solid #eaeaea;
}
@media (min-width: 350px) {
  .maintextcontent th,
  .maintextcontent td {
    font-size: 1.2rem;
  }
}
@media (min-width: 400px) {
  .maintextcontent th,
  .maintextcontent td {
    font-size: 1.4rem;
  }
}
.swiper-comment .swiper-slide,
.swiper-comment2 .swiper-slide {
  display: flex;
  height: auto;
}
.commentHomeContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .commentHomeContent {
    padding-right: 2rem;
    height: 100%;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .commentHomeContent {
    padding-right: 5rem;
    margin-bottom: 0;
  }
}
.commentHomeContentTitle {
  margin-bottom: 2rem;
}
.commentHomeContentTitle h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .commentHomeContentTitle h2 {
    font-size: 3rem;
  }
}
.commentHomeContentText {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.commentHomeContentText p {
  font-size: 1.5rem;
}
.commentHomeContentText a {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 0.3rem;
  transition: all 300ms ease;
  background-color: var(--colorOrange);
  color: #fff;
}
.commentHomeContentText a:hover {
  background-color: var(--colorGreen);
  color: #fff;
}
.productOptionsSub {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#modalFiyatAlani {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1rem;
}
.basketcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.basketcontentitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 768px) {
  .basketcontentitem {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.basketcontentitem:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #eaeaea;
}
.basketcontentitemleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
@media (min-width: 576px) {
  .basketcontentitemleft {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 75%;
  }
}
.basketcontentitemleft figure {
  width: 10rem;
  height: 10rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.basketcontentitemleft figure img {
  object-fit: cover;
  height: 100%;
}
.basketcontentitemleft .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .basketcontentitemleft .content {
    width: calc(100% - 10rem);
    padding-left: 2rem;
  }
}
.basketcontentitemleft .content h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
.basketcontentitemright {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .basketcontentitemright {
    width: 25%;
    margin-top: 0;
  }
}
.basketcontentitemright p {
  font-size: 1.6rem;
  flex: 1;
  text-align: center;
}
.removeCart {
  width: 3rem;
  height: 3rem;
  border-radius: 0.3rem;
  background-color: #f6f6f6;
  color: var(--textColor);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
}
.removeCart:hover {
  background-color: red;
  color: #fff;
}
.basketcontentoptions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0.5rem;
  gap: 0.3rem;
}
.basketcontentoptionsitem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 0.1rem solid #eaeaea;
  padding: 0.3rem 0.5rem;
  border-radius: 0.3rem;
}
.basketcontentoptionsitem span {
  font-size: 1rem;
  font-weight: 600;
}
.basketcontentoptionsitem p {
  font-size: 1.2rem;
}
.cartItemQty {
  padding: 0.5rem;
  background-color: #f4f4f4;
  width: 5rem;
  text-align: center;
}
.productimages {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.productimages:hover {
  transform: scale(1.02);
}
.productimages img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.gridgap {
  row-gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .gridgap {
    margin-top: 0;
  }
}
.otherProducts {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  background-color: #fff;
}
.otherProductsitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.otherProductsitem:not(:last-child) {
  margin-bottom: 2rem;
}
.otherProductsitem figure {
  width: 7rem;
  height: 7rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.otherProductsitem figure img {
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease;
}
.otherProductsitem .content {
  width: calc(100% - 7rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1rem;
}
.otherProductsitem:hover figure img {
  transform: scale(1.1);
  filter: brightness(60%);
}
.otherProductsitem .content h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
.otherProductsitem .content h3 a {
  color: var(--textColor);
  transition: color 300ms ease;
}
.otherProductsitem:hover .content h3 a {
  color: var(--colorOrange);
}
.otherProductsitem .content p {
  font-size: 1.4rem;
}
.otherProductsitem .content p span {
  display: block;
  font-size: 1.4rem;
  font-style: italic;
}
.otherProductsTitle {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #eaeaea;
}
.otherProductsTitle h2 {
  font-size: 1.6rem;
  font-weight: 500;
}
.productaffix {
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .productaffix {
    position: sticky;
    top: 1rem;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .mainproductpage {
    padding: 0 2rem;
  }
}

.mainproductTitles {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  background-color: #fff;
  padding: 1rem 2rem;
}
@media (min-width: 786px) {
  .mainproductTitles {
    flex-direction: row;
    row-gap: 0;
  }
}
.mainproductTitles h1 {
  font-size: 2rem;
  font-weight: 700;
}
.mainproductTitlesex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1rem;
}
@media (min-width: 768px) {
  .mainproductTitlesex {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    row-gap: 0;
    column-gap: 1rem;
  }
}
.mainproductTitlesex p {
  font-size: 1.6rem;
}
.mainproductTitlesex p span {
  font-weight: 600;
}
.promodalbutton {
  border-radius: 0.3rem;
  background-color: var(--colorGreen);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  transition: all 300ms ease;
}
.promodalbutton:hover {
  background-color: var(--colorOrange);
  color: #fff;
}
#add2cart {
  background-color: var(--colorOrange);
  color: #fff;
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  transition: all 300ms ease;
}
#add2cart:hover {
  background-color: var(--colorGreen);
  color: #fff;
}
#add2cart:disabled {
  background-color: #ccc; /* Gri arka plan */
  color: #666; /* Açık koyu metin rengi */
  cursor: not-allowed; /* İmleç değişikliği */
  opacity: 0.7; /* Biraz şeffaflık */
}
.commentinfotext {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  width: 100%;
}
.commentinfotext p {
  font-size: 1.5rem;
}
.commentLinks {
  color: #fff;
  background-color: var(--colorOrange);
  font-size: 1.5rem;
  margin-top: 1rem;
  padding: 1rem 2rem;
  transition: all 300ms ease;
  display: inline-block;
  border-radius: 0.3rem;
}
.commentLinks:hover {
  background-color: var(--colorGreen);
  color: #fff;
}
.commentinfotext ul {
  margin-top: 1rem;
}
.commentinfotext ul li {
  padding: 0.5rem 0;
}
.commentinfotext ul li a {
  color: var(--textColor);
  font-size: 1.5rem;
  transition: color 300ms ease;
}
.commentinfotext ul li:hover a {
  color: var(--colorGreen);
}
.formcontainer {
  width: 100%;
  border-radius: 1rem;
  background-color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media (min-width: 768px) {
  .formcontainer {
    width: 55rem;
    padding: 5rem;
  }
}
.formcontainertitle {
  margin-bottom: 2rem;
}
.formcontainertitle h2 {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .formcontainertitle h2 {
    font-size: 2rem;
  }
}
.formcontainer .form-control {
  background-color: #f1f1f1;
}
.formbutton {
  background-color: var(--colorGreen);
  color: #fff;
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  transition: all 300ms ease;
  margin-top: 1rem;
}
.formbutton:hover {
  background-color: var(--colorOrange);
  color: #fff;
}
.usermenubadge {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.usermenubadgecircle {
  width: 4rem;
  height: 4rem;
  background-color: var(--colorGreen);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.usermenubadgecircle p {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.usermenubadge .content {
  width: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
}
.usermenubadge .content p {
  font-size: 1.3rem;
  font-weight: 500;
}
.usermenubadge .content span {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--colorOrange);
}
.userbadgedropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
  width: 22rem;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  border: 0.1rem solid #eaeaea;
  margin-top: 1rem;
}
.userbadgedropdown a {
  font-size: 1.4rem !important;
  padding: 1rem;
  width: 100%;
  border-radius: 0.3rem;
}
.userbadgedropdown a:hover {
  background-color: #eaeaea;
  color: var(--textColor);
}
.userbadgedropdown a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.userbadgedropdown a::after {
  display: none;
}
.opndrop {
  display: flex !important;
}
.formtext {
  font-size: 1.5rem;
}
.formtext a {
  color: var(--colorOrange);
  text-decoration: underline;
  font-weight: 500;
  transition: all 300ms ease;
}
.formtext a:hover {
  color: var(--colorGreen);
}
.fpass {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--colorGreen);
  transition: all 300ms ease;
}
.fpass {
  color: var(--colorOrange);
}
.cartDesc {
  padding: 2rem;
  border-radius: 1rem;
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .cartDesc {
    padding: 5rem;
  }
}
@media (min-width: 992px) {
  .cartDesc {
    margin-top: 0;
    padding: 2rem;
  }
}
.cartDesc h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .cartDesc h3 {
    font-size: 2rem;
  }
}
.cartDesc ul li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.5rem 0;
}
.cartDesc ul li:not(:last-child) {
  margin-bottom: 1rem;
  border-bottom: 0.1rem solid #eaeaea;
  padding-bottom: 1rem;
}
.cartDesc ul li span {
  width: 100%;
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.cartDesc ul li p {
  font-size: 1.6rem;
}
.cartDesc a {
  border-radius: 0.5rem;
  width: 100%;
  display: block;
  padding: 1rem 0;
  text-align: center;
  background-color: var(--colorGreen);
  color: #fff;
  transition: all 300ms ease;
  margin-top: 1rem;
}
.cartDesc a:hover {
  background-color: var(--colorOrange);
  color: #fff;
}
.usermenu {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f1f1f1;
  padding: 2rem;
  border-radius: 0.3rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .usermenu {
    margin-bottom: 0;
  }
}
.usermenu a {
  font-size: 1.5rem;
  color: var(--textColor);
  width: 100%;
  padding: 1rem;
  border-radius: 0.3rem;
  transition: all 300ms ease;
}
@media (min-width: 992px) {
  .usermenu a {
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .usermenu a {
    font-size: 1.4rem;
  }
}
.usermenu a:hover {
  color: #fff;
  background-color: var(--colorGreen);
}
.usermenu a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.usermenu a.active,
.usermenu a.active:hover,
.usermenu a.active:focus {
  background-color: var(--colorOrange) !important;
  color: #fff;
}
.usermenu a i {
  margin-right: 0.5rem;
}
.userpostbox {
  border-radius: 0.3rem;
  padding: 5rem;
  border: 0.1rem solid #f1f1f1;
}
.userpostbox label span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--colorOrange);
}
.userpostbox .form-control {
  background-color: #f1f1f1;
}
.addressboxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  border: 0.1rem solid #f1f1f1;
  transition: all 300ms ease;
  margin-bottom: 2rem;
  border-radius: 0.3rem;
}
.addressboxes:hover {
  background-color: #f1f1f1;
}
.addressboxes h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.addressboxes p {
  font-size: 1.4rem;
  color: var(--textColor);
  flex: 1;
}
.addressboxesbuttons {
  border-top: 0.1rem dashed #f1f1f1;
  padding-top: 1rem;
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.3rem;
  width: 100%;
}
.addressboxesbuttons a,
.addressboxesbuttons button {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.2rem;
  background-color: var(--colorGreen);
  color: #fff;
  display: inline-flex;
  padding: 0;
  transition: all 300ms ease;
  border-radius: 0.3rem;
  align-items: center;
  justify-content: center;
}
.addressboxesbuttons a:hover,
.addressboxesbuttons button:hover {
  background-color: var(--colorOrange);
  color: #fff;
}
.newAddressLink {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: var(--colorGreen);
  transition: color 300ms ease;
  font-weight: 500;
}
.newAddressLink:hover {
  color: var(--colorOrange);
}
.kuponModalButton {
  width: 100%;
  display: block;
  padding: 1rem 0;
  background-color: var(--colorOrange);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 0.3rem;
  margin-top: 1rem;
}
.closetext {
  text-decoration: line-through;
}
@media (min-width: 768px) {
  .changewidth {
    width: 70rem;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .changewidth {
    width: 90rem;
  }
}
.userpostbox h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.formendflex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 1rem;
}
@media (min-width: 576px) {
  .formendflex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    row-gap: 0;
  }
}
#faturaclass {
  display: none;
}
.lastorders {
  padding: 2rem;
  border-radius: 0.3rem;
  border: 0.1rem solid #f1f1f1;
  background-color: #fff;
}
#table {
  width: 100%;
  border-collapse: collapse;
}
#table th,
#table td {
  padding: 1rem;
  font-size: 1.2rem;
  white-space: nowrap;
}
@media (min-width: 576px) {
  #table th,
  #table td {
    font-size: 1.4rem;
  }
}
#table tr:nth-child(2n) {
  background-color: #f1f1f1;
}
#table .centered {
  text-align: center;
}
.tablescroll {
  width: 100%;
  overflow-x: auto;
}
.orderinfolink {
  border-radius: 0.3rem;
  padding: 0.5rem 0.8rem;
  background-color: var(--colorOrange);
  color: #fff;
  transition: all 300ms ease;
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}
.orderinfolink i {
  font-size: 1.3rem;
}
.orderinfolink:hover {
  color: #fff;
  background-color: var(--colorGreen);
}
.orderuserinfo {
  padding: 2rem 0;
}
.orderuserinfo h3 {
  font-size: 1.6rem;
  font-weight: 500;
  background-color: var(--colorGreen);
  color: #fff;
  border-radius: 0.3rem;
  margin-bottom: 1rem;
  padding: 1rem;
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.4rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  z-index: 10000;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
  }
  
  .lightbox-close {
    width: 4rem;
    height: 4rem;
    font-size: 2.5rem;
    top: 1rem;
    right: 1rem;
  }
  
  .lightbox-counter {
    bottom: 1rem;
    font-size: 1.2rem;
  }
}

/* Modern E-commerce Product Page Styles */
.product-gallery {
  margin-bottom: 2rem;
}

.main-image-container {
  margin-bottom: 1rem;
}

.main-image {
  width: 100%;
  height: 40rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.thumbnail-images {
  margin-top: 1rem;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.thumbnail {
  width: 100%;
  height: 8rem;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover {
  border-color: var(--colorOrange);
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.thumbnail.active {
  border-color: var(--colorOrange);
  box-shadow: 0 0.5rem 1.5rem rgba(255, 107, 0, 0.3);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.product-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.product-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-label {
  font-size: 1.4rem;
  color: #666;
  font-weight: 500;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--colorOrange);
}

.product-actions {
  margin-bottom: 2rem;
}

.btn-primary {
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--colorOrange) 0%, var(--colorOrange2) 100%);
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
  box-shadow: 0 0.5rem 1.5rem rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1rem 2rem rgba(255, 107, 0, 0.4);
  color: #fff;
  text-decoration: none;
}

.product-description {
  margin-bottom: 2rem;
}

.description-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--textColor);
  margin-bottom: 1rem;
}

.description-content {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
}

.contact-info {
  margin-top: 2rem;
}

.contact-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e9ecef;
}

.contact-card h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--textColor);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-card p {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-radius: 0.8rem;
  color: var(--textColor);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.contact-link:hover {
  background: var(--colorOrange);
  color: #fff;
  transform: translateX(0.5rem);
  text-decoration: none;
}

.product-sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.sidebar-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--textColor);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

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

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}

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

.benefits-list li i {
  color: var(--colorGreen);
  font-size: 1.6rem;
}

/* Related Products Section */
.related-products-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.6rem;
  color: #666;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 20rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-details {
  padding: 2rem;
}

.product-name {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-name a {
  color: var(--textColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-name a:hover {
  color: var(--colorOrange);
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--colorOrange);
}

.price-note {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-sidebar {
    position: static;
    margin-top: 2rem;
  }
  
  .related-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
}

/* ===== FEATURED PRODUCTS SECTION ===== */

.featured-products-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.featured-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.featured-section-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--colorGreen) 0%, var(--colorOrange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-section-subtitle {
  font-size: 1.6rem;
  color: #666;
  font-weight: 400;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.featured-product-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.featured-product-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}

.featured-product-image {
  position: relative;
  width: 100%;
  height: 22rem;
  overflow: hidden;
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-product-card:hover .featured-product-image img {
  transform: scale(1.1);
}

.featured-product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--colorOrange) 0%, #ff6b35 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 2;
}

.featured-product-info {
  padding: 2rem;
}

.featured-product-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.featured-product-title a {
  color: var(--textColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-product-title a:hover {
  color: var(--colorOrange);
}

.featured-product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.featured-stars {
  color: #ffd700;
  font-size: 1.4rem;
}

.featured-rating-text {
  font-size: 1.3rem;
  color: #666;
  font-weight: 500;
}

.featured-product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--colorOrange);
  margin-bottom: 1.5rem;
}

.featured-product-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.featured-product-btn:hover {
  background: linear-gradient(135deg, #1a6b7a 0%, var(--colorGreen) 100%);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(26, 107, 122, 0.3);
}

.featured-loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  grid-column: 1 / -1;
}

.featured-spinner {
  width: 4rem;
  height: 4rem;
  border: 0.4rem solid #f3f3f3;
  border-top: 0.4rem solid var(--colorGreen);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.featured-loading-spinner p {
  font-size: 1.6rem;
  color: #666;
  margin: 0;
}

.featured-no-products,
.featured-error-message {
  text-align: center;
  padding: 4rem;
  font-size: 1.6rem;
  color: #666;
  grid-column: 1 / -1;
}

.featured-error-message {
  color: #e74c3c;
}

/* Responsive Design for Featured Products */
@media (max-width: 1200px) {
  .featured-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .featured-products-section {
    padding: 4rem 0;
  }
  
  .featured-section-title {
    font-size: 2.4rem;
  }
  
  .featured-section-subtitle {
    font-size: 1.4rem;
  }
  
  .featured-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 1.5rem;
  }
  
  .featured-product-image {
    height: 18rem;
  }
  
  .featured-product-info {
    padding: 1.5rem;
  }
  
  .featured-product-title {
    font-size: 1.6rem;
  }
  
  .featured-product-price {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .featured-product-image {
    height: 16rem;
  }
  
  .featured-product-info {
    padding: 1rem;
  }
  
  .featured-product-title {
    font-size: 1.4rem;
  }
  
  .featured-product-price {
    font-size: 1.6rem;
  }
}

/* ===== RANDOM PRODUCTS SECTION (Legacy - keeping for backward compatibility) ===== */

.random-products-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--colorGreen) 0%, var(--colorOrange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.6rem;
  color: #666;
  font-weight: 400;
}

.random-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.random-products-grid .product-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.random-products-grid .product-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}

.random-products-grid .product-image {
  position: relative;
  width: 100%;
  height: 22rem;
  overflow: hidden;
}

.random-products-grid .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.random-products-grid .product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--colorOrange) 0%, #ff6b35 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 2;
}

.product-info {
  padding: 2rem;
}

.product-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-title a {
  color: var(--textColor);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: var(--colorOrange);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #ffd700;
  font-size: 1.4rem;
}

.rating-text {
  font-size: 1.3rem;
  color: #666;
  font-weight: 500;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--colorOrange);
  margin-bottom: 1.5rem;
}

.product-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.product-btn:hover {
  background: linear-gradient(135deg, #1a6b7a 0%, var(--colorGreen) 100%);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(26, 107, 122, 0.3);
}

.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  grid-column: 1 / -1;
}

.spinner {
  width: 4rem;
  height: 4rem;
  border: 0.4rem solid #f3f3f3;
  border-top: 0.4rem solid var(--colorGreen);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

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

.loading-spinner p {
  font-size: 1.6rem;
  color: #666;
  margin: 0;
}

.no-products,
.error-message {
  text-align: center;
  padding: 4rem;
  font-size: 1.6rem;
  color: #666;
  grid-column: 1 / -1;
}

.error-message {
  color: #e74c3c;
}

/* Responsive Design for Random Products */
@media (max-width: 1200px) {
  .random-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .random-products-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .section-subtitle {
    font-size: 1.4rem;
  }
  
  .random-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 1.5rem;
  }
  
  .random-products-grid .product-image {
    height: 18rem;
  }
  
  .product-info {
    padding: 1.5rem;
  }
  
  .product-title {
    font-size: 1.6rem;
  }
  
  .product-price {
    font-size: 1.8rem;
  }
}

/* ===== NEW HOMEPAGE STYLES ===== */

/* Hero Features Section */
.hero-features {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  max-width: 120rem;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.4rem;
  background: linear-gradient(90deg, var(--colorOrange), var(--colorOrange2));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon img {
  width: 4rem;
  height: 4rem;
  filter: brightness(0) invert(1);
}

.feature-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 1rem;
}

.feature-content p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
}

/* Categories Section */
.categories-section {
  padding: 8rem 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--textColor);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.4rem;
  background: linear-gradient(90deg, var(--colorOrange), var(--colorOrange2));
  border-radius: 0.2rem;
}

.section-header p {
  font-size: 1.8rem;
  color: #666;
  max-width: 60rem;
  margin: 0 auto;
  line-height: 1.6;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 3rem;
  max-width: 120rem;
  margin: 0 auto;
}

.category-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.category-image {
  position: relative;
  overflow: hidden;
  height: 20rem;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.explore-btn {
  background: var(--colorOrange);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2.5rem;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: var(--colorOrange2);
  transform: scale(1.05);
}

.category-content {
  padding: 2rem;
}

.category-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.category-content h3 a {
  color: var(--textColor);
  transition: color 0.3s ease;
}

.category-content h3 a:hover {
  color: var(--colorOrange);
}

/* Testimonials Section */
.testimonials-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  max-width: 120rem;
  margin: 0 auto;
}

.testimonials-info {
  position: sticky;
  top: 2rem;
}

.testimonials-header h2 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--textColor);
  margin-bottom: 1.5rem;
}

.testimonials-header p {
  font-size: 1.8rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.08);
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--colorOrange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.3rem;
  color: #666;
  font-weight: 500;
}

.view-all-btn {
  display: inline-block;
  background: var(--colorOrange);
  color: #fff;
  padding: 1.5rem 3rem;
  border-radius: 2.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.view-all-btn:hover {
  background: var(--colorOrange2);
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 1.5rem rgba(255, 111, 60, 0.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.testimonial-card {
  background: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 4rem;
  color: rgba(255, 111, 60, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 111, 60, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.user-avatar {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
}

.user-info h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 0.5rem;
}

.rating {
  display: flex;
  gap: 0.3rem;
}

.star-filled {
  color: #ffc107;
}

.star-empty {
  color: #e0e0e0;
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  word-wrap: break-word;
}

.testimonial-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #999;
  font-size: 1.3rem;
}

/* Testimonials grid responsive adjustments */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

/* Call to Action Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.cta-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--colorOrange);
  color: #fff;
  padding: 1.5rem 3rem;
  border-radius: 2.5rem;
  font-weight: 600;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--colorOrange2);
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 1.5rem rgba(255, 111, 60, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 1.5rem 3rem;
  border: 0.2rem solid #fff;
  border-radius: 2.5rem;
  font-weight: 600;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--colorGreen);
  transform: translateY(-0.2rem);
}

/* CTA Button Styles */
.cta-btn-primary {
  background: var(--colorOrange);
  color: #fff;
  padding: 1.5rem 3rem;
  border-radius: 2.5rem;
  font-weight: 600;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.cta-btn-primary:hover {
  background: var(--colorOrange2);
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 1.5rem rgba(255, 111, 60, 0.3);
  color: #fff;
  text-decoration: none;
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  padding: 1.5rem 3rem;
  border: 0.2rem solid #fff;
  border-radius: 2.5rem;
  font-weight: 600;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.cta-btn-secondary:hover {
  background: #fff;
  color: var(--colorGreen);
  transform: translateY(-0.2rem);
  text-decoration: none;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .testimonials-info {
    position: static;
  }
  
  .testimonials-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-content h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .hero-features {
    padding: 4rem 0;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-icon {
    width: 6rem;
    height: 6rem;
  }
  
  .feature-icon img {
    width: 3rem;
    height: 3rem;
  }
  
  .categories-section {
    padding: 6rem 0;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
  }
  
  .testimonials-section {
    padding: 6rem 0;
  }
  
  .testimonials-header h2 {
    font-size: 2.8rem;
  }
  
  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .cta-section {
    padding: 6rem 0;
  }
  
  .cta-content h2 {
    font-size: 2.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 25rem;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 2.4rem;
  }
  
  .testimonials-header h2 {
    font-size: 2.4rem;
  }
  
  .testimonials-grid {
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-header {
    gap: 1rem;
  }
  
  .user-avatar {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 2.4rem;
  }
  
  .cta-content p {
    font-size: 1.6rem;
  }
}

/* ===== ANIMATIONS AND EFFECTS ===== */

/* Reveal animations */
.reveal-section {
  opacity: 0;
  transform: translateY(5rem);
  transition: all 0.8s ease;
}

.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Element animations */
.animate-element {
  opacity: 0;
  transform: translateY(3rem);
  transition: all 0.6s ease;
}

.animate-element.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation for feature icons */
.feature-icon.pulse {
  animation: pulse 0.6s ease-in-out;
}

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

/* Button hover effects */
.btn-hover {
  transform: translateY(-0.3rem) !important;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.2) !important;
}

/* Category overlay animation */
.category-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 6rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  background: var(--colorOrange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 0.5rem 1.5rem rgba(255, 111, 60, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--colorOrange2);
  transform: translateY(-0.3rem);
  box-shadow: 0 0.8rem 2rem rgba(255, 111, 60, 0.4);
}

/* Loading animation improvements */
.loader {
  background: linear-gradient(135deg, var(--colorGreen) 0%, var(--colorOrange) 100%);
}

.spinners::before {
  border-color: #fff;
}

/* Enhanced hover effects */
.feature-card:hover .feature-content h3 {
  color: var(--colorOrange);
}

.testimonial-card:hover .user-avatar {
  transform: scale(1.1);
}

/* Gradient text effect */
.section-header h2 {
  background: linear-gradient(135deg, var(--colorGreen), var(--colorOrange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating animation for CTA section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2rem) rotate(180deg);
  }
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 2rem;
    right: 2rem;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.8rem;
  }
  
  .feature-card:hover {
    transform: translateY(-0.3rem);
  }
  
  .category-card:hover {
    transform: translateY(-0.3rem);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal-section,
  .animate-element {
    opacity: 1;
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .feature-card,
  .category-card,
  .testimonial-card {
    border: 0.2rem solid var(--textColor);
  }
  
  .btn-primary,
  .btn-secondary,
  .view-all-btn {
    border: 0.2rem solid currentColor;
  }
}

/* ===== MODERN CART STYLES ===== */

.cart-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 60vh;
}

.cart-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cart-header h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cart-header h1 i {
  color: var(--colorOrange);
  font-size: 3.6rem;
}

.cart-subtitle {
  font-size: 1.8rem;
  color: #64748b;
  font-weight: 400;
}

/* Cart Layout */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .cart-layout {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

/* Cart Items Container */
.cart-items-container {
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.cart-items-header {
  padding: 2.4rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
}

.cart-items-header h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.cart-items {
  padding: 0;
}

/* Cart Item */
.cart-item {
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
}

.cart-item:hover {
  background: #f8fafc;
}

.cart-item:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .cart-item {
    flex-direction: row;
    align-items: center;
    gap: 2.4rem;
  }
}

.cart-item-image {
  flex-shrink: 0;
  width: 12rem;
  height: 12rem;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.cart-item:hover .cart-item-image img {
  transform: scale(1.05);
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .cart-item-details {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

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

.cart-item-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--textColor);
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.cart-item-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.variant-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

.variant-tag strong {
  color: var(--colorGreen);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cart-item-actions {
    flex-direction: row;
    align-items: center;
    gap: 2.4rem;
  }
}

/* Quantity Controls */
.quantity-controls {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.qty-btn {
  width: 4rem;
  height: 4rem;
  background: #f8fafc;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #64748b;
}

.qty-btn:hover {
  background: var(--colorGreen);
  color: #fff;
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-btn i {
  font-size: 1.6rem;
}

.cart-item-qty {
  width: 6rem;
  height: 4rem;
  border: none;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--textColor);
  background: #fff;
}

.cart-item-qty:focus {
  outline: none;
  background: #f8fafc;
}

/* Price Display */
.cart-item-price,
.cart-item-total {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.price-label,
.total-label {
  font-size: 1.3rem;
  color: #64748b;
  font-weight: 500;
}

.price-amount {
  font-size: 1.6rem;
  color: #64748b;
  font-weight: 500;
}

.total-amount {
  font-size: 2rem;
  color: var(--colorGreen);
  font-weight: 700;
}

/* Remove Button */
.remove-cart-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.6rem;
  background: #fee2e2;
  color: #dc2626;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.remove-cart-item:hover {
  background: #fecaca;
  transform: translateY(-1px);
}

.remove-cart-item i {
  font-size: 1.6rem;
}

/* Cart Summary */
.cart-summary {
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: sticky;
  top: 2rem;
}

.cart-summary-header {
  padding: 2.4rem;
  background: linear-gradient(135deg, var(--colorOrange) 0%, var(--colorOrange2) 100%);
  color: #fff;
}

.cart-summary-header h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-summary-content {
  padding: 2.4rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  font-size: 1.6rem;
}

.summary-item:not(:last-child) {
  border-bottom: 1px solid #f1f5f9;
}

.summary-item span:first-child {
  color: #64748b;
  font-weight: 500;
}

.summary-value {
  font-weight: 600;
  color: var(--textColor);
}

.coupon-applied .summary-value {
  color: var(--colorGreen);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.discount-badge {
  background: var(--colorGreen);
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 1.6rem 0;
}

.total-item {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.6rem 0;
}

.total-price {
  color: var(--colorGreen);
  font-size: 2.2rem;
}

.original-price {
  text-decoration: line-through;
  color: #94a3b8;
}

.discount-amount {
  color: #dc2626;
  font-weight: 600;
}

.cart-summary-actions {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.coupon-btn,
.checkout-btn,
.continue-shopping {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem 2.4rem;
  border-radius: 1.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.coupon-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
}

.coupon-btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.checkout-btn {
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
}

.checkout-btn:hover {
  background: linear-gradient(135deg, #1a6b7a 0%, #155263 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 82, 99, 0.3);
}

.continue-shopping {
  background: #f8fafc;
  color: #64748b;
  border: 2px solid #e2e8f0;
}

.continue-shopping:hover {
  background: #f1f5f9;
  color: var(--textColor);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 6rem 2rem;
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.empty-cart-icon {
  width: 12rem;
  height: 12rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
}

.empty-cart-icon i {
  font-size: 4.8rem;
  color: #94a3b8;
}

.empty-cart h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--textColor);
  margin-bottom: 1.6rem;
}

.empty-cart p {
  font-size: 1.8rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.start-shopping-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 3.2rem;
  background: linear-gradient(135deg, var(--colorOrange) 0%, var(--colorOrange2) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 1.2rem;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.start-shopping-btn:hover {
  background: linear-gradient(135deg, var(--colorOrange2) 0%, var(--colorOrange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 111, 60, 0.3);
  color: #fff;
}

/* Coupon Modal */
#couponModal .modal-content {
  border-radius: 1.6rem;
  border: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#couponModal .modal-header {
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
  border-radius: 1.6rem 1.6rem 0 0;
  border-bottom: none;
}

#couponModal .modal-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

#couponModal .modal-body {
  padding: 3rem;
}

#couponModal .form-control {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 0.8rem;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

#couponModal .form-control:focus {
  background: #fff;
  border-color: var(--colorGreen);
  box-shadow: 0 0 0 3px rgba(21, 82, 99, 0.1);
}

#couponModal .formbutton {
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

#couponModal .formbutton:hover {
  background: linear-gradient(135deg, #1a6b7a 0%, #155263 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(21, 82, 99, 0.3);
}

/* Responsive Design */
@media (max-width: 767px) {
  .cart-header h1 {
    font-size: 2.4rem;
  }
  
  .cart-header h1 i {
    font-size: 2.8rem;
  }
  
  .cart-subtitle {
    font-size: 1.6rem;
  }
  
  .cart-item {
    padding: 1.6rem;
  }
  
  .cart-item-image {
    width: 10rem;
    height: 10rem;
  }
  
  .cart-item-title {
    font-size: 1.6rem;
  }
  
  .cart-summary-actions {
    padding: 1.6rem;
  }
  
  .coupon-btn,
  .checkout-btn,
  .continue-shopping {
    padding: 1.4rem 2rem;
    font-size: 1.4rem;
  }
  
  .empty-cart {
    padding: 4rem 1.6rem;
  }
  
  .empty-cart-icon {
    width: 8rem;
    height: 8rem;
  }
  
  .empty-cart-icon i {
    font-size: 3.2rem;
  }
  
  .empty-cart h3 {
    font-size: 2rem;
  }
  
  .empty-cart p {
    font-size: 1.6rem;
  }
  
  .start-shopping-btn {
    padding: 1.4rem 2.4rem;
    font-size: 1.6rem;
  }
}

/* Animation for cart items */
.cart-item {
  animation: slideInUp 0.5s ease-out;
}

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

/* Loading states */
.cart-item.loading {
  opacity: 0.6;
  pointer-events: none;
}

.cart-item.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--colorGreen);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

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

/* Cart Notifications */
.cart-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.6rem 2.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  border-left: 4px solid;
}

.cart-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.cart-notification.success {
  border-left-color: #10b981;
  color: #065f46;
}

.cart-notification.success i {
  color: #10b981;
}

.cart-notification.error {
  border-left-color: #ef4444;
  color: #991b1b;
}

.cart-notification.error i {
  color: #ef4444;
}

.cart-notification i {
  font-size: 2rem;
}

/* Enhanced hover effects for cart items */
.cart-item:hover .cart-item-image {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cart-item:hover .cart-item-title {
  color: var(--colorGreen);
}

/* Improved button states */
.qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qty-btn:disabled:hover {
  background: #f8fafc;
  color: #64748b;
  transform: none;
}

/* Focus states for accessibility */
.cart-item-qty:focus,
.qty-btn:focus,
.remove-cart-item:focus,
.coupon-btn:focus,
.checkout-btn:focus,
.continue-shopping:focus {
  outline: 2px solid var(--colorGreen);
  outline-offset: 2px;
}

/* Loading animation for buttons */
.formbutton:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .cart-notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    transform: translateY(-100%);
  }
  
  .cart-notification.show {
    transform: translateY(0);
  }
  
  .cart-item-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }
  
  .quantity-controls {
    align-self: center;
  }
  
  .cart-item-price,
  .cart-item-total {
    align-items: center;
    text-align: center;
  }
}

/* ===== MODERN CHECKOUT STYLES ===== */

/* Checkout Progress */
.checkout-progress {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  flex: 1;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.step.completed:not(:last-child)::after {
  background: var(--colorGreen);
}

.step-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 2rem;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.step.completed .step-icon {
  background: var(--colorGreen);
  border-color: var(--colorGreen);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step.completed .step-icon i {
  color: #fff;
}

.step.active .step-icon {
  background: #fff;
  border-color: var(--colorGreen);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.step.active .step-icon i {
  color: var(--colorGreen);
}

.step-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: #64748b;
  text-align: center;
  transition: all 0.3s ease;
}

.step.completed .step-text,
.step.active .step-text {
  color: var(--colorGreen);
  font-weight: 600;
}

/* Breadcrumb */
.breadcrumb-section {
  background: #fff;
  padding: 2rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.breadcrumb-item {
  font-size: 1.4rem;
  color: #64748b;
}

.breadcrumb-item a {
  color: var(--colorGreen);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #059669;
}

.breadcrumb-item.active {
  color: #374151;
  font-weight: 500;
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin-left: 1rem;
  color: #d1d5db;
}

/* Checkout Section */
.checkout-section {
  padding: 4rem 0;
  background: #f8fafc;
  min-height: 60vh;
}

.checkout-form {
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, var(--colorGreen) 0%, #059669 100%);
  color: #fff;
  padding: 3rem;
  text-align: center;
}

.form-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.form-header p {
  font-size: 1.6rem;
  opacity: 0.9;
  margin: 0;
}

/* Form Cards */
.form-card {
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.form-card:last-child {
  border-bottom: none;
}

.form-card:hover {
  background: #f9fafb;
}

.card-header {
  padding: 2.5rem 3rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.card-header h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-header h3 i {
  color: var(--colorGreen);
  font-size: 2.2rem;
}

.card-body {
  padding: 2rem 3rem 3rem;
}

/* Modern Form Groups */
.form-group {
  margin-bottom: 2.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.8rem;
}

.required {
  color: #ef4444;
  font-weight: 600;
}

/* Input Groups */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1.8rem;
  z-index: 2;
  transition: all 0.3s ease;
}

.form-control {
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 1.2rem;
  font-size: 1.5rem;
  color: #111827;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  outline: none;
  border-color: var(--colorGreen);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-control:focus + .input-icon {
  color: var(--colorGreen);
}

.form-control::placeholder {
  color: #9ca3af;
}

.form-control.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Checkbox Styling */
.form-check {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-check-input {
  width: 2rem;
  height: 2rem;
  border: 2px solid #d1d5db;
  border-radius: 0.4rem;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.form-check-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.form-check-label i {
  color: var(--colorGreen);
  font-size: 1.8rem;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-option {
  position: relative;
}

.payment-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  border-radius: 1.2rem;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.payment-label:hover {
  border-color: var(--colorGreen);
  background: #f0fdf4;
}

.payment-label.active {
  border-color: var(--colorGreen);
  background: #f0fdf4;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.payment-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--colorGreen) 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-icon i {
  font-size: 2.4rem;
  color: #fff;
}

.payment-info {
  flex: 1;
}

.payment-info h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.payment-info p {
  font-size: 1.4rem;
  color: #6b7280;
  margin: 0;
}

.payment-check {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.payment-check i {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}

.payment-label.active .payment-check {
  background: var(--colorGreen);
}

.payment-label.active .payment-check i {
  opacity: 1;
}

/* Order Summary */
.order-summary {
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: sticky;
  top: 2rem;
}

.summary-header {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: #fff;
  padding: 2.5rem;
  text-align: center;
}

.summary-header h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.summary-body {
  padding: 2.5rem;
}

.summary-items {
  margin-bottom: 2rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 1.5rem;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item span:first-child {
  color: #6b7280;
}

.summary-item span:last-child {
  font-weight: 500;
  color: #111827;
}

.summary-item.discount span:last-child {
  color: #ef4444;
  font-weight: 600;
}

.summary-total {
  background: #f9fafb;
  border-radius: 1.2rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111827;
}

.total-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--colorGreen);
}

/* Checkout Button */
.checkout-btn {
  width: 100%;
  padding: 1.8rem 2rem;
  background: linear-gradient(135deg, var(--colorGreen) 0%, #059669 100%);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  margin-bottom: 1.5rem;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.checkout-btn:active {
  transform: translateY(0);
}

.checkout-btn i {
  font-size: 1.8rem;
}

/* Security Info */
.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: #f0fdf4;
  border-radius: 1rem;
  border: 1px solid #bbf7d0;
}

.security-info i {
  color: var(--colorGreen);
  font-size: 1.6rem;
}

.security-info span {
  font-size: 1.3rem;
  color: #065f46;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
  .checkout-section {
    padding: 2rem 0;
  }
  
  .order-summary {
    position: static;
    margin-top: 3rem;
  }
  
  .progress-steps {
    gap: 1rem;
  }
  
  .step-icon {
    width: 4rem;
    height: 4rem;
  }
  
  .step-icon i {
    font-size: 1.6rem;
  }
  
  .step-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .checkout-progress {
    padding: 2rem 0 1.5rem;
  }
  
  .progress-steps {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .form-header {
    padding: 2rem;
  }
  
  .form-header h2 {
    font-size: 2.2rem;
  }
  
  .card-header,
  .card-body {
    padding: 2rem;
  }
  
  .payment-label {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .payment-check {
    align-self: center;
  }
  
  .summary-header,
  .summary-body {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .form-header h2 {
    font-size: 1.8rem;
  }
  
  .card-header h3 {
    font-size: 1.6rem;
  }
  
  .form-control {
    padding: 1.2rem 1.2rem 1.2rem 4rem;
    font-size: 1.4rem;
  }
  
  .input-icon {
    left: 1.2rem;
    font-size: 1.6rem;
  }
  
  .checkout-btn {
    padding: 1.5rem 1.5rem;
    font-size: 1.4rem;
  }
  
  .total-amount {
    font-size: 2rem;
  }
}

/* ===== MODERN LOGIN PAGE STYLES ===== */

.modern-login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem 0;
  display: flex;
  align-items: center;
}

.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 1200px;
}

/* Left Side - Image/Branding */
.login-image-side {
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.login-image-side::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.login-image-content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.login-brand h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-brand p {
  font-size: 1.6rem;
  opacity: 0.9;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.login-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 2.4rem;
  color: #fff;
}

.feature-item span {
  font-size: 1.4rem;
  font-weight: 500;
}

/* Right Side - Login Form */
.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  background: #fff;
}

.login-form-container {
  width: 100%;
  max-width: 40rem;
}

.login-header {
  text-align: center;
  margin-bottom: 3rem;
}

.login-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.login-header p {
  font-size: 1.6rem;
  color: #718096;
  line-height: 1.6;
}

/* Modern Form Styles */
.modern-login-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group-modern label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.input-group-modern {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group-modern i {
  position: absolute;
  left: 1.5rem;
  font-size: 1.8rem;
  color: #a0aec0;
  z-index: 2;
  transition: color 0.3s ease;
}

.form-control-modern {
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  font-size: 1.5rem;
  background: #f7fafc;
  transition: all 0.3s ease;
  color: #2d3748;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--colorGreen);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-control-modern:focus + i {
  color: var(--colorGreen);
}

.form-control-modern.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-control-modern::placeholder {
  color: #a0aec0;
}

.password-toggle {
  position: absolute;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #a0aec0;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
}

.password-toggle:hover {
  color: var(--colorGreen);
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.checkbox-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.4rem;
  color: #4a5568;
}

.checkbox-modern input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 2rem;
  height: 2rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-modern input[type="checkbox"]:checked + .checkmark {
  background: var(--colorGreen);
  border-color: var(--colorGreen);
}

.checkbox-modern input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.forgot-password {
  font-size: 1.4rem;
  color: var(--colorGreen);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #1a6b7a;
  text-decoration: underline;
}

/* Login Button */
.login-button {
  width: 100%;
  padding: 1.6rem;
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
  border: none;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.login-button:active {
  transform: translateY(0);
}

.login-button i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.login-button:hover i {
  transform: translateX(3px);
}

/* Divider */
.login-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e2e8f0;
}

.login-divider span {
  background: #fff;
  padding: 0 2rem;
  color: #718096;
  font-size: 1.4rem;
  font-weight: 500;
}

/* Social Login */
.social-login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  color: #4a5568;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  border-color: #cbd5e0;
  background: #f7fafc;
  transform: translateY(-1px);
}

.social-btn i {
  font-size: 1.8rem;
}

.google-btn:hover {
  border-color: #ea4335;
  color: #ea4335;
}

.facebook-btn:hover {
  border-color: #1877f2;
  color: #1877f2;
}

/* Register Link */
.register-link {
  text-align: center;
  margin-top: 2rem;
}

.register-link p {
  font-size: 1.4rem;
  color: #718096;
}

.register-link a {
  color: var(--colorGreen);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.register-link a:hover {
  color: #1a6b7a;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
  .login-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .login-image-side {
    padding: 3rem 2rem;
  }
  
  .login-brand h1 {
    font-size: 2.8rem;
  }
  
  .login-brand p {
    font-size: 1.4rem;
  }
  
  .login-features {
    gap: 1.5rem;
  }
  
  .feature-item {
    padding: 1.2rem;
  }
  
  .feature-item i {
    font-size: 2rem;
  }
  
  .feature-item span {
    font-size: 1.3rem;
  }
  
  .login-form-side {
    padding: 3rem 2rem;
  }
  
  .login-header h2 {
    font-size: 2.4rem;
  }
  
  .login-header p {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .modern-login-section {
    padding: 1rem 0;
  }
  
  .login-container {
    border-radius: 1rem;
    margin: 0 1rem;
  }
  
  .login-image-side {
    padding: 2rem 1.5rem;
  }
  
  .login-brand h1 {
    font-size: 2.4rem;
  }
  
  .login-brand p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }
  
  .login-features {
    gap: 1rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
  
  .feature-item i {
    font-size: 1.8rem;
  }
  
  .feature-item span {
    font-size: 1.2rem;
  }
  
  .login-form-side {
    padding: 2rem 1.5rem;
  }
  
  .login-header h2 {
    font-size: 2.2rem;
  }
  
  .login-header p {
    font-size: 1.3rem;
  }
  
  .form-control-modern {
    padding: 1.3rem 1.3rem 1.3rem 4rem;
    font-size: 1.4rem;
  }
  
  .input-group-modern i {
    left: 1.3rem;
    font-size: 1.6rem;
  }
  
  .password-toggle {
    right: 1.3rem;
    font-size: 1.6rem;
  }
  
  .login-button {
    padding: 1.4rem;
    font-size: 1.5rem;
  }
  
  .social-btn {
    padding: 1.2rem;
    font-size: 1.3rem;
  }
  
  .form-options {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .login-container {
    margin: 0 0.5rem;
  }
  
  .login-image-side {
    padding: 1.5rem 1rem;
  }
  
  .login-brand h1 {
    font-size: 2rem;
  }
  
  .login-brand p {
    font-size: 1.2rem;
  }
  
  .login-form-side {
    padding: 1.5rem 1rem;
  }
  
  .login-header h2 {
    font-size: 2rem;
  }
  
  .login-header p {
    font-size: 1.2rem;
  }
  
  .form-control-modern {
    padding: 1.2rem 1.2rem 1.2rem 3.5rem;
    font-size: 1.3rem;
  }
  
  .input-group-modern i {
    left: 1.2rem;
    font-size: 1.5rem;
  }
  
  .password-toggle {
    right: 1.2rem;
    font-size: 1.5rem;
  }
  
  .login-button {
    padding: 1.3rem;
    font-size: 1.4rem;
  }
  
  .social-btn {
    padding: 1.1rem;
    font-size: 1.2rem;
  }
}

/* ===== ENHANCED HOMEPAGE STYLES ===== */

/* Hero Features Section - Enhanced */
.hero-features {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero-features::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,111,60,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: #fff;
  padding: 4rem 3rem;
  border-radius: 2rem;
  text-align: center;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: linear-gradient(90deg, var(--colorOrange), var(--colorOrange2), var(--colorGreen));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 111, 60, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-1rem) scale(1.02);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 10rem;
  height: 10rem;
  margin: 0 auto 3rem;
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 1rem 3rem rgba(255, 111, 60, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 1.5rem 4rem rgba(255, 111, 60, 0.4);
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -0.5rem;
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2), var(--colorGreen));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
  animation: rotate 3s linear infinite;
}

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

.feature-icon img {
  width: 5rem;
  height: 5rem;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon img {
  transform: scale(1.1);
}

.feature-content h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 {
  color: var(--colorOrange);
}

.feature-content p {
  font-size: 1.6rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Categories Section - Enhanced */
.categories-section {
  padding: 10rem 0;
  background: #fff;
  position: relative;
}

.categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.1rem;
  background: linear-gradient(90deg, transparent, var(--colorOrange), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}

.section-header h2 {
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--textColor);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-header h2::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 0.5rem;
  background: linear-gradient(90deg, var(--colorOrange), var(--colorOrange2));
  border-radius: 0.3rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.3rem;
  background: var(--colorGreen);
  border-radius: 0.2rem;
}

.section-header p {
  font-size: 2rem;
  color: #64748b;
  max-width: 70rem;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 3.5rem;
  max-width: 120rem;
  margin: 0 auto;
}

.category-card {
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  transform: translateY(-1rem) scale(1.02);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.15);
}

.category-image {
  position: relative;
  overflow: hidden;
  height: 24rem;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.15);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 111, 60, 0.8), rgba(255, 154, 60, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(0.5rem);
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.explore-btn {
  background: #fff;
  color: var(--colorOrange);
  padding: 1.5rem 3rem;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  transform: translateY(2rem);
  opacity: 0;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.category-card:hover .explore-btn {
  transform: translateY(0);
  opacity: 1;
}

.explore-btn:hover {
  background: var(--colorGreen);
  color: #fff;
  transform: translateY(-0.3rem);
  box-shadow: 0 1.5rem 4rem rgba(21, 82, 99, 0.3);
}

.category-content {
  padding: 3rem;
  text-align: center;
}

.category-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
}

.category-content h3 a {
  color: var(--textColor);
  transition: color 0.3s ease;
}

.category-content h3 a:hover {
  color: var(--colorOrange);
}

/* Testimonials Section - Enhanced */
.testimonials-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::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="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(21,82,99,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
  pointer-events: none;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-info {
  position: sticky;
  top: 2rem;
}

.testimonials-header h2 {
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--textColor);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.testimonials-header p {
  font-size: 2rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.stat-item {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.12);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--colorOrange);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.5rem;
  color: #64748b;
  font-weight: 600;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  color: #fff;
  padding: 2rem 4rem;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 1rem 3rem rgba(255, 111, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.view-all-btn::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 ease;
}

.view-all-btn:hover::before {
  left: 100%;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, var(--colorOrange2), var(--colorOrange));
  transform: translateY(-0.3rem);
  box-shadow: 0 1.5rem 4rem rgba(255, 111, 60, 0.4);
  color: #fff;
  text-decoration: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 3rem;
  padding: 2rem 0;
}

.testimonial-card {
  background: #fff;
  padding: 4rem;
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 6rem;
  color: rgba(255, 111, 60, 0.1);
  font-family: serif;
  line-height: 1;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--colorOrange), var(--colorOrange2));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 111, 60, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.user-avatar {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.5rem 1.5rem rgba(255, 111, 60, 0.3);
}

.testimonial-card:hover .user-avatar {
  transform: scale(1.1);
  box-shadow: 0 1rem 2.5rem rgba(255, 111, 60, 0.4);
}

.user-info h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 0.8rem;
}

.rating {
  display: flex;
  gap: 0.4rem;
}

.star-filled {
  color: #fbbf24;
  font-size: 1.8rem;
}

.star-empty {
  color: #e5e7eb;
  font-size: 1.8rem;
}

.testimonial-content {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 1.7rem;
  color: #4b5563;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  word-wrap: break-word;
}

.testimonial-date {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #9ca3af;
  font-size: 1.4rem;
  font-weight: 500;
}

/* Call to Action Section - Enhanced */
.cta-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--colorGreen) 0%, #1a6b7a 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::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="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q25 0 50 10 T100 10" stroke="rgba(255,255,255,0.1)" fill="none" stroke-width="2"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 2.2rem;
  margin-bottom: 4rem;
  opacity: 0.95;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  color: #fff;
  padding: 2rem 4rem;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 1.8rem;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 1rem 3rem rgba(255, 111, 60, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary::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 ease;
}

.cta-btn-primary:hover::before {
  left: 100%;
}

.cta-btn-primary:hover {
  background: linear-gradient(135deg, var(--colorOrange2), var(--colorOrange));
  transform: translateY(-0.3rem);
  box-shadow: 0 1.5rem 4rem rgba(255, 111, 60, 0.5);
  color: #fff;
  text-decoration: none;
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  padding: 2rem 4rem;
  border: 0.3rem solid #fff;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 1.8rem;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-btn-secondary:hover::before {
  left: 0;
}

.cta-btn-secondary:hover {
  color: var(--colorGreen);
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 3rem rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

/* Scroll to Top Button - Enhanced */
.scroll-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  box-shadow: 0 1rem 3rem rgba(255, 111, 60, 0.4);
  border: 0.2rem solid rgba(255, 255, 255, 0.2);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--colorOrange2), var(--colorOrange));
  transform: translateY(-0.5rem) scale(1.1);
  box-shadow: 0 1.5rem 4rem rgba(255, 111, 60, 0.5);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .testimonials-info {
    position: static;
  }
  
  .testimonials-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-content h2 {
    font-size: 4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  }
}

@media (max-width: 992px) {
  .hero-features {
    padding: 6rem 0;
  }
  
  .categories-section {
    padding: 8rem 0;
  }
  
  .testimonials-section {
    padding: 8rem 0;
  }
  
  .cta-section {
    padding: 8rem 0;
  }
  
  .section-header h2 {
    font-size: 3.2rem;
  }
  
  .testimonials-header h2 {
    font-size: 3.2rem;
  }
  
  .cta-content h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-features {
    padding: 4rem 0;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .feature-card {
    padding: 3rem 2rem;
  }
  
  .feature-icon {
    width: 8rem;
    height: 8rem;
  }
  
  .feature-icon img {
    width: 4rem;
    height: 4rem;
  }
  
  .categories-section {
    padding: 6rem 0;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
  }
  
  .section-header p {
    font-size: 1.8rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
  }
  
  .testimonials-section {
    padding: 6rem 0;
  }
  
  .testimonials-header h2 {
    font-size: 2.8rem;
  }
  
  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    padding: 3rem;
  }
  
  .cta-section {
    padding: 6rem 0;
  }
  
  .cta-content h2 {
    font-size: 3rem;
  }
  
  .cta-content p {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 30rem;
    justify-content: center;
  }
  
  .scroll-to-top {
    bottom: 2rem;
    right: 2rem;
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2.5rem 1.5rem;
  }
  
  .feature-content h3 {
    font-size: 2rem;
  }
  
  .feature-content p {
    font-size: 1.5rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-image {
    height: 20rem;
  }
  
  .category-content {
    padding: 2rem;
  }
  
  .category-content h3 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 2.4rem;
  }
  
  .section-header p {
    font-size: 1.6rem;
  }
  
  .testimonials-header h2 {
    font-size: 2.4rem;
  }
  
  .testimonials-header p {
    font-size: 1.6rem;
  }
  
  .testimonials-grid {
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-header {
    gap: 1.5rem;
  }
  
  .user-avatar {
    width: 5rem;
    height: 5rem;
    font-size: 1.8rem;
  }
  
  .testimonial-content p {
    font-size: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 2.4rem;
  }
  
  .cta-content p {
    font-size: 1.6rem;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
  }
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-card {
  animation: fadeInUp 0.8s ease-out;
}

.feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.3s;
}

.category-card {
  animation: fadeInUp 0.8s ease-out;
}

.testimonial-card {
  animation: fadeInUp 0.8s ease-out;
}

/* Enhanced hover effects */
.feature-card:hover .feature-content h3 {
  color: var(--colorOrange);
}

.testimonial-card:hover .user-avatar {
  transform: scale(1.1);
}

/* Gradient text effects */
.section-header h2 {
  background: linear-gradient(135deg, var(--colorGreen), var(--colorOrange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating animation for CTA section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3rem) rotate(180deg);
  }
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.8rem;
  }
  
  .feature-card:hover {
    transform: translateY(-0.5rem);
  }
  
  .category-card:hover {
    transform: translateY(-0.5rem);
  }
}

/* ===== ADDITIONAL ENHANCEMENTS ===== */

/* Glass morphism effect for cards */
.glass-effect {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Gradient borders */
.gradient-border {
  position: relative;
  background: #fff;
  border-radius: 2rem;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--colorOrange), var(--colorOrange2), var(--colorGreen), var(--colorOrange));
  border-radius: 2rem;
  z-index: -1;
  animation: borderRotate 3s linear infinite;
}

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

/* Floating elements */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Shimmer effect */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Enhanced button states */
.btn-enhanced {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-enhanced::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-enhanced:hover::before {
  width: 300px;
  height: 300px;
}

/* Particle background effect */
.particle-bg {
  position: relative;
  overflow: hidden;
}

.particle-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 111, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(21, 82, 99, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 154, 60, 0.1) 0%, transparent 50%);
  animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Enhanced focus states */
.enhanced-focus:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 111, 60, 0.3), 0 0 0 6px rgba(255, 111, 60, 0.1);
  transform: scale(1.02);
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Enhanced hover effects for images */
.image-hover {
  transition: all 0.3s ease;
  position: relative;
}

.image-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 111, 60, 0.2), rgba(21, 82, 99, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-hover:hover::after {
  opacity: 1;
}

.image-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

/* Text gradient effect */
.text-gradient {
  background: linear-gradient(135deg, var(--colorOrange), var(--colorOrange2), var(--colorGreen));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: textGradient 3s ease infinite;
}

@keyframes textGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Enhanced card shadows */
.card-shadow-enhanced {
  box-shadow: 
    0 1rem 3rem rgba(0, 0, 0, 0.1),
    0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-shadow-enhanced:hover {
  box-shadow: 
    0 2rem 5rem rgba(0, 0, 0, 0.15),
    0 1rem 2rem rgba(0, 0, 0, 0.1);
}

/* Responsive typography */
.responsive-text {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.6;
}

.responsive-heading {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.2;
}

/* Enhanced spacing utilities */
.space-y-1 > * + * { margin-top: 1rem; }
.space-y-2 > * + * { margin-top: 2rem; }
.space-y-3 > * + * { margin-top: 3rem; }
.space-y-4 > * + * { margin-top: 4rem; }

.space-x-1 > * + * { margin-left: 1rem; }
.space-x-2 > * + * { margin-left: 2rem; }
.space-x-3 > * + * { margin-left: 3rem; }
.space-x-4 > * + * { margin-left: 4rem; }

/* Enhanced grid layouts */
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.grid-auto-fill {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 2rem;
}

/* Enhanced container */
.container-enhanced {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container-enhanced {
    padding: 0 1rem;
  }
}

/* Enhanced section spacing */
.section-enhanced {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-enhanced {
    padding: 4rem 0;
  }
}

/* Enhanced button group */
.btn-group-enhanced {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .btn-group-enhanced {
    flex-direction: column;
  }
}

/* Enhanced form styles */
.form-enhanced .form-control {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.form-enhanced .form-control:focus {
  background: #fff;
  border-color: var(--colorOrange);
  box-shadow: 0 0 0 3px rgba(255, 111, 60, 0.1);
  transform: translateY(-2px);
}

/* Enhanced modal styles */
.modal-enhanced .modal-content {
  border: none;
  border-radius: 2rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-enhanced .modal-header {
  background: linear-gradient(135deg, var(--colorGreen), #1a6b7a);
  color: #fff;
  border-bottom: none;
  padding: 2rem 3rem;
}

.modal-enhanced .modal-body {
  padding: 3rem;
}

/* Enhanced alert styles */
.alert-enhanced {
  border: none;
  border-radius: 1rem;
  padding: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.alert-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 100%;
  background: currentColor;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border-left-color: #22c55e;
}

.alert-warning {
  background: #fffbeb;
  color: #92400e;
  border-left-color: #f59e0b;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border-left-color: #ef4444;
}

.alert-info {
  background: #eff6ff;
  color: #1e40af;
  border-left-color: #3b82f6;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .feature-card,
  .category-card,
  .testimonial-card {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .feature-card,
  .category-card,
  .testimonial-card {
    border: 0.2rem solid var(--textColor);
  }
  
  .cta-btn-primary,
  .cta-btn-secondary,
  .view-all-btn {
    border: 0.2rem solid currentColor;
  }
}

/* ===== CALL TO ACTION STYLES ===== */

/* Quick CTA Banner */
.quick-cta-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem 0;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.quick-cta-banner::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.quick-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.quick-cta-text h3 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quick-cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  margin: 0;
}

.quick-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-register,
.btn-login {
  padding: 1.2rem 2.4rem;
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-register {
  background: #fff;
  color: #667eea;
  border: 2px solid #fff;
}

.btn-register:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-login {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Newsletter CTA Section */
.newsletter-cta-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 4rem 0;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.newsletter-cta-wrapper {
  position: relative;
  z-index: 1;
}

.newsletter-cta-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.newsletter-icon {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.newsletter-icon i {
  font-size: 3.5rem;
  color: #fff;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h3 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 0;
}

.newsletter-form {
  flex-shrink: 0;
}

.newsletter-form-inline {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.newsletter-form-inline input[type="email"] {
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 3rem;
  font-size: 1.6rem;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.newsletter-form-inline input[type="email"]:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-subscribe {
  padding: 1.5rem 2.5rem;
  background: #fff;
  color: #f5576c;
  border: none;
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Newsletter CTA Section */
.newsletter-cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 0;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-cta-section::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="envelope" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M5 15 L25 5 L45 15 L25 25 Z" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23envelope)"/></svg>');
  pointer-events: none;
}

.newsletter-cta-wrapper {
  position: relative;
  z-index: 1;
}

.newsletter-cta-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter-info {
  flex: 1;
}

.newsletter-info h3 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.newsletter-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.newsletter-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
}

.newsletter-feature i {
  color: #fff;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.2);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-signup-form {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
}

.newsletter-signup-form input[type="email"] {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.newsletter-signup-form input[type="email"]:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-signup-form input[type="email"]::placeholder {
  color: #666;
}

.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.newsletter-btn i {
  font-size: 1.6rem;
}

.newsletter-image {
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Urgent CTA Section */
.urgent-cta-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  padding: 4rem 0;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.urgent-cta-section::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="fire" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 10 L30 25 L45 20 L35 35 L40 50 L25 40 L10 50 L15 35 L5 20 L20 25 Z" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23fire)"/></svg>');
  pointer-events: none;
  animation: flicker 2s ease-in-out infinite alternate;
}

@keyframes flicker {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.urgent-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.urgent-cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

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

.urgent-cta-content h2 {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.urgent-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 1rem;
  min-width: 8rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.urgent-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-shop-now,
.btn-learn-more {
  padding: 1.5rem 3rem;
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-shop-now {
  background: #fff;
  color: #ff6b6b;
  border: 2px solid #fff;
}

.btn-shop-now:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-learn-more {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-learn-more:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Floating CTA Button */
.floating-cta-button {
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  z-index: 1000;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.whatsapp-cta:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta i {
  font-size: 2rem;
}

/* Responsive Design for CTAs */
@media (max-width: 768px) {
  .product-notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    transform: translateY(-100%);
  }
  
  .product-notification.show {
    transform: translateY(0);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 0.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #666;
}

.trust-item i {
  font-size: 1.6rem;
  color: var(--colorGreen);
}

/* Delivery Info */
.delivery-info {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 1rem;
  overflow: hidden;
}

.delivery-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: #f8f9fa;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--textColor);
}

.delivery-details {
  padding: 2rem;
}

.delivery-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.delivery-option:last-child {
  border-bottom: none;
}

.delivery-type {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--textColor);
}

.delivery-time {
  font-size: 1.3rem;
  color: #666;
}

.delivery-cost {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--colorGreen);
}

/* Product Details Tabs */
.product-details-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.product-tabs {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

.tab-navigation {
  display: flex;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  background: #fff;
  color: var(--colorOrange);
}

.tab-btn.active {
  background: #fff;
  color: var(--colorOrange);
  border-bottom-color: var(--colorOrange);
}

.tab-content {
  padding: 3rem;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.content-wrapper h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--textColor);
  margin-bottom: 2rem;
}

.description-content {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #666;
}

/* Specifications */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0.8rem;
  border: 1px solid #e9ecef;
}

.spec-label {
  font-size: 1.4rem;
  color: #666;
  font-weight: 500;
}

.spec-value {
  font-size: 1.4rem;
  color: var(--textColor);
  font-weight: 600;
}



/* Shipping Info Grid */
.shipping-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.shipping-method {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 1rem;
  border: 1px solid #e9ecef;
}

.shipping-method h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--textColor);
  margin-bottom: 1.5rem;
}

.shipping-method ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shipping-method li {
  padding: 0.8rem 0;
  font-size: 1.4rem;
  color: #666;
  position: relative;
  padding-left: 2rem;
}

.shipping-method li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--colorGreen);
  font-weight: 600;
}

/* Related Products Section */
.related-products-section {
  padding: 4rem 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--textColor);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.6rem;
  color: #666;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn, .wishlist-btn {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #666;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.quick-view-btn:hover, .wishlist-btn:hover {
  background: var(--colorOrange);
  color: #fff;
  transform: scale(1.1);
}

.product-details {
  padding: 2rem;
}

.product-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--textColor);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-name a:hover {
  color: var(--colorOrange);
}



.product-price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--colorOrange);
}

.price-note {
  font-size: 1.2rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .product-gallery-section {
    position: static;
  }
}

@media (max-width: 768px) {
  .product-info-section {
    padding: 2rem;
  }
  
  .product-title {
    font-size: 2.4rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
  }
  
  .tab-navigation {
    flex-direction: column;
  }
  
  .tab-btn {
    border-bottom: none;
    border-right: 3px solid transparent;
  }
  
  .tab-btn.active {
    border-right-color: var(--colorOrange);
    border-bottom-color: transparent;
  }
  
  .related-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
}

@media (max-width: 480px) {
  .product-hero-section {
    padding: 2rem 0;
  }
  
  .product-info-section {
    padding: 1.5rem;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .price-amount {
    font-size: 2.8rem;
  }
  
  .tab-content {
    padding: 2rem;
  }
  
  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRODUCT PAGE NOTIFICATIONS AND ANIMATIONS ===== */

/* Product Notifications */
.product-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--colorGreen);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 40rem;
}

.product-notification.show {
  transform: translateX(0);
}

.product-notification.success {
  border-left-color: var(--colorGreen);
}

.product-notification.error {
  border-left-color: #dc2626;
}

.product-notification.warning {
  border-left-color: #f59e0b;
}

.product-notification.info {
  border-left-color: #3b82f6;
}

.product-notification i {
  font-size: 1.8rem;
  color: var(--colorGreen);
}

.product-notification.success i {
  color: var(--colorGreen);
}

.product-notification.error i {
  color: #dc2626;
}

.product-notification.warning i {
  color: #f59e0b;
}

.product-notification.info i {
  color: #3b82f6;
}

.product-notification span {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--textColor);
  flex: 1;
}

.notification-close {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.notification-close:hover {
  background: #f1f5f9;
  color: var(--textColor);
}

/* Animation Classes */
.animate-in {
  animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badge Animations */
.badge {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.6s ease;
}

.badge.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Trust Indicators Animation */
.trust-item {
  opacity: 0;
  transform: translateX(-2rem);
  transition: all 0.6s ease;
}

.trust-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Product Card Animations */
.product-card {
  opacity: 0;
  transform: translateY(3rem);
  transition: all 0.6s ease;
}

.product-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Spec Item Animations */
.spec-item {
  opacity: 0;
  transform: translateX(-2rem);
  transition: all 0.6s ease;
}

.spec-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}



/* Wishlist Button Active State */
.btn-wishlist.active {
  background: var(--colorOrange);
  border-color: var(--colorOrange);
  color: #fff;
}

.btn-wishlist.active i {
  color: #fff;
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  border: 2px solid #f3f4f6;
  border-top: 2px solid var(--colorOrange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

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

/* Hover Effects Enhancement */
.product-card:hover .product-overlay {
  opacity: 1;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Tab Content Transitions */
.tab-pane {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.4s ease;
}

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

/* Responsive Notifications */
@media (max-width: 768px) {
  .product-notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    transform: translateY(-100%);
  }
  
  .product-notification.show {
    transform: translateY(0);
  }
}

/* Newsletter Notification Styles */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 9999;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.3s ease-out;
  font-family: 'Inter', sans-serif;
}

.notification-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.notification-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.notification-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}

.notification-message {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

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

/* Responsive Newsletter Notifications */
@media (max-width: 768px) {
  .notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  
  .notification-content {
    padding: 1.2rem 1.5rem;
  }
  
  .notification-message {
    font-size: 1.3rem;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-open .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--colorOrange);
}

.mobile-menu-logo i {
  font-size: 2.4rem;
}

.mobile-menu-close {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--textColor);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  border: none;
}

.mobile-menu-close:hover {
  background: var(--colorOrange);
  color: #fff;
}

.mobile-menu-body {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Mobile Search */
.mobile-search {
  margin-bottom: 1rem;
}

.mobile-search .search-container {
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-search .search-container:hover {
  background: #e9ecef;
}

.mobile-search .search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-search .search-icon-container {
  color: var(--colorOrange);
  font-size: 1.6rem;
}

.mobile-search .search-content {
  flex: 1;
}

.mobile-search .search-placeholder-text {
  font-size: 1.4rem;
  color: var(--textColor);
  font-weight: 500;
}

/* Mobile Navigation */
.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 1rem;
  color: var(--textColor);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: var(--colorOrange);
  color: #fff;
  transform: translateX(0.5rem);
}

.mobile-nav-link i:first-child {
  font-size: 1.8rem;
  width: 2rem;
  text-align: center;
}

.submenu-arrow {
  margin-left: auto;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.mobile-nav-item.has-submenu.open .submenu-arrow {
  transform: rotate(90deg);
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-item.has-submenu.open .mobile-submenu {
  max-height: 500px;
}

.mobile-submenu-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem 1.2rem 4.5rem;
  color: var(--textColor);
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
  background: #e9ecef;
  color: var(--colorOrange);
}

.mobile-submenu-link i {
  font-size: 1.4rem;
  width: 1.5rem;
  text-align: center;
}

/* Mobile User Menu */
.mobile-user-menu {
  border-top: 1px solid #f0f0f0;
  padding-top: 2rem;
}

.mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-auth-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 1rem;
  color: var(--textColor);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-auth-btn.login-btn:hover {
  background: var(--colorOrange);
  color: #fff;
}

.mobile-auth-btn.register-btn:hover {
  background: #28a745;
  color: #fff;
}

.mobile-user-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.mobile-user-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--colorOrange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}

.mobile-user-details {
  flex: 1;
}

.mobile-user-name {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--textColor);
  margin-bottom: 0.3rem;
}

.mobile-user-email {
  display: block;
  font-size: 1.3rem;
  color: #666;
}

.mobile-user-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-user-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  color: var(--textColor);
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border-radius: 0.8rem;
}

.mobile-user-link:hover {
  background: #f8f9fa;
  color: var(--colorOrange);
}

.mobile-user-link.logout-link:hover {
  background: #dc3545;
  color: #fff;
}

.mobile-user-link i {
  font-size: 1.6rem;
  width: 2rem;
  text-align: center;
}

/* Mobile Contact Info */
.mobile-contact-info {
  border-top: 1px solid #f0f0f0;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  color: var(--textColor);
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border-radius: 0.8rem;
}

.mobile-contact-link:hover {
  background: #f8f9fa;
  color: var(--colorOrange);
}

.mobile-contact-link i {
  font-size: 1.6rem;
  width: 2rem;
  text-align: center;
}

/* Mobile Menu Responsive */
@media (max-width: 480px) {
  .mobile-menu-content {
    width: 100%;
    max-width: none;
  }
  
  .mobile-menu-header {
    padding: 1.5rem;
  }
  
  .mobile-menu-body {
    padding: 1.5rem;
  }
  
  .mobile-nav-link {
    padding: 1.2rem;
    font-size: 1.4rem;
  }
  
  .mobile-auth-btn {
    padding: 1.2rem;
    font-size: 1.4rem;
  }
}
