.app-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 150px;
}

.app-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 1.5rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-text small {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 2px;
}

.app-btn-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}
















/* styles.css - Orange, Black & White Theme */
      :root {
        /* Color Scheme */
        --primary: #f9622c; /* Vibrant Orange */
        --primary-light: #f9622c;
        --primary-dark: #f9622c;
        --secondary: #000000; /* Black */
        --secondary-light: #333333;
        --accent: #f9622c; /* Darker Orange */
        --dark: #212121;
        --light: #ffffff;
        --gray: #757575;
        --light-gray: #eeeeee;
        --white: #ffffff;
        --success: #4caf50;
        --warning: #ffc107;
        --gold: #ffd700;

        /* Shadows */
        --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
        --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
        --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);

        /* Border Radius */
        --border-radius: 12px;
        --border-radius-large: 20px;

        /* Transitions */
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      /* Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

     body {
  background: url('/images/logo.png') no-repeat center center/cover;
  margin: 0;
  padding-top: 80px; /* Adjust based on header height */
}


      .container {
        max-width: 50px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Loading Animation */
      .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        transition: opacity 0.5s ease-out;
      }

      .loading-spinner {
        width: 50px;
        height: 50px;
        border: 4px solid var(--light-gray);
        border-top: 4px solid var(--primary);
        border-radius: 50%;
        animation: spin 1s linear infinite;
      }

      @keyframes spin {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      /* Header Styles */
      /* Add to your CSS file */
      /* Country Flags in Navbar */
      .country-flags {
        display: flex;
        gap: 0.5rem;
        margin-left: 1rem;
      }

      .country-flag.uganda {
        background: linear-gradient(
          to bottom,
          #ffd100,
          #ffd100 33%,
          #000 33%,
          #000 66%,
          #ff0000 66%
        );
        color: #000;
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.3rem;
      }

      .country-flag.rwanda {
        background: linear-gradient(
          to bottom,
          #20603d,
          #20603d 50%,
          #fad201 50%,
          #fad201 75%,
          #00a1de 75%
        );
        color: white;
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.3rem;
      }

      /* Remove cart icon from nav-right */
      .nav-right {
        gap: 0; /* Remove the gap since we only have menu button now */
      }

      /* Adjust mobile menu styles */
      @media (max-width: 968px) {
        .country-flags {
          display: none; /* Hide flags on mobile */
        }

        .nav-links {
          flex-direction: column;
          align-items: flex-start;
          padding: 1rem;
        }

        .nav-links li {
          width: 100%;
        }

        .nav-links a {
          padding: 0.8rem 0;
          display: block;
        }
      }
      header {
  background: transparent;
  color: var(--dark);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: var(--transition);
  border-bottom: none;
}

      .header-scrolled {
        padding: 0.5rem 0;
        box-shadow: var(--shadow-medium);
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        font-size: 1.7rem;
        font-weight: 800;
        color: var(--primary);
        text-decoration: none;
      }

      .logo img {
        height: 40px;
        width: auto;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
        list-style: none;
      }

      .nav-links li {
        display: flex;
        align-items: center;
      }

      .nav-links a {
        color: var(--dark);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        padding: 0.5rem 0;
      }

      .nav-links a:hover {
        color: var(--primary);
      }

      .nav-links a:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
      }

      .nav-links a:hover:after {
        width: 100%;
      }

      .nav-right {
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }

      .search-box {
        position: relative;
        display: none;
      }

      .search-input {
        padding: 0.5rem 1rem;
        border: 2px solid var(--light-gray);
        border-radius: 25px;
        width: 200px;
        transition: var(--transition);
      }

      .search-input:focus {
        outline: none;
        border-color: var(--primary);
        width: 250px;
      }

      .cart-icon {
        background: var(--primary);
        color: white;
        padding: 0.6rem;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        position: relative;
        font-size: 1.1rem;
      }

      .cart-icon:hover {
        background: var(--primary-dark);
        transform: scale(1.1);
        box-shadow: var(--shadow-medium);
      }

      .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--accent);
        color: white;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        font-weight: bold;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.1);
        }
        100% {
          transform: scale(1);
        }
      }

      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark);
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(
            135deg,
            rgba(255, 107, 0, 0.9),
            rgba(0, 0, 0, 0.8)
          );
          
         
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        color: white;
        text-align: center;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
       
      } */

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      }

      .hero-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 8;
      }

       .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        animation: fadeInUp 1s ease-out;
      } 

      .hero-content h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        margin-bottom: 1.5rem;
        font-weight: 800;
        line-height: 1.2;
        animation: fadeInUp 1s ease-out 0.2s both;
      } */

       .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        opacity: 0.95;
        line-height: 1.7;
        animation: fadeInUp 1s ease-out 0.4s both;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      } 

      .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease-out 0.6s both;
      }

      .cta-button {
        background: var(--primary);
        color: white;
        padding: 1.2rem 2.5rem;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        overflow: hidden;
      }

      .cta-button:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
      }

      .cta-button.secondary {
        background: transparent;
        border: 2px solid white;
        color: white;
      }

      .cta-button.secondary:hover {
        background: white;
        color: var(--primary);
        box-shadow: var(--shadow-medium);
      }

      /* Trust Indicators */
      .trust-indicators {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 3rem;
        color: rgba(255, 255, 255, 0.9);
        animation: fadeInUp 1s ease-out 0.8s both;
      }

      .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
      }

      .trust-item i {
        font-size: 1.5rem;
        color: var(--gold);
      }

      /* Featured Products */
      .featured {
        padding: 6rem 0;
        background: var(--light);
        position: relative;
      }

      .section-header {
        text-align: center;
        margin-bottom: 4rem;
      }

      .section-badge {
        display: inline-block;
        background: var(--primary-light);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
      }

      .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1.5rem;
        color: var(--dark);
        font-weight: 800;
        position: relative;
      }

      .section-subtitle {
        font-size: 1.2rem;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
      }

      .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        margin-bottom: 3rem;
      }

      .product-card {
        background: white;
        border-radius: var(--border-radius-large);
        overflow: hidden;
        box-shadow: var(--shadow-light);
        transition: var(--transition);
        cursor: pointer;
        border: 1px solid var(--light-gray);
        position: relative;
      }

      .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-heavy);
        border-color: var(--primary-light);
      }

      .product-image {
        height: 280px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        overflow: hidden;
      }

      .product-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: var(--primary);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 2;
      }

      .product-badges {
        position: absolute;
        top: 1rem;
        right: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        z-index: 2;
      }

      .authentic-badge {
        background: var(--success);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.7rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.3rem;
      }

      .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .product-card:hover .product-overlay {
        opacity: 1;
      }

      .quick-actions {
        display: flex;
        gap: 1rem;
      }

      .quick-action {
        background: white;
        color: var(--dark);
        padding: 0.8rem;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition);
        border: none;
        font-size: 1.1rem;
      }

      .quick-action:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
      }

      .product-info {
        padding: 2rem;
      }

      .product-category {
        color: var(--primary);
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
      }

      .product-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--dark);
        font-weight: 700;
        line-height: 1.3;
      }

      .product-info p {
        color: var(--gray);
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
      }

      .product-price {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 1.5rem;
      }

      .vendor-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid var(--light-gray);
      }

      .vendor-details {
        display: flex;
        align-items: center;
        gap: 0.8rem;
      }

      .vendor-avatar {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: var(--primary-light);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.9rem;
      }

      .vendor-name {
        font-size: 0.9rem;
        color: var(--gray);
        font-weight: 500;
      }

      .country-flag {
        padding: 0.4rem 0.8rem;
        background: var(--secondary);
        color: white;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.3rem;
      }

      .rating {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        margin-bottom: 1rem;
      }

      .stars {
        color: var(--gold);
      }

      .rating-text {
        color: var(--gray);
        font-size: 0.9rem;
      }

      /* Categories */
      .categories {
        padding: 6rem 0;
        background: white;
      }

      .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
      }

      .category-card {
        text-align: center;
        padding: 2.5rem 1.5rem;
        border-radius: var(--border-radius-large);
        background: white;
        color: var(--dark);
        cursor: pointer;
        transition: var(--transition);
        border: 2px solid var(--light-gray);
        position: relative;
        overflow: hidden;
      }

      .category-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 107, 0, 0.1),
          transparent
        );
        transition: left 0.6s;
      }

      .category-card:hover::before {
        left: 100%;
      }

      .category-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-medium);
        border-color: var(--primary);
      }

      .category-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        color: var(--primary);
        transition: var(--transition);
      }

      .category-card:hover .category-icon {
        transform: scale(1.1);
        color: var(--primary-dark);
      }

      .category-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }

      .category-count {
        color: var(--gray);
        font-size: 0.9rem;
      }

      /* About Section */
      .about {
        padding: 6rem 0;
        background: var(--light);
      }

      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .about-text h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
        margin-bottom: 2rem;
        color: var(--dark);
        font-weight: 800;
        line-height: 1.3;
      }

      .about-text p {
        color: var(--gray);
        margin-bottom: 2rem;
        line-height: 1.8;
        font-size: 1.1rem;
      }

      .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
      }

      .stat {
        text-align: center;
        background: white;
        padding: 2rem 1.5rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-light);
        transition: var(--transition);
      }

      .stat:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
      }

      .stat-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
      }

      .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 0.5rem;
      }

      .stat-label {
        color: var(--gray);
        font-size: 1rem;
        font-weight: 500;
      }

      .about-image {
        border-radius: var(--border-radius-large);
        overflow: hidden;
        box-shadow: var(--shadow-heavy);
        position: relative;
      }

      .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: var(--transition);
      }

      .about-image:hover img {
        transform: scale(1.05);
      }

      .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.9);
        color: var(--primary);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        cursor: pointer;
        transition: var(--transition);
        backdrop-filter: blur(10px);
      }

      .play-button:hover {
        background: var(--primary);
        color: white;
        transform: translate(-50%, -50%) scale(1.1);
      }

      /* Testimonials */
      .testimonials {
        padding: 6rem 0;
        background: var(--secondary);
        color: white;
      }

      .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
      }

      .testimonial-card {
        background: rgba(255, 255, 255, 0.1);
        padding: 2.5rem;
        border-radius: var(--border-radius);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        transition: var(--transition);
      }

      .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
      }

      .testimonial-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0 auto 1.5rem;
        background: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
      }

      .testimonial-text {
        font-style: italic;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        line-height: 1.7;
      }

      .testimonial-author {
        font-weight: 600;
        margin-bottom: 0.5rem;
      }

      .testimonial-role {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
      }

      /* Newsletter */
      .newsletter {
        padding: 4rem 0;
        background: var(--primary);
        color: white;
        text-align: center;
      }

      .newsletter h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        font-weight: 700;
      }

      .newsletter p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
      }

      .newsletter-form {
        display: flex;
        justify-content: center;
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
      }

      .newsletter-input {
        flex: 1;
        padding: 1rem 1.5rem;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
      }

      .newsletter-input:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
      }

      .newsletter-btn {
        background: var(--secondary);
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
      }

      .newsletter-btn:hover {
        background: var(--secondary-light);
        transform: scale(1.05);
      }

      /* Footer */
      footer {
        background: var(--secondary);
        color: white;
        padding: 4rem 0 2rem;
      }

      .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
      }

      .footer-brand {
        max-width: 350px;
      }

      .footer-brand .logo {
        color: var(--primary);
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .footer-section h3 {
        color: var(--primary);
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
        font-weight: 700;
      }

      .footer-section p {
        color: #aaa;
        margin-bottom: 2rem;
        line-height: 1.8;
      }

      .footer-section a {
        color: #ccc;
        text-decoration: none;
        display: block;
        margin-bottom: 0.8rem;
        transition: var(--transition);
        font-size: 0.95rem;
      }

      .footer-section a:hover {
        color: var(--primary);
        padding-left: 5px;
      }

 .social-links a {
  margin-right: 1.5rem; /* Increased spacing between icons */
  text-decoration: none;
}

.social-links a i {
  font-size: 1.5rem;
  color: #f9622c;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover i {
  color: #f9622c;
  transform: scale(1.2);
}



      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        text-align: center;
        color: #666;
        font-size: 0.9rem;
      }

      /* Cart Modal */
      .modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
      }

      .modal-content {
        background-color: white;
        margin: 5% auto;
        padding: 0;
        border-radius: var(--border-radius-large);
        width: 90%;
        max-width: 600px;
        max-height: 80vh;
        overflow-y: auto;
        animation: fadeInUp 0.3s ease-out;
        box-shadow: var(--shadow-heavy);
      }

      .modal-header {
        padding: 2rem 2rem 1rem;
        border-bottom: 1px solid var(--light-gray);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .modal-header h2 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
      }

      .close {
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--gray);
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 50%;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
      }

      .close:hover {
        background: var(--light-gray);
        color: var(--primary);
      }

      .modal-body {
        padding: 1rem 2rem 2rem;
      }

      .cart-item {
        display: flex;
        gap: 1rem;
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--light-gray);
        align-items: center;
      }

      .cart-item:last-child {
        border-bottom: none;
      }

      .cart-item-image {
        width: 80px;
        height: 80px;
        background-size: cover;
        background-position: center;
        border-radius: var(--border-radius);
        flex-shrink: 0;
      }

      .cart-item-details {
        flex: 1;
      }

      .cart-item-name {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--dark);
      }

      .cart-item-country {
        font-size: 0.9rem;
        color: var(--gray);
        margin-bottom: 0.5rem;
      }

      .cart-item-price {
        font-weight: 700;
        color: var(--primary);
        font-size: 1.1rem;
      }

      .cart-item-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
      }

      .quantity-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .quantity-btn {
        background: var(--light-gray);
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .quantity-btn:hover {
        background: var(--primary);
        color: white;
      }

      .quantity {
        min-width: 30px;
        text-align: center;
        font-weight: 600;
      }

      .remove-btn {
        background: transparent;
        color: var(--gray);
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        transition: var(--transition);
        padding: 0.5rem;
        border-radius: 50%;
      }

      .remove-btn:hover {
        color: var(--accent);
        background: rgba(231, 76, 60, 0.1);
      }

      .cart-empty {
        text-align: center;
        color: var(--gray);
        padding: 3rem 2rem;
      }

      .cart-empty i {
        font-size: 4rem;
        color: var(--light-gray);
        margin-bottom: 1rem;
      }

      .cart-summary {
        background: var(--light);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        margin-top: 1.5rem;
      }

      .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
      }

      .summary-total {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--dark);
        border-top: 1px solid var(--light-gray);
        padding-top: 1rem;
        margin-top: 1rem;
      }

      .checkout-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 1.2rem;
        width: 100%;
        border-radius: var(--border-radius);
        font-weight: 700;
        font-size: 1.1rem;
        margin-top: 1.5rem;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
      }

      .checkout-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
      }

      .checkout-btn:disabled {
        background: var(--gray);
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes slideInRight {
        from {
          opacity: 0;
          transform: translateX(30px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      /* Scroll to top button */
      .scroll-to-top {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: var(--primary);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        transition: var(--transition);
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        z-index: 100;
      }

      .scroll-to-top:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: var(--shadow-medium);
      }

      .scroll-to-top.show {
        display: flex;
      }

      /* Contact Section */
      #contact .featured {
        background: white;
      }

      #contact .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
      }

      #contact h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }

      #contact .social-links {
        margin-top: 2rem;
      }

      #contact form {
        display: grid;
        gap: 1rem;
      }

      #contact form input,
      #contact form textarea {
        padding: 1rem;
        border: 1px solid var(--light-gray);
        border-radius: var(--border-radius);
      }

      #contact form textarea {
        resize: vertical;
        min-height: 150px;
      }

      /* Mobile Responsive */
      @media (max-width: 968px) {
        .nav-links {
          display: none;
        }

        .mobile-menu-btn {
          display: block;
        }

        .search-box {
          display: none;
        }

        .hero {
          height: 80vh;
          min-height: 500px;
          background-attachment: scroll;
        }

        .hero-buttons {
          flex-direction: column;
          align-items: center;
        }

        .trust-indicators {
          flex-wrap: wrap;
          gap: 2rem;
        }

        .about-content {
          grid-template-columns: 1fr;
        }

        .stats {
          grid-template-columns: 1fr;
        }

        .footer-content {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .newsletter-form {
          flex-direction: column;
        }

        .modal-content {
          margin: 10% auto;
          width: 95%;
        }

        .cart-item {
          flex-direction: column;
          text-align: center;
          gap: 1rem;
        }

        .cart-item-details {
          text-align: center;
        }

        #contact .about-content {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 640px) {
        .hero-content h1 {
          font-size: 2rem;
        }

        .section-title {
          font-size: 1.8rem;
        }

        .product-grid {
          grid-template-columns: 1fr;
        }

        .category-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* Loading states */
      .loading {
        opacity: 0.7;
        pointer-events: none;
      }

      .btn-loading {
        position: relative;
        color: transparent;
      }

      .btn-loading::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        top: 50%;
        left: 50%;
        margin-left: -10px;
        margin-top: -10px;
        border: 2px solid transparent;
        border-top-color: currentColor;
        border-radius: 50%;
        animation: spin 1s linear infinite;
      }

      /* Success/Error states */
      .success-message {
        background: var(--success);
        color: white;
        padding: 1rem 1.5rem;
        border-radius: var(--border-radius);
        margin: 1rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
      }

      .error-message {
        background: var(--accent);
        color: white;
        padding: 1rem 1.5rem;
        border-radius: var(--border-radius);
        margin: 1rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      /* Custom scrollbar */
      ::-webkit-scrollbar {
        width: 8px;
      }

      ::-webkit-scrollbar-track {
        background: var(--light-gray);
      }

      ::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 4px;
      }

      ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
      }

      /* New Styles for Header and Hero Section */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 32px;
      }
      header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 100;
      }
      .xt-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 90px;
      }
      .xt-nav-left {
        display: flex;
        align-items: center;
        gap: 2rem;
      }
      .xt-logo {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        font-size: 2rem;
        font-weight: 800;
        color: #f9622c;
        text-decoration: none;
      }
      .xt-logo img {
        height: 40px;
        width: auto;
      }
      .xt-nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
        list-style: none;
      }
      .xt-nav-links li {
        display: flex;
        align-items: center;
      }
      .xt-nav-links a {
        color: #212121;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: color 0.3s;
      }
      .xt-nav-links a:hover {
        color: #f9622c;
      }
      .country-flags {
        display: flex;
        gap: 0.5rem;
        margin-left: 1rem;
      }
      .country-flag.uganda {
        background: linear-gradient(90deg, #f9622c 50%, #000 50%);
        color: #000;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
      }
      .country-flag.rwanda {
        background: linear-gradient(
          180deg,
          #20603d 33%,
          #fad201 33% 66%,
          #00a1de 66%
        );
        color: #fff;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
      }
      .xt-download-btn {
        background: #fff;
        color: #f9622c;
        border: 2px solid #f9622c;
        padding: 0.7rem 2rem;
        border-radius: 30px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        transition: background 0.3s, color 0.3s;
      }
      .xt-download-btn:hover {
        background: #f9622c;
        color: #fff;
      }
      .xt-hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(180deg, #fff 60%, #ffecd2 100%);
        min-height: 400px;
        padding-top: 100px;
        padding-bottom: 40px;
      }
      .xt-hero-content {
        flex: 1;
        max-width: 600px;
        padding-left: 40px;
      }
      .xt-hero-content h1 {
        color: #ff6b00;
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
      }
      .xt-hero-content p {
        color: #757575;
        font-size: 1.2rem;
        margin-bottom: 2rem;
      }


      @media (max-width: 900px) {
        .xt-hero {
          flex-direction: column;
          padding-top: 120px;
        }
        .xt-hero-content {
          padding-left: 0;
          max-width: 100%;
          text-align: center;
        }
        .xt-hero-image {
          margin-top: 2rem;
        }
        .xt-nav {
          flex-direction: column;
          height: auto;
          gap: 1rem;
        }
        .xt-nav-left {
          flex-direction: column;
          gap: 1rem;
        }
        .xt-nav-links {
          flex-direction: column;
          gap: 1rem;
        }
      }

      