/* Global Styles */
:root {
    --primary-color: #ff6900;
    --secondary-color: #d33a0c;
    --accent-color: #fc8b0a;
    --text-color: #333;
    --light-color: #f4f4f4;
    --dark-color: #333;
    --max-width: 1200px;
    --animation-duration: 0.3s;
    --transition-duration: 0.3s;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Performance: GPU acceleration for transforms and opacity */
  *,
  *::before,
  *::after {
    will-change: auto;
  }
  
  body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    /* Remove opacity fade that blocks content display */
  }

    /* Brand logo (circular) */
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .logo-img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      background: #fff;
      border: 2px solid rgba(255, 105, 0, 0.35);
      flex: 0 0 40px;
    }

    .logo-text {
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 0.2px;
      color: var(--primary-color);
      line-height: 1;
    }

    @media (max-width: 480px) {
      .logo {
        gap: 8px;
      }

      .logo-img {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
      }

      .logo-text {
        display: inline;
        font-size: 0.95rem;
        white-space: nowrap;
      }
    }
  
  /* Loading spinner */
  .page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  .page-loader.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  .loader-spinner {
    border: 4px solid var(--light-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }

  /* Skeleton loading animation */
  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }

  .skeleton-card {
    animation: none !important;
  }

  /* Product Filter Buttons */
  .product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
  }

  .filter-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
  }

  .filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 105, 0, 0.2);
  }

  .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
  }
  
  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
  }
  
  /* Header */
  header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
  .nav-menu {
    display: flex;
  }
  
  .nav-menu li {
    margin-left: 20px;
  }
  
  .nav-menu a {
    padding: 10px;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-menu a.active {
    color: var(--accent-color);
  }

  .nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--accent-color);
  }
  
  .nav-menu a:hover {
    color: var(--accent-color);
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 90vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 600px;
  }
  
  .btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
  }
  
  /* Sections */
  section {
    padding: 60px 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
  }
  
  .section-content {
    margin-bottom: 40px;
  }
  
  /* About Section */
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  /* Services Section */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  /* Gallery */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 250px;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  /* Blog */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 100%;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 480px;
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
  }
  
  .blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .blog-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;
  }
  
  .blog-content p {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .blog-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  /* Contact Form */
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  .contact-info h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .contact-info p {
    margin-bottom: 10px;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 5px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .contact-form textarea {
    height: 150px;
  }
  
  .map {
    height: 300px;
    margin-top: 30px;
    border-radius: 5px;
    overflow: hidden;
  }
  
  /* FAQ */
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
  
  .faq-question {
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-answer {
    display: none;
    padding: 10px 0;
  }
  
  .faq-answer.active {
    display: block;
  }
  
  /* Footer */
  footer {
    background: var(--dark-color);
    color: #fff;
    padding: 40px 0;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .footer-section h3 {
    margin-bottom: 20px;
    color: var(--accent-color);
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section a {
    color: #fff;
  }
  
  .footer-section a:hover {
    color: var(--accent-color);
  }
  
  .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .social-icons a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  
  .social-icons a:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
  }

  /* ========== ECOMMERCE STYLES ========== */

  /* Header Icons */
  .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
  }

  .nav-icons a {
    position: relative;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: color 0.3s ease;
  }

  .nav-icons a:hover {
    color: var(--primary-color);
  }

  .cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

  /* Hero Slideshow */
  .hero-slideshow {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }

  .slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
  }

  .slide.active {
    opacity: 1;
  }

  .slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920') no-repeat center center/cover;
  }

  .slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3?w=1920') no-repeat center center/cover;
  }

  .slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?w=1920') no-repeat center center/cover;
  }

  .slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 0 20px;
  }

  .slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-out;
  }

  .slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out;
  }

  .hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeIn 1.5s ease-out;
  }

  .btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
  }

  .slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .slide-nav:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  .slide-nav.prev {
    left: 20px;
  }

  .slide-nav.next {
    right: 20px;
  }

  .slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
  }

  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .indicator.active {
    background: white;
    width: 40px;
    border-radius: 10px;
  }

  /* Categories Section */
  .categories-section {
    padding: 80px 0;
  }

  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 111, 165, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .category-card:hover::before {
    left: 100%;
  }

  .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
  }

  .category-card:hover .category-icon {
    transform: rotateY(360deg);
  }

  .category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
  }

  .category-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  .category-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
  }

  .category-card:hover .category-link {
    gap: 15px;
  }

  /* Featured Products */
  .featured-products {
    padding: 80px 0;
    background: white;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #ddd;
  }

  .product-badge,
  .badge,
  .badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #CC0C39;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
    letter-spacing: 0.3px;
  }

  .product-badge.new,
  .badge-new {
    background: #007600;
  }

  .product-badge.sale,
  .badge-sale {
    background: #CC0C39;
  }

  .product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
  }

  .product-card:hover .product-image img {
    transform: scale(1.05);
  }

  .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 8; /* Ensure overlay sits above image & badge */
    pointer-events: none; /* Prevent blocking until visible */
  }

  .product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: auto; /* Activate interactions when shown */
  }
  /* If multiple actions are present in the overlay, space them nicely */
  .product-overlay {
    gap: 12px;
    padding: 16px;
    flex-wrap: wrap;
  }

  .quick-view-btn,
  .btn-quick-view {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .quick-view-btn:hover,
  .btn-quick-view:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
  }
  .quick-view-btn:focus,
  .btn-quick-view:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
  }
  .quick-view-btn:active,
  .btn-quick-view:active {
    transform: scale(0.96);
  }

  .product-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }

  .product-title,
  .product-info h3 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #0F1111;
    font-weight: 400;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
    font-size: 0.8rem;
    order: -1;
  }

  .product-rating i {
    color: #FFA41C;
    font-size: 0.75rem;
  }

  .product-rating span {
    color: #007185;
    font-size: 0.8rem;
    margin-left: 4px;
  }

  .product-desc,
  .product-description {
    display: none; /* Hide for compact Amazon-style card layout */
  }

  .product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }

  .product-price .price,
  .product-price .price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: #B12704;
  }

  .product-price .old-price,
  .product-price .price-old {
    font-size: 0.9rem;
    color: #565959;
    text-decoration: line-through;
  }

  .add-to-cart-btn,
  .btn-add-to-cart {
    width: 100%;
    background: #ff6900;
    color: #0F1111;
    border: 1px solid #FCD200;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
  }

  /* View Product Details Button */
  .btn-view-product {
    background: #333;
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
  }

  .btn-view-product:hover {
    background: var(--primary-color);
    color: white;
  }

  /* Product Image Link */
  .product-image-link {
    display: block;
    text-decoration: none;
  }

  /* Product Actions Row */
  .product-actions-row {
    margin-top: 10px;
  }

  /* Unify dynamic button classes to our base style */
  .btn-add-cart {
    width: 100%;
    background: #ff6900;
    color: #0F1111;
    border: 1px solid #FCD200;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .add-to-cart-btn:hover,
  .btn-add-to-cart:hover {
    background: #ff6900;
    border-color: #F2C200;
  }
  .btn-add-cart:hover {
    background: #F7CA00;
    border-color: #F2C200;
  }
  .add-to-cart-btn:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
  }
  .btn-add-cart:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
  }
  .add-to-cart-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  }
  .btn-add-cart:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  }
  .add-to-cart-btn[disabled] {
    background: #bdbdbd;
    color: #f5f5f5;
    cursor: not-allowed;
    box-shadow: none;
  }
  .btn-add-cart[disabled] {
    background: #bdbdbd;
    color: #f5f5f5;
    cursor: not-allowed;
    box-shadow: none;
  }
  /* Modal context: allow auto width for action buttons grouping */
  .product-actions .add-to-cart-btn {
    width: auto;
    padding: 14px 32px;
    border-radius: 50px; /* Match hero buttons */
  }
  .product-actions .btn-add-cart {
    width: auto;
    padding: 14px 32px;
    border-radius: 50px;
  }

  /* Overlay generic action buttons used by homepage-manager */
  .overlay-btn {
    background: #fff;
    color: var(--primary-color);
    border: none;
    padding: 12px 22px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  .overlay-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  }
  .overlay-btn:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
  }
  .overlay-btn:active {
    transform: translateY(0) scale(0.98);
  }

  /* Dynamic sale badge support */
  .sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f44336;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 9;
  }

  /* Price class variants used by JS */
  .product-price .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .product-name { color: var(--text-color); }
  .product-category { color: #777; font-size: 0.9rem; margin-bottom: 6px; }

  /* Why Choose Us Section */
  .why-choose-us {
    padding: 80px 0;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }

  .feature-box {
    text-align: center;
    padding: 30px;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
  }

  .feature-box:hover .feature-icon {
    background: var(--accent-color);
    transform: rotateY(360deg);
  }

  .feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
  }

  .feature-box p {
    color: #666;
    font-size: 0.95rem;
  }

  /* Floating WhatsApp Button */
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  @keyframes slideInDown {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
  }

  /* Products Page Styles */
  .filters-bar {
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    margin-bottom: 20px;
  }

  .filters-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .results-count {
    font-size: 0.95rem;
    color: #565959;
    font-weight: 500;
    white-space: nowrap;
  }

  .filters-and-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .filter-divider {
    width: 1px;
    height: 30px;
    background: #D5D9D9;
    margin: 0 4px;
  }

  .filter-dropdown {
    position: relative;
  }

  .filter-dropdown-btn {
    background: white;
    border: 1px solid #D5D9D9;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    color: #0F1111;
    font-weight: 500;
  }

  .filter-dropdown-btn:hover {
    background: #F7FAFA;
    border-color: #007185;
  }

  .filter-dropdown-btn i {
    font-size: 0.8rem;
  }

  .filter-divider {
    width: 1px;
    height: 30px;
    background: #D5D9D9;
    margin: 0 4px;
  }

  .sort-dropdown {
    position: relative;
  }

  .sort-select {
    background: white;
    border: 1px solid #D5D9D9;
    padding: 8px 30px 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    color: #0F1111;
    font-weight: 500;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23565959' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: all 0.2s;
  }

  .sort-select:hover {
    background-color: #F7FAFA;
    border-color: #007185;
  }

  .sort-select:focus {
    outline: none;
    border-color: #007185;
    box-shadow: 0 0 0 3px rgba(0, 113, 133, 0.1);
  }

  .filter-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    background: white;
    border: 1px solid #D5D9D9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 12px;
    min-width: 200px;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
  }

  .filter-dropdown-content.show {
    display: block;
  }

  .filter-loading {
    padding: 20px;
    text-align: center;
    color: #565959;
    font-size: 0.9rem;
  }

  .filter-loading i {
    margin-right: 8px;
    color: #007185;
  }

  .filter-empty {
    padding: 15px;
    text-align: center;
    color: #565959;
    font-size: 0.85rem;
  }

  .filter-section h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #0F1111;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
  }

  .filter-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 0.85rem;
    padding: 6px 8px;
    border-radius: 4px;
  }

  .filter-checkbox:hover {
    background: #F7FAFA;
  }

  .filter-checkbox input {
    margin-right: 8px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #007185;
  }

  .filter-checkbox span {
    color: #0F1111;
  }

  .clear-filters-btn {
    background: white;
    color: #CC0C39;
    border: 1px solid #D5D9D9;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
  }

  .clear-filters-btn:hover {
    background: #FEF2F2;
    border-color: #CC0C39;
    color: #B00020;
  }



  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
  }

  .modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .modal-content {
    background: white;
    border-radius: 20px;
    position: relative;
    animation: slideUp 0.4s ease;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    cursor: pointer;
  }

  .product-modal .modal-content {
    position: relative;
    z-index: 10001;
    background: white;
    border-radius: 20px;
    max-width: 1100px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .product-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
  }

  .product-modal-image {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    height: 500px;
  }

  .product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-modal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .product-modal-info h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--text-color);
  }

  .product-modal-info .product-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
  }

  .product-price-large {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
  }

  .product-price-large .price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .product-price-large .price-old {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
  }

  .product-description-full {
    color: #666;
    line-height: 1.8;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .product-specifications {
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .product-specifications h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
  }

  .product-specifications .specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .product-specifications .specs-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
  }

  .product-specifications .specs-list li:last-child {
    border-bottom: none;
  }

  .product-specifications .specs-list li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .product-actions-large {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .product-actions-large .btn {
    flex: 1;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
  }

  .product-meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
  }

  .product-meta p {
    margin: 5px 0;
  }

  @media (max-width: 768px) {
    .product-modal .modal-body {
      grid-template-columns: 1fr;
      padding: 20px;
    }

    .product-modal-image {
      height: 300px;
    }

    .product-price-large .price-current {
      font-size: 1.8rem;
    }
  }

  .product-modal-content {
    max-width: 1200px;
  }

  .quote-modal-content {
    max-width: 700px;
  }

  /* Two-Column Quote Modal Layout */
  .quote-modal-two-col {
    max-width: 900px;
    padding: 0;
  }

  .quote-modal-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    min-height: 500px;
  }

  .quote-form-column {
    padding: 30px;
    background: #fff;
  }

  .quote-form-column h2 {
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: var(--dark-color);
  }

  .quote-form-column .quote-subtitle {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
  }

  .quote-form-column .form-group {
    margin-bottom: 15px;
  }

  .quote-form-column .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #444;
  }

  .quote-form-column .form-group label i {
    margin-right: 6px;
    color: #888;
  }

  .quote-form-column .form-group input,
  .quote-form-column .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
  }

  .quote-form-column .form-group input:focus,
  .quote-form-column .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
  }

  .quote-form-column .form-actions {
    margin-top: 20px;
  }

  .btn-confirm-order {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-confirm-order:hover {
    background: linear-gradient(135deg, #e55a2b, #e08318);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  }

  /* Quote Summary Column (Cart) */
  .quote-summary-column {
    background: #f8f9fa;
    padding: 25px;
    border-left: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
  }

  .quote-summary-column h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    color: #333;
  }

  .quote-summary-column h3 i {
    margin-right: 8px;
    color: var(--primary-color);
  }

  .quote-cart-summary {
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
  }

  .quote-cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .quote-cart-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }

  .quote-cart-item:last-child {
    border-bottom: none;
  }

  .quote-cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
  }

  .quote-cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .quote-cart-item-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
  }

  .quote-cart-item-qty {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }

  .quote-cart-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
  }

  /* Cart Totals */
  .quote-cart-totals {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #ddd;
  }

  .quote-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #555;
  }

  .quote-total-final {
    font-weight: 700;
    font-size: 1.05rem;
    color: #222;
    border-top: 1px solid #ccc;
    padding-top: 12px;
    margin-top: 8px;
  }

  /* Responsive: Stack on mobile */
  @media (max-width: 768px) {
    .quote-modal-two-col {
      max-width: 95%;
      margin: 10px;
    }

    .quote-modal-layout {
      grid-template-columns: 1fr;
    }

    .quote-summary-column {
      border-left: none;
      border-top: 1px solid #e5e5e5;
      max-height: 250px;
      overflow-y: auto;
    }

    .quote-cart-summary {
      max-height: 180px;
    }
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
  }

  /* Product Detail Modal */
  .product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
  }

  .product-detail-image {
    position: relative;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
  }

  .product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .product-detail-info h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin: 0;
  }

  .product-price-large {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .product-price-large .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .product-price-large .old-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
  }

  .product-description,
  .product-specs {
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .product-description h3,
  .product-specs h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
  }

  .product-description p {
    color: #666;
    line-height: 1.8;
  }

  .product-specs ul {
    list-style: none;
    padding: 0;
  }

  .product-specs ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .product-specs ul li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
  }

  .product-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
  }

  .product-actions button {
    flex: 1;
  }

  /* Quote Form Modal */
  .quote-form-container {
    padding: 40px;
  }

  .quote-form-container h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .quote-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Roboto', Arial, sans-serif;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }

  .form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
  }

  .form-actions button {
    padding: 15px 30px;
  }

  .form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    animation: slideDown 0.3s ease;
  }

  .form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  .form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }

  .form-message.info {
    display: block;
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
  }

  /* Loading State */
  .btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
  }

  .btn-loading:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Search Modal Styles */
  .search-modal-content {
    max-width: 700px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .search-container {
    display: flex;
    flex-direction: column;
    height: 500px;
  }
  
  .search-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    gap: 15px;
  }
  
  .search-header i {
    font-size: 1.5rem;
  }
  
  .search-header input {
    flex: 1;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
  }
  
  .search-header input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .search-header input:focus {
    background: rgba(255, 255, 255, 0.3);
  }
  
  .search-filters {
    display: flex;
    gap: 10px;
    padding: 15px 25px;
    background: #f8f9fa;
    overflow-x: auto;
    flex-wrap: wrap;
  }
  
  .filter-chip {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .filter-chip:hover {
    background: var(--light-color);
  }
  
  .filter-chip.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  .search-results {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
  }
  
  .search-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    text-align: center;
  }
  
  .search-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .search-result-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: white;
    border: 1px solid #e0e0e0;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .search-result-item:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
  }
  
  .search-result-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .search-result-title {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1rem;
  }
  
  .search-result-category {
    color: var(--accent-color);
    font-size: 0.85rem;
    text-transform: capitalize;
    margin-bottom: 5px;
  }
  
  .search-result-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #999;
  }
  
  .search-no-results i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
  }

  .search-hint {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 8px;
  }

  .search-shortcut {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: monospace;
    display: none;
  }

  @media (min-width: 768px) {
    .search-shortcut {
      display: inline-block;
    }
  }

  .search-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #999;
  }

  .search-loading i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
  }

  .search-result-item mark {
    background: rgba(255, 105, 0, 0.2);
    color: var(--primary-color);
    padding: 0 2px;
    border-radius: 2px;
  }

  .search-result-arrow {
    display: flex;
    align-items: center;
    color: #ccc;
    transition: all 0.3s ease;
  }

  .search-result-item:hover .search-result-arrow {
    color: var(--primary-color);
    transform: translateX(3px);
  }

  .search-result-category i {
    margin-right: 5px;
    font-size: 0.75rem;
  }
  
  /* Shopping Cart Sidebar */
  .cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
  }
  
  .cart-sidebar.active {
    right: 0;
  }
  
  .cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .cart-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
  }
  
  .cart-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  
  .cart-close:hover {
    transform: scale(1.2);
  }
  
  .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
  }
  
  .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #999;
  }
  
  .cart-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
  }
  
  .cart-empty p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }
  
  .cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .cart-item-title {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .cart-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
  
  .quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .quantity-btn {
    background: var(--light-color);
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .quantity-btn:hover {
    background: var(--primary-color);
    color: white;
  }
  
  .quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
  }
  
  .remove-item-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: all 0.3s ease;
  }
  
  .remove-item-btn:hover {
    color: #c82333;
    transform: scale(1.2);
  }
  
  .cart-footer {
    border-top: 1px solid #e0e0e0;
    padding: 20px 25px;
    background: #f8f9fa;
  }
  
  .cart-summary {
    margin-bottom: 20px;
  }
  
  .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
  }
  
  .summary-row.total {
    border-top: 2px solid var(--primary-color);
    padding-top: 15px;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .cart-actions {
    display: flex;
    gap: 10px;
  }
  
  .cart-actions button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-secondary {
    background: #6c757d;
    color: white;
  }
  
  .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
  }
  
  /* Keyboard Shortcut Indicator */
  .search-shortcut {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 9999;
    opacity: 0;
    animation: fadeInOut 3s ease;
  }

  /* Mobile Bottom Navigation */
  .bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  }

  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    color: #565959;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    position: relative;
  }

  .bottom-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }

  .bottom-nav-item span {
    font-weight: 500;
  }

  .bottom-nav-item.active {
    color: #007185;
  }

  .bottom-nav-item:hover {
    color: #007185;
    background: #F7FAFA;
  }

  .cart-badge[data-count]::after {
    content: attr(data-count);
    position: absolute;
    top: 4px;
    right: 50%;
    transform: translateX(10px);
    background: #CC0C39;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
  }
  }
  
  @keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
  }

/* =====================================================
   PERFORMANCE: Skeleton Loading & Lazy Image Styles
   ===================================================== */

/* Skeleton Shimmer Animation */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Skeleton card base */
.skeleton-card {
  pointer-events: none;
  background: #fff;
}

.skeleton-card .skeleton-image {
  height: 220px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
  border-radius: 8px 8px 0 0;
}

.skeleton-card .skeleton-text {
  height: 14px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-card .skeleton-button {
  height: 40px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
  border-radius: 8px;
  margin-top: 12px;
}

/* Lazy loading images */
.lazy-image {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background: #f5f5f5;
}

.lazy-image.loaded,
.lazy-image[src]:not([src^="data:"]) {
  opacity: 1;
}

/* Product image container - ensure consistent sizing */
.product-card .product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f9f9f9;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Toast notification slide-in */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast-notification {
  animation: slideIn 0.3s ease forwards;
}

/* Load more trigger - invisible element */
.load-more-trigger {
  visibility: hidden;
}

/* Product modal improvements */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.product-modal .modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  transition: all 0.2s ease;
}

.product-modal .modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.product-modal .modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

@media (max-width: 768px) {
  .product-modal .modal-body {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

.product-modal .product-modal-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.product-modal .product-modal-info h2 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #333;
}

.product-modal .product-description-full {
  color: #666;
  line-height: 1.7;
  margin: 15px 0;
}

.product-modal .product-specifications h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.product-modal .specs-list {
  list-style: none;
  padding: 0;
}

.product-modal .specs-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-modal .specs-list li i {
  color: var(--primary-color);
}

.product-modal .product-actions-large {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.product-modal .product-actions-large .btn {
  flex: 1;
  padding: 14px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-modal .product-actions-large .btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
}

.product-modal .product-actions-large .btn-primary:hover {
  background: var(--secondary-color);
}

.product-modal .product-actions-large .btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.product-modal .product-actions-large .btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.product-modal .product-meta {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #888;
}

/* ================================
   Breadcrumb Styles
   ================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent;
  align-items: center;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 10px;
  color: #999;
}

.breadcrumb-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: #333;
  font-weight: 500;
}

/* ================================
   Product Detail Page
   ================================ */
.product-detail {
  background: #fff;
}

.product-gallery .main-image {
  background: #fff;
}

.product-gallery .thumbnail {
  transition: border-color 0.2s ease;
}

.product-gallery .thumbnail:hover {
  border-color: var(--primary-color) !important;
}

.product-gallery .thumbnail.active {
  border-color: var(--primary-color) !important;
}

.product-info .category-badge {
  text-transform: capitalize;
}

.product-info .product-rating i {
  font-size: 0.9rem;
}

.product-info .current-price {
  color: var(--primary-color);
}

.product-info .old-price {
  color: #999;
}

.product-info .stock-status i {
  margin-right: 5px;
}

.trust-badges div {
  min-width: 80px;
}

@media (max-width: 768px) {
  .product-detail .row {
    flex-direction: column;
  }
  
  .product-detail .col-lg-6 {
    width: 100%;
  }
  
  .product-info {
    padding-top: 30px;
  }
  
  .product-info h1 {
    font-size: 1.5rem !important;
  }
  
  .product-info .current-price {
    font-size: 2rem !important;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .product-actions .btn {
    width: 100%;
  }
}

/* ================================
   TURBO LOADER - Footer Loading Animation
   ================================ */

/* Unsteady blinking animation for footer while loading */
@keyframes turboFooterBlink {
  0% { opacity: 1; }
  10% { opacity: 0.4; }
  15% { opacity: 0.9; }
  25% { opacity: 0.3; }
  35% { opacity: 1; }
  40% { opacity: 0.5; }
  50% { opacity: 0.8; }
  55% { opacity: 0.2; }
  65% { opacity: 0.95; }
  70% { opacity: 0.4; }
  80% { opacity: 0.85; }
  85% { opacity: 0.55; }
  90% { opacity: 0.3; }
  95% { opacity: 0.75; }
  100% { opacity: 1; }
}

@keyframes turboFooterGlow {
  0%, 100% { box-shadow: 0 -2px 10px rgba(255, 105, 0, 0.3); }
  25% { box-shadow: 0 -4px 20px rgba(255, 105, 0, 0.6); }
  50% { box-shadow: 0 -2px 15px rgba(255, 105, 0, 0.2); }
  75% { box-shadow: 0 -6px 25px rgba(255, 105, 0, 0.5); }
}

@keyframes turboLoadingBar {
  0% { width: 0%; left: 0; }
  50% { width: 100%; left: 0; }
  100% { width: 0%; left: 100%; }
}

footer.turbo-loading {
  position: relative;
  /* Smooth animation without jarring blink - prevents scroll vibration */
  will-change: opacity, box-shadow;
  animation: turboFooterGlow 2s ease-in-out infinite;
}

footer.turbo-loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  animation: turboLoadingBar 1.2s ease-in-out infinite;
  z-index: 10;
}

footer.turbo-loading::after {
  content: '⚡ Loading...';
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 105, 0, 0.4);
  animation: turboFooterBlink 0.6s ease-in-out infinite;
  z-index: 10;
}

/* Global loading state indicator */
body.turbo-loading-active::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
  animation: turboLoadingBar 1s ease-in-out infinite;
  z-index: 99999;
}

/* Turbo skeleton cards with enhanced animation */
.turbo-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: turboShimmer 1.2s ease-in-out infinite !important;
}

@keyframes turboShimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.turbo-skeleton .skeleton-image {
  background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
  background-size: 400% 100%;
  animation: turboShimmer 1s ease-in-out infinite;
  height: 180px;
  border-radius: 8px 8px 0 0;
}

.turbo-skeleton .skeleton-text {
  background: linear-gradient(90deg, #e8e8e8 25%, #ddd 50%, #e8e8e8 75%);
  background-size: 400% 100%;
  animation: turboShimmer 1s ease-in-out infinite;
  border-radius: 4px;
  height: 16px;
}

.turbo-skeleton .skeleton-button {
  background: linear-gradient(90deg, #ddd 25%, #ccc 50%, #ddd 75%);
  background-size: 400% 100%;
  animation: turboShimmer 1s ease-in-out infinite;
  border-radius: 6px;
  height: 40px;
  width: 100%;
}

/* Image loading transition */
img.lazy-image {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

img.lazy-image.loaded {
  opacity: 1;
}

/* Fast fade-in for loaded content */
@keyframes turboFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.turbo-loaded {
  animation: turboFadeIn 0.25s ease-out forwards;
}

/* ================================
   Pagination Controls
   ================================ */
.pagination-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.pagination-btn {
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #333;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  min-width: 40px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.pagination-btn:hover {
  background: #f7f7f7;
  border-color: #d6d6d6;
}

.pagination-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.pagination-btn:disabled,
.pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-ellipsis {
  color: #777;
  padding: 0 6px;
}

/* ================================
   Live Updates Widget (UI Feedback)
   ================================ */
.realtime-widget {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 10002;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: min(360px, calc(100vw - 36px));
}

.realtime-widget .rt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff9800;
  flex: 0 0 auto;
}

.realtime-widget.connected .rt-dot {
  background: #2ecc71;
  animation: rtPulse 1.8s ease-in-out infinite;
}

.realtime-widget.polling .rt-dot {
  background: #ff9800;
}

.realtime-widget.updating .rt-dot {
  background: var(--primary-color);
  animation: rtSpinPulse 0.9s linear infinite;
}

.realtime-widget .rt-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.realtime-widget .rt-title {
  font-size: 12px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
}

.realtime-widget .rt-sub {
  font-size: 11px;
  color: #666;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.realtime-widget .rt-action {
  margin-left: 6px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #333;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.realtime-widget .rt-action:hover {
  border-color: rgba(0,0,0,0.2);
  background: #f7f7f7;
}

@keyframes rtPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.65; }
}

@keyframes rtSpinPulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.25); opacity: 0.6; }
  100% { transform: scale(1); opacity: 0.9; }
}
