/* Categories Page Specific Styles */
  
  .categories-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .categories-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .categories-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
  }
  
  .categories-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .category-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  
  .category-search {
    position: relative;
    flex: 1;
    max-width: 400px;
  }
  
  .category-search input {
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
  }
  
  .category-search input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  }
  
  .category-search i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    pointer-events: none;
  }
  
  .category-sort select {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .category-sort select:focus {
    border-color: var(--primary-color);
  }
  
  .all-categories-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .category-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .category-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    /* margin-bottom: 1.5rem; */
    /* padding-bottom: 0.5rem; */
    border-bottom: 2px solid rgb(234, 230, 230);
    display: inline-block;
  }
  
  .category-section .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    width: 100%;
  }
  
  .category-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .category-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
  }
  
  .category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #dfdfdf;
  }
  
  .category-card h3 {
    padding: 1.2rem 0;
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .category-count {
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin: 0;
    padding: 0.5rem;
    text-align: center;
  }
  
  /* Footer */
  .footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
    padding-bottom: 2rem;
  }
  
  .footer-brand {
    flex: 1 1 100%;
    text-align: left;
    max-width: 350px;
    padding: 0 1rem;
  }
  
  .footer-brand h3 {
    color: #ffffff;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
  }
  
  .footer-brand p {
    color: #b3b3b3;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.5px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.6rem;
  }
  
  .footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-section ul li a:hover {
    color: #ffffff;
  }
  
  /* Footer Bottom Content */
  .footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
  }
  
  .app-download,
  .social-links,
  .payment-methods {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .payment-methods {
    align-items: flex-end;
  }
  
  .social-icons {
    justify-content: center;
    width: 100%;
  }
  
  .app-download p {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }
  
  .app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .app-store,
  .play-store {
    display: flex;
    align-items: center;
    background: #2d2d2d;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .app-store:hover,
  .play-store:hover {
    background: #3d3d3d;
  }
  
  .app-store i,
  .play-store i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }
  
  .app-store span,
  .play-store span {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  .app-store strong,
  .play-store strong {
    font-size: 0.9rem;
  }
  
  .social-links {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .social-icons a {
    color: #b3b3b3;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .social-icons .x-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .social-icons .x-logo svg {
    width: 1.1rem;
    height: 1.1rem;
    color: #b3b3b3;
    transition: color 0.3s ease;
  }
  
  .social-icons .x-logo:hover svg {
    color: #ffffff;
  }
  
  .social-icons a:hover {
    color: #ffffff;
  }
  
  .payment-methods {
    flex: 1;
    min-width: 250px;
    text-align: center;
    align-items: center;
  }
  
  .payment-methods p {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }
  
  .payment-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  
  .payment-icons i {
    font-size: 1.8rem;
    color: #b3b3b3;
    transition: color 0.3s ease;
  }
  
  .payment-icons i:hover {
    color: #ffffff;
  }
  
  /* Login Page Styles */
  .login-page-wrapper {
    display: flex;
    min-height: 100vh;
  }
  
  .login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    min-height: 100vh;
    overflow-y: auto;
    padding: 2rem 4rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  
  .back-link:hover {
    text-decoration: underline;
  }
  
  .login-header h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black;
    font-weight: bold;
  }
  
  .login-header p {
    color: #64748b;
    margin-bottom: 2rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 0.75rem 0.75rem;
    border: 1px solid black;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: transparent;
  }
  
  input[type="text"]:focus {
    outline: none;
  }
  
  button[type="submit"] {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: black;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 0.5rem;
  }
  
  
  .welcome-section {
    width: 45%;
    min-height: 100vh;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #c7d2fe 0%, #e0e7ff 100%);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  
  .welcome-content {
    max-width: 400px;
    position: relative;
    z-index: 1;
    color: black;
    text-align: center;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .welcome-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .welcome-content p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
  }