:root {
  --base-color: #ffffff;
  --contrast-color: #111111;
  --Accent-color1: #ffee58;
  --Accent-color2: #f6cff4;
  --Accent-color3: #503aa8;
  --Accent-color4: #686868;
  --Accent-color5: #fbfaf3;
  --Accent-color6: #000000;

  /* Color Application  */
  --text-color: var(--contrast-color);
  --background-color: var(--base-color);
  --link-color: var(--Accent-color3);
  --button-color: var(--Accent-color3);

  /* Font and Font-sizes */
  --text: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --heading-font: "Georgia", serif;

  --base-font-size: clamp(1rem, 2vw, 1.3rem);
  --heading-font-size: clamp(1.8rem, 4vw, 3rem);

  /*horizontal Spacing */
  --space-x: clamp(0.5rem, 1vw, 1.5rem);

  /*Vertical Spacing */
  --space-y: clamp(1rem, 2rem + 2vh, 6rem);

  /* Border Radius */
  --border-radius: 4px;
}

body {
  font-family: var(--text);
  font-size: var(--base-font-size);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ============================================
   EGOTEC HEADER - Bootstrap 5 + Custom CSS
   ============================================ */

.egotec-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--base-color);
  backdrop-filter: saturate(160%) blur(6px);
  -webkit-backdrop-filter: saturate(160%) blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease;
}

.egotec-navbar-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAVBAR TOGGLER (Hamburger) - hidden on md+ */
.egotec-toggler {
  order: -1;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .egotec-toggler {
    display: none !important;
  }
}

/* LOGO / BRAND */
.egotec-logo {
  color: var(--link-color, #503aa8);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  margin: 0;
  z-index: 10;
  flex-grow: 0;
}

.egotec-logo:hover {
  color: var(--Accent-color1, #ffee58);
}

/* NAVIGATION MENU COLLAPSE */
.egotec-nav-collapse {
  flex-basis: auto;
  flex-grow: 0;
}

/* NAVIGATION MENU - CENTERED ON DESKTOP */
.egotec-nav-menu {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  width: 100%;
}

/* Desktop/Tablet: center nav with logo on left and cart on right */
@media (min-width: 768px) {
  .egotec-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .egotec-logo {
    order: 1;
    flex-grow: 0;
    margin-right: auto;
    padding-left: 1.5rem;
  }

  .egotec-nav-collapse {
    order: 2;
    flex-grow: 0;
    flex-basis: auto;
  }

  .egotec-nav-menu {
    justify-content: center;
    width: auto;
  }

  .egotec-cart-icon {
    order: 3;
    margin-left: auto;
    padding-right: 1.5rem;
  }
}

.egotec-nav-menu .nav-item {
  white-space: nowrap;
}

.egotec-nav-menu .nav-link {
  color: var(--text-color, #111);
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.egotec-nav-menu .nav-link:hover {
  color: var(--link-color, #503aa8);
  border-bottom-color: var(--link-color, #503aa8);
}

/* CART ICON - ALWAYS VISIBLE, NEVER COLLAPSES */
.egotec-cart-icon {
  flex-grow: 0;
  margin-left: auto;
  z-index: 10;
  position: relative;
}

.egotec-cart-icon .nav-link {
  color: var(--text-color, #111);
  font-size: 1.25rem;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.egotec-cart-icon .nav-link:hover {
  color: var(--link-color, #503aa8);
}

.egotec-cart-icon .badge {
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
}

/* Cart Dropdown Menu */
.egotec-cart-dropdown {
  width: 380px;
  max-height: 500px;
  padding: 0;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  margin-top: 0.5rem;
}

.egotec-cart-dropdown-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.egotec-cart-dropdown-header h6 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--contrast-color, #111);
}

.egotec-cart-items-count {
  font-size: 0.85rem;
  color: var(--Accent-color4, #686868);
}

.egotec-cart-dropdown-body {
  max-height: 280px;
  overflow-y: auto;
  padding: 0.75rem;
}

.egotec-cart-dropdown-body::-webkit-scrollbar {
  width: 6px;
}

.egotec-cart-dropdown-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.egotec-cart-dropdown-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

/* Empty Cart Message */
.egotec-cart-empty {
  text-align: center;
  padding: 2rem 1rem;
}

.egotec-cart-empty i {
  font-size: 3rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.egotec-cart-empty p {
  margin: 0;
  color: var(--Accent-color4, #686868);
  font-size: 0.95rem;
}

/* Cart Dropdown Item */
.egotec-cart-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.egotec-cart-dropdown-item:hover {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.egotec-cart-dropdown-item:last-child {
  margin-bottom: 0;
}

.egotec-cart-item-number {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--Accent-color1);
  color: #333;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
}

.egotec-cart-item-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f9fa;
}

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

.egotec-cart-item-details {
  flex: 1;
  min-width: 0;
}

.egotec-cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--contrast-color, #111);
  margin: 0 0 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
}

.egotec-cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.egotec-cart-item-qty {
  color: var(--Accent-color4, #686868);
}

.egotec-cart-item-price {
  font-weight: 700;
  color: var(--Accent-color3, #503aa8);
}

.egotec-cart-item-remove {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.egotec-cart-item-remove:hover {
  background: #fee2e2;
}

/* Cart Dropdown Footer */
.egotec-cart-dropdown-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.egotec-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.egotec-cart-subtotal span:first-child {
  font-weight: 600;
  color: var(--contrast-color, #111);
}

.egotec-cart-subtotal span:last-child {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--Accent-color3, #503aa8);
}

.egotec-cart-actions .btn {
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.egotec-cart-actions .btn-outline-primary {
  border: 2px solid var(--Accent-color3, #503aa8);
  color: var(--Accent-color3, #503aa8);
}

.egotec-cart-actions .btn-outline-primary:hover {
  background: var(--Accent-color3, #503aa8);
  color: #fff;
}

.egotec-cart-actions .btn-primary {
  background: var(--Accent-color3, #503aa8);
  border: 2px solid var(--Accent-color3, #503aa8);
}

.egotec-cart-actions .btn-primary:hover {
  background: #6b4fc8;
  border-color: #6b4fc8;
}

/* ============================================
   RESPONSIVE: MOBILE LAYOUT
   ============================================ */

@media (max-width: 767.98px) {
  /* Ensure navbar is positioned for proper spacing */
  .egotec-navbar-container {
    flex-wrap: nowrap;
  }

  /* Position logo in center on mobile */
  .egotec-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  /* Navigation menu: full width, stacks vertically when open */
  .egotec-nav-collapse {
    flex-basis: 100%;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .egotec-nav-menu {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #eee;
    justify-content: flex-start;
  }

  .egotec-nav-menu .nav-link {
    padding: 0.75rem 0;
  }

  /* Cart icon stays on far right */
  .egotec-cart-icon {
    margin-left: 1rem;
    margin-right: 0.5rem;
  }

  /* Cart Dropdown - Mobile Adjustments */
  .egotec-cart-dropdown {
    width: calc(100vw - 2rem);
    max-width: 350px;
    right: 0.5rem !important;
    left: auto !important;
  }

  .egotec-cart-dropdown-body {
    max-height: 220px;
  }

  .egotec-cart-dropdown-item {
    padding: 0.6rem;
    gap: 0.5rem;
  }

  .egotec-cart-item-number {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .egotec-cart-item-image {
    width: 50px;
    height: 50px;
  }

  .egotec-cart-item-name {
    font-size: 0.85rem;
  }

  .egotec-cart-item-info {
    font-size: 0.8rem;
  }

  .egotec-cart-dropdown-footer {
    padding: 0.85rem 1rem;
  }

  .egotec-cart-actions .btn {
    font-size: 0.85rem;
    padding: 0.5rem 0.85rem;
  }
}

/* ============================================
   OFFCANVAS CART SIDEBAR
   ============================================ */

.offcanvas {
  width: 100%;
}

@media (min-width: 576px) {
  .offcanvas-end {
    width: 400px;
  }
}

/* ============================================
   HERO SECTION - eCommerce Homepage
   ============================================ */

.egotec-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.egotec-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-color, #111);
  line-height: 1.2;
}

.egotec-hero-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.egotec-hero-btn {
  background-color: var(--link-color, #503aa8);
  border-color: var(--link-color, #503aa8);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.egotec-hero-btn:hover {
  background-color: var(--base-color, #ffffff);
  border-color: var(--Accent-color3, #503aa8);
  color: var(--Accent-color3, #503aa8);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 58, 168, 0.2);
}

.egotec-hero-image {
  max-width: 100%;
  height: auto;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.egotec-hero-image:hover {
  transform: scale(1.02);
}

/* Mobile Stack: Image below text */
@media (max-width: 991.98px) {
  .egotec-hero {
    min-height: auto;
  }

  .egotec-hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .egotec-hero-text {
    font-size: 1rem;
  }
}

/* Mobile: Center align text and button at 768px and below */
@media (max-width: 768px) {
  .egotec-hero-title {
    text-align: center;
  }

  .egotec-hero-text {
    text-align: center;
  }

  .egotec-hero-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}

/* ============================================
   CATEGORY HIGHLIGHTS SECTION
   ============================================ */

.egotec-category-highlights {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.egotec-category-carousel-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.egotec-category-carousel {
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1rem 0.5rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.egotec-category-carousel::-webkit-scrollbar {
  display: none;
}

.egotec-category-card {
  position: relative;
  min-width: 200px;
  max-width: 240px;
  height: 240px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.egotec-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.egotec-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.egotec-category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 32, 0.75);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

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

.egotec-category-name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 0.5rem 1rem;
}

.egotec-category-card:hover .egotec-category-name {
  opacity: 1;
}

/* Carousel Navigation Arrows (desktop/tablet only) */
.egotec-carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.egotec-carousel-arrow {
  position: static;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--Accent-color3, #503aa8);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(80, 58, 168, 0.25);
}

.egotec-carousel-arrow:hover {
  background: var(--Accent-color1, #ffee58);
  color: var(--Accent-color3, #503aa8);
  transform: scale(1.1);
}

.egotec-carousel-arrow:active {
  transform: scale(0.95);
}

/* Mobile Styles */
@media (max-width: 767px) {
  .egotec-category-carousel {
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 0.25rem 1.5rem;
  }

  .egotec-category-card {
    scroll-snap-align: center;
    min-width: 75vw;
    max-width: 85vw;
    height: 200px;
  }

  /* Show category name on mobile always */
  .egotec-category-overlay {
    opacity: 1;
    background: linear-gradient(
      180deg,
      rgba(24, 24, 32, 0) 0%,
      rgba(24, 24, 32, 0.85) 100%
    );
  }

  .egotec-category-name {
    opacity: 1;
    position: absolute;
    bottom: 1rem;
    font-size: 1.25rem;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  .egotec-carousel-arrow-left {
    left: 0;
  }

  .egotec-carousel-arrow-right {
    right: 0;
  }
}

/* ========================================
   FEATURED PRODUCTS SECTION
======================================== */
.egotec-featured-products {
  background-color: #f8f9fa;
}

/* Carousel Wrapper */
.egotec-featured-wrapper {
  position: relative;
  overflow: hidden;
}

.egotec-featured-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.egotec-featured-carousel::-webkit-scrollbar {
  display: none;
}

/* Product Card */
.egotec-product-card {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  min-width: 250px;
  max-width: 300px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.egotec-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* Product Image Container */
.egotec-product-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #f5f5f5;
  display: block;
  text-decoration: none;
}

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

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

/* Hover Overlay - Hidden (moved buttons to below) */
.egotec-product-overlay {
  display: none;
}

/* Overlay Buttons */
.egotec-overlay-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: translateY(20px);
  opacity: 0;
}

.egotec-product-card:hover .egotec-overlay-btn {
  transform: translateY(0);
  opacity: 1;
}

.egotec-product-card:hover .egotec-overlay-btn:nth-child(1) {
  transition-delay: 0.1s;
}

.egotec-product-card:hover .egotec-overlay-btn:nth-child(2) {
  transition-delay: 0.2s;
}

.egotec-btn-add-cart {
  background-color: var(--Accent-color1, #ffee58);
  color: var(--contrast-color, #111111);
}

.egotec-btn-add-cart:hover {
  background-color: var(--Accent-color2, #fdd835);
  transform: scale(1.05);
}

.egotec-btn-quick-view {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.egotec-btn-quick-view:hover {
  background-color: #ffffff;
  color: var(--contrast-color, #111111);
  transform: scale(1.05);
}

/* Product Details */
.egotec-product-details {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.egotec-product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color, #111111);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6rem;
}

.egotec-product-name a {
  color: var(--contrast-color, #111111);
  text-decoration: none;
  transition: color 0.3s ease;
}

.egotec-product-name a:hover {
  color: var(--Accent-color3, #503aa8);
}

.egotec-product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--Accent-color3, #503aa8);
  margin-bottom: 0.75rem;
}

/* Star Ratings */
.egotec-product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  color: #ffc107;
}

.egotec-product-rating i {
  font-size: 0.9rem;
}

.egotec-rating-value {
  margin-left: 0.5rem;
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
}

/* Navigation Arrows for Featured Products */
.egotec-featured-controls {
  display: flex;
  gap: 0.5rem;
}

.egotec-featured-arrow {
  position: static;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--Accent-color3, #503aa8);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(80, 58, 168, 0.25);
}

.egotec-featured-arrow:hover {
  background: var(--Accent-color1, #ffee58);
  color: var(--Accent-color3, #503aa8);
  transform: scale(1.1);
}

.egotec-featured-arrow:active {
  transform: scale(0.95);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .egotec-product-card {
    flex: 0 0 calc(100% - 2rem);
    min-width: 280px;
  }

  /* Hide hover overlay on mobile */
  .egotec-product-overlay {
    display: none;
  }

  .egotec-product-image {
    height: 240px;
  }

  .egotec-product-name {
    font-size: 1rem;
  }

  .egotec-product-price {
    font-size: 1.2rem;
  }
}

/* Tablet Responsiveness */
@media (min-width: 768px) and (max-width: 991px) {
  .egotec-product-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 220px;
  }
}

/* ========================================
   NEW ARRIVALS SECTION
======================================== */
.egotec-new-arrivals {
  background-color: #ffffff;
}

/* Carousel Wrapper */
.egotec-new-arrivals-wrapper {
  position: relative;
  overflow: hidden;
}

.egotec-new-arrivals-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.egotec-new-arrivals-carousel::-webkit-scrollbar {
  display: none;
}

/* Navigation Arrows for New Arrivals */
.egotec-new-arrivals-controls {
  display: flex;
  gap: 0.5rem;
}

.egotec-new-arrivals-arrow {
  position: static;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--Accent-color3, #503aa8);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(80, 58, 168, 0.25);
}

.egotec-new-arrivals-arrow:hover {
  background: var(--Accent-color1, #ffee58);
  color: var(--Accent-color3, #503aa8);
  transform: scale(1.1);
}

.egotec-new-arrivals-arrow:active {
  transform: scale(0.95);
}

/* New Arrivals uses same product card styles as Featured Products */
/* No need to duplicate .egotec-product-card styles */

/* ========================================
   PROMO BANNER
======================================== */
.egotec-promo-banner {
  width: 100%;
  min-height: 420px;
  background-color: #0f0f12;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.egotec-promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.65) 0%,
    rgba(17, 17, 17, 0.4) 40%,
    rgba(17, 17, 17, 0.25) 100%
  );
  pointer-events: none;
}

.egotec-promo-content {
  position: relative;
  padding: 3rem 0;
  color: #fff;
  text-align: left;
}

.egotec-promo-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.egotec-promo-message {
  font-size: 1.1rem;
  color: #eaeaea;
  max-width: 52ch;
}

.egotec-promo-btn {
  background-color: var(--Accent-color1, #ffee58);
  color: #111;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.egotec-promo-btn:hover {
  background-color: var(--Accent-color2, #fdd835);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .egotec-promo-banner {
    min-height: 360px;
  }
  .egotec-promo-content {
    text-align: center;
  }
  .egotec-promo-title {
    font-size: 1.6rem;
  }
}

/* ========================================
   ALL PRODUCTS SECTION
======================================== */
.egotec-all-products {
  background-color: #f8f9fa;
}

/* Carousel Wrapper */
.egotec-all-products-wrapper {
  position: relative;
  overflow: hidden;
}

.egotec-all-products-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.egotec-all-products-carousel::-webkit-scrollbar {
  display: none;
}

/* Navigation Arrows for All Products */
.egotec-all-products-controls {
  display: flex;
  gap: 0.5rem;
}

.egotec-all-products-arrow {
  position: static;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--Accent-color3, #503aa8);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(80, 58, 168, 0.25);
}

.egotec-all-products-arrow:hover {
  background: var(--Accent-color1, #ffee58);
  color: var(--Accent-color3, #503aa8);
  transform: scale(1.1);
}

.egotec-all-products-arrow:active {
  transform: scale(0.95);
}

/* All Products uses same product card styles as Featured Products */

/* ============================================
   NEWSLETTER SUBSCRIPTION SECTION
   ============================================ */

.egotec-newsletter {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.egotec-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" fill="rgba(80,58,168,0.02)"/></svg>');
  background-size: 100px 100px;
  opacity: 0.5;
}

.egotec-newsletter-card {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.egotec-newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--Accent-color3, #503aa8), #6b4fc8);
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(80, 58, 168, 0.3);
  margin: 0 auto;
}

.egotec-newsletter-title {
  color: var(--contrast-color, #111111);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.egotec-newsletter-text {
  color: var(--Accent-color4, #686868);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.egotec-newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.egotec-newsletter-input-group {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.egotec-newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid transparent;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}

.egotec-newsletter-input:focus {
  border-color: var(--Accent-color3, #503aa8);
  box-shadow: 0 0 0 3px rgba(80, 58, 168, 0.1);
}

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

.egotec-newsletter-btn {
  padding: 1rem 2rem;
  background: var(--Accent-color3, #503aa8);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.egotec-newsletter-btn:hover {
  background: #6b4fc8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 58, 168, 0.4);
}

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

.egotec-newsletter-btn i {
  transition: transform 0.3s ease;
}

.egotec-newsletter-btn:hover i {
  transform: translateX(4px);
}

.egotec-newsletter-message {
  min-height: 24px;
  font-size: 0.95rem;
  font-weight: 500;
}

.egotec-newsletter-message.success {
  color: #28a745;
}

.egotec-newsletter-message.error {
  color: #dc3545;
}

.egotec-newsletter-privacy {
  color: var(--Accent-color4, #686868);
  margin-bottom: 0;
}

.egotec-newsletter-privacy small {
  font-size: 0.875rem;
}

.egotec-newsletter-privacy .fa-lock {
  color: var(--Accent-color3, #503aa8);
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .egotec-newsletter-card {
    padding: 2rem 1.5rem;
  }

  .egotec-newsletter-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .egotec-newsletter-title {
    font-size: 1.5rem;
  }

  .egotec-newsletter-text {
    font-size: 1rem;
  }

  .egotec-newsletter-input-group {
    flex-direction: column;
    border-radius: 12px;
  }

  .egotec-newsletter-input {
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .egotec-newsletter-btn {
    border-radius: 0 0 12px 12px;
    justify-content: center;
    padding: 1.25rem;
  }

  .egotec-newsletter-input:focus {
    border-radius: 12px 12px 0 0;
  }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.egotec-footer {
  background: linear-gradient(
    135deg,
    var(--Accent-color3, #503aa8) 0%,
    #6b4fc8 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}

.egotec-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 100px 100px;
  opacity: 0.5;
}

.egotec-footer-main {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.egotec-footer-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--Accent-color1, #ffee58);
  margin-bottom: 1rem;
}

.egotec-footer-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.egotec-footer-social {
  display: flex;
  gap: 0.75rem;
}

.egotec-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.egotec-social-link:hover {
  background: var(--Accent-color1, #ffee58);
  color: var(--Accent-color3, #503aa8);
  transform: translateY(-3px);
}

.egotec-footer-heading {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.egotec-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--Accent-color1, #ffee58);
}

.egotec-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.egotec-footer-links li {
  margin-bottom: 0.75rem;
}

.egotec-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.egotec-footer-links a:hover {
  color: var(--Accent-color1, #ffee58);
  padding-left: 5px;
}

.egotec-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.egotec-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.egotec-footer-contact i {
  color: var(--Accent-color1, #ffee58);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.egotec-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.egotec-footer-copyright {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.egotec-footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.egotec-footer-legal li {
  display: inline;
}

.egotec-footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.egotec-footer-legal a:hover {
  color: var(--Accent-color1, #ffee58);
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .egotec-footer-brand {
    font-size: 1.5rem;
    text-align: center;
  }

  .egotec-footer-text {
    text-align: center;
  }

  .egotec-footer-social {
    justify-content: center;
  }

  .egotec-footer-heading {
    text-align: center;
  }

  .egotec-footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .egotec-footer-links {
    text-align: center;
  }

  .egotec-footer-contact {
    text-align: left;
  }

  .egotec-footer-legal {
    justify-content: center;
    gap: 1rem;
  }
}

/* ============================================
   SHOP PAGE STYLES
   ============================================ */

/* Shop Page Header */
.egotec-shop-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid #e0e0e0;
}

.egotec-shop-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color, #111111);
  margin-bottom: 0.5rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumb-item a {
  color: var(--Accent-color3, #503aa8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--Accent-color1, #ffee58);
}

.breadcrumb-item.active {
  color: var(--Accent-color4, #686868);
}

.egotec-product-count {
  color: var(--Accent-color4, #686868);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Sidebar Filters */
.egotec-sidebar-filters {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.egotec-filter-section {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.egotec-filter-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.egotec-filter-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--contrast-color, #111111);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

.egotec-sidebar-filters .form-select {
  border-color: #d0d0d0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.egotec-sidebar-filters .form-select:focus {
  border-color: var(--Accent-color3, #503aa8);
  box-shadow: 0 0 0 0.2rem rgba(80, 58, 168, 0.15);
}

.egotec-sidebar-filters .form-check {
  padding-left: 1.75rem;
}

.egotec-sidebar-filters .form-check-input {
  border-color: #d0d0d0;
}

/* Shop Top Bar */
.egotec-shop-top-bar {
  padding: 1rem 0;
  border-bottom: 2px solid #e9ecef;
}

.egotec-shop-top-bar .egotec-product-count {
  font-size: 1rem;
  font-weight: 600;
  color: var(--contrast-color, #111111);
}

.egotec-sort-wrapper {
  display: flex;
  align-items: center;
}

.egotec-sort-wrapper label {
  color: var(--contrast-color, #111111);
  white-space: nowrap;
}

.egotec-sort-wrapper .form-select {
  min-width: 200px;
  border-color: #d0d0d0;
  transition: all 0.3s ease;
}

.egotec-sort-wrapper .form-select:focus {
  border-color: var(--Accent-color3, #503aa8);
  box-shadow: 0 0 0 0.2rem rgba(80, 58, 168, 0.15);
}

@media (max-width: 767px) {
  .egotec-shop-top-bar {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }

  .egotec-sort-wrapper {
    width: 100%;
  }

  .egotec-sort-wrapper .form-select {
    flex: 1;
    min-width: auto;
  }
}

.egotec-sidebar-filters .form-check-input {
  transition: all 0.3s ease;
}

.egotec-sidebar-filters .form-check-input:checked {
  background-color: var(--Accent-color3, #503aa8);
  border-color: var(--Accent-color3, #503aa8);
}

.egotec-sidebar-filters .form-check-label {
  font-size: 0.95rem;
  color: var(--contrast-color, #111111);
  cursor: pointer;
}

/* Mobile Sidebar Toggle */
@media (max-width: 767px) {
  .egotec-sidebar-filters {
    position: static;
    margin-bottom: 1.5rem;
  }
}

/* Shop Controls (Legacy - Now Unused) */
.egotec-shop-controls {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.egotec-shop-controls .form-label {
  color: var(--contrast-color, #111111);
  margin-bottom: 0.5rem;
}

.egotec-shop-controls .form-select,
.egotec-shop-controls .form-check-input {
  border-color: #d0d0d0;
  transition: all 0.3s ease;
}

.egotec-shop-controls .form-select:focus {
  border-color: var(--Accent-color3, #503aa8);
  box-shadow: 0 0 0 0.2rem rgba(80, 58, 168, 0.15);
}

.egotec-shop-controls .form-check-input:checked {
  background-color: var(--Accent-color3, #503aa8);
  border-color: var(--Accent-color3, #503aa8);
}

/* Shop Product Cards */
.egotec-shop-product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.egotec-shop-product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--Accent-color3, #503aa8);
}

.egotec-shop-product-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #f8f9fa;
  display: block;
  text-decoration: none;
}

.egotec-shop-product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.egotec-shop-product-card:hover .egotec-shop-product-image img {
  transform: scale(1.05);
}

/* Product Badges */
.egotec-product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.egotec-badge {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.egotec-badge-featured {
  background: var(--Accent-color1, #ffee58);
  color: var(--contrast-color, #111111);
}

.egotec-badge-new {
  background: #28a745;
  color: #fff;
}

/* Wishlist Button */
.egotec-wishlist-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--Accent-color4, #686868);
}

.egotec-wishlist-btn:hover {
  background: var(--Accent-color3, #503aa8);
  color: #fff;
  transform: scale(1.1);
}

.egotec-wishlist-btn.active {
  background: #dc3545;
  color: #fff;
}

/* Hover Overlay - Hidden (No longer used) */
.egotec-shop-product-overlay {
  display: none;
}

.egotec-overlay-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.egotec-overlay-btn-primary {
  background: var(--Accent-color3, #503aa8);
  color: #fff;
}

.egotec-overlay-btn-primary:hover {
  background: #6b4fc8;
  transform: scale(1.05);
}

.egotec-overlay-btn-secondary {
  background: #fff;
  color: var(--contrast-color, #111111);
}

.egotec-overlay-btn-secondary:hover {
  background: var(--Accent-color1, #ffee58);
  transform: scale(1.05);
}

/* Product Details */
.egotec-shop-product-details {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.egotec-shop-product-category {
  font-size: 0.8rem;
  color: var(--Accent-color3, #503aa8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.egotec-shop-product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--contrast-color, #111111);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}

.egotec-shop-product-name a {
  color: var(--contrast-color, #111111);
  text-decoration: none;
  transition: color 0.3s ease;
}

.egotec-shop-product-name a:hover {
  color: var(--Accent-color3, #503aa8);
}

.egotec-shop-product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--Accent-color3, #503aa8);
  margin-bottom: 0.75rem;
}

.egotec-shop-product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.egotec-shop-rating-stars {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.egotec-shop-rating-stars i {
  color: var(--Accent-color1, #ffee58);
  font-size: 0.9rem;
}

.egotec-shop-rating-stars .far {
  color: var(--Accent-color1, #ffee58);
  opacity: 0.3;
}

.egotec-shop-rating-count {
  font-size: 0.7rem;
  color: var(--Accent-color4, #686868);
  white-space: nowrap;
}

.egotec-add-to-cart-btn {
  width: 100%;
  padding: 0.6rem 1rem;
  background: var(--Accent-color3, #503aa8);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.egotec-add-to-cart-btn:hover {
  background: #6b4fc8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 58, 168, 0.3);
}

.egotec-add-to-cart-btn:active {
  transform: translateY(0);
}

.egotec-quick-view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--Accent-color4, #686868);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.egotec-quick-view-link:hover {
  color: var(--Accent-color3, #503aa8);
  gap: 0.6rem;
}

.egotec-quick-view-link i {
  font-size: 0.8rem;
}

/* Mobile Action Buttons - Hidden (No longer used) */
.egotec-shop-mobile-actions {
  display: none;
}

/* Shop Promo Banner */
.egotec-shop-promo-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.egotec-shop-promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(80, 58, 168, 0.85),
    rgba(107, 79, 200, 0.85)
  );
}

.egotec-shop-promo-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 3rem 2rem;
}

.egotec-shop-promo-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.egotec-shop-promo-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.egotec-shop-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--Accent-color1, #ffee58);
  color: var(--contrast-color, #111111);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.egotec-shop-promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 238, 88, 0.4);
  color: var(--contrast-color, #111111);
}

/* Pagination */
.egotec-shop-pagination .pagination {
  gap: 0.5rem;
}

.egotec-shop-pagination .page-link {
  border: 1px solid #d0d0d0;
  color: var(--contrast-color, #111111);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.egotec-shop-pagination .page-link:hover {
  background: var(--Accent-color3, #503aa8);
  color: #fff;
  border-color: var(--Accent-color3, #503aa8);
}

.egotec-shop-pagination .page-item.active .page-link {
  background: var(--Accent-color3, #503aa8);
  border-color: var(--Accent-color3, #503aa8);
  color: #fff;
}

.egotec-shop-pagination .page-item.disabled .page-link {
  background: #f8f9fa;
  border-color: #d0d0d0;
  color: #999;
  cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .egotec-shop-title {
    font-size: 1.75rem;
  }

  .egotec-shop-promo-title {
    font-size: 1.75rem;
  }

  .egotec-shop-promo-message {
    font-size: 1rem;
  }

  .egotec-shop-promo-content {
    padding: 2rem 1rem;
  }
}
