    .zuddo-headers {
        background: linear-gradient(135deg, #ffffff 0%, #d8d8d8 100%);
        padding: 12px 0;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .zuddo-headers .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .logo img {
        height: 40px;
        width: auto;
    }
    
    nav {
        flex-grow: 1;
        margin: 0 20px;
    }
    
    nav ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
    }
    
    nav ul li {
        margin: 0 15px;
        position: relative;
    }
    
    nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    nav ul li a i {
        margin-right: 8px;
        font-size: 16px;
    }
    
    nav ul li a:hover {
        color: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
    }
    
    .location-selector {
        display: flex;
        align-items: center;
        margin-right: 15px;
        color: rgb(39, 233, 120);
        font-weight: 500;
    }
    
    .location-selector i {
        margin-right: 5px;
        font-size: 16px;
    }
    
    .location-dropdown {
        background: transparent;
        border: 1px solid rgba(100, 177, 129, 0.3);
        color: rgb(0, 0, 0);
        border-radius: 4px;
        padding: 5px 10px;
        font-size: 14px;
        cursor: pointer;
    }
    
    .location-dropdown option {
        background: #83f5a96b;
        color: white;
    }
    
    .user-section {
        display: flex;
        align-items: center;
    }
    
    .user-profile {
        display: flex;
        align-items: center;
        margin-right: 20px;
        text-decoration: none;
        color: white;
    }
    
    .user-profile img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.3);
        margin-right: 10px;
        object-fit: cover;
    }
    
    .user-info {
        display: flex;
        flex-direction: column;
    }
    
    .user-info b {
        font-size: 14px;
        line-height: 1.2;
    }
    
    .user-info small {
        font-size: 11px;
        opacity: 0.8;
    }
    
    .header-icons {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .header-icons a {
        color: rgb(84, 236, 165);
        font-size: 18px;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .header-icons a:hover {
        color: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
    }
    .cart-icon {
        position: relative;
        cursor: pointer;
    }
    
    .cart-icon i {
        font-size: 22px;
        color: rgb(84, 236, 165);
    }
    
    .cart-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background: #E74C3C;
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: bold;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .mobile-nav {
        display: none;
        background: white;
        position: absolute;
        width: 15%;
        top: 100%;
        
        right: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 15px;
        z-index: 999;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav ul li {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-nav ul li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav ul li a {
        color: #5DADE2;
        text-decoration: none;
        display: flex;
        align-items: center;
        font-weight: 500;
    }
    
    .mobile-nav ul li a i {
        margin-right: 10px;
        color: #5DADE2;
        width: 20px;
        text-align: center;
    }

     .marketplace-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .hero-section {
    background: linear-gradient(135deg, #66ead0 0%, #4b65a2 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-search {
    max-width: 800px;
    margin: 0 auto 40px;
  }
  
  .search-wrapper {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .search-wrapper:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  
  .search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
  }
  
  .search-icon {
    color: #666;
    margin-right: 12px;
    font-size: 1.1rem;
  }
  
  .search-input {
    flex: 1;
    border: none;
    padding: 18px 0;
    font-size: 1.05rem;
    outline: none;
  }
  
  .location-filter {
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    position: relative;
  }
  .listing-details {
    padding: 15px;
  }
  
  .location-filter::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #eee;
  }
  
  .location-icon {
    color: #666;
    margin-right: 10px;
    font-size: 1.1rem;
  }
  
  .location-select {
    border: none;
    padding: 18px 0;
    font-size: 1.05rem;
    outline: none;
    background: white;
    cursor: pointer;
  }
  
  .search-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .search-btn:hover {
    background: #e55a2b;
    transform: scale(1.02);
  }
  

  .categories-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
  }
  
  .view-all {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s;
  }
  
  .view-all:hover {
    background: rgba(255,107,53,0.1);
  }
  
  /* Mobile Dropdown Trigger */
  .categories-dropdown-trigger {
    display: none;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
  }
  
  .categories-dropdown-trigger.active {
    background: #e55a2b;
  }
  
  .categories-dropdown-trigger i {
    transition: transform 0.3s;
  }
  
  .categories-dropdown-trigger.active i {
    transform: rotate(180deg);
  }
  
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    transition: all 0.3s ease;
  }
  
  .categories-grid.collapsed {
    display: none;
  }
  
  .category-card {
    background: white;
    border-radius: 16px;
    transition: all 0.3s;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
  }
  
  .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .category-card.highlight {
    border: 2px solid #ff6b35;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
  }
  
  .category-link {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }
  
  .category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #66ead0 0%, #4b65a2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  
  .category-card:hover .category-icon {
    transform: scale(1.1);
  }
  
  .category-card.highlight .category-icon {
    background: #ff6b35;
  }
  
  .category-icon i {
    font-size: 1.8rem;
    color: white;
  }
  
  .category-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
  }
  
  .item-count {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
  }
  
  .listings-section {
    padding: 60px 0;
    background: white;
  }
  
  .section-filters {
    display: flex;
    gap: 12px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .filter-btn.active, .filter-btn:hover {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
  }
  
  .listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .listing-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }
  
  .listing-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .listing-image {
    position: relative;
    height: 200px;
    overflow: hidden;
  }
  
  .listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .listing-card:hover .listing-image img {
    transform: scale(1.08);
  }
  
  .listing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .listing-card:hover .listing-overlay {
    opacity: 1;
  }
  .listing-location, .listing-time {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
  }
    .listing-location i, .listing-time i {
    margin-right: 5px;
  }
  .quick-view-btn, .wishlist-btn {
    background: rgba(255,255,255,0.95);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .quick-view-btn:hover, .wishlist-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff7100;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
  }
  
  .featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff6b35;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
  }
  
  .listing-content {
    padding: 22px;
  }
  
  .listing-price {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 8px 0;
  }
  
  .listing-title {
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  
  .listing-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  
  .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
  }
  
  .listing-stats {
    display: flex;
    gap: 18px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
  }
  
  .stat {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
 .product-page-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
  }
  
  .breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
  }
  
  .breadcrumb a {
    color: #3498db;
    text-decoration: none;
  }
  
  .breadcrumb a:hover {
    text-decoration: underline;
  }
  
  .product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .product-images {
    display: flex;
    flex-direction: column;
  }
  
  .post_post_main_image {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
  }
  
  .post_post_main_image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
  }
  
  .image-thumbnails {
    display: flex;
    gap: 10px;
  }
  
  .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .thumbnail.active, .thumbnail:hover {
    opacity: 1;
    border-color: #E74C3C;
  }
  
  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .product-title {
    font-size: 24px;
    margin: 0;
    color: #2c3e50;
    line-height: 1.3;
  }
  
  .product-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #7f8c8d;
  }
  
  .pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .current-price, .discount-price {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
  }
  
  .original-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 18px;
  }
  
  .discount-percent {
    background: #ffeaa7;
    color: #d35400;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
  }
  
  .seller-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
  }
  
  .seller-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .seller-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
  }
  
  .seller-details p {
    margin: 0;
    font-size: 14px;
    color: #7f8c8d;
  }
  
  .contact-seller {
    padding: 15px;
    background: #e8f4fc;
    border-radius: 8px;
    border-left: 4px solid #3498db;
  }
  
  .contact-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
  }
  
  .contact-btn:hover {
    background: #2980b9;
  }

  .purchase-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .form-group label {
    font-weight: 500;
    color: #2c3e50;
  }
  
  .form-group input, .form-group select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
  }
  
  .stock-info {
    font-size: 14px;
    color: #27ae60;
  }
  
  .buy-now-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
  }
  
  .buy-now-btn:hover {
    background: #219653;
  }
  
  .action-buttons {
    display: flex;
    gap: 10px;
  }
  
  .wishlist-btn, .share-btn {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
  }
  
  .wishlist-btn:hover, .share-btn:hover {
    background: #f8f9fa;
    border-color: #3498db;
  }
  
  .product-description {
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
  }
  
  .product-description h3 {
    margin-top: 0;
    color: #2c3e50;
  }

  .product-description p {
    color: #6b6b6b;
  }

  .owner-actions {
    background: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #f39c12;
  }
  
  .owner-actions h3 {
    margin-top: 0;
    color: #d35400;
  }
  
  .owner-actions .action-buttons {
    display: flex;
    gap: 15px;
  }
  
  .edit-btn, .delete-btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .edit-btn {
    background: #3498db;
    color: white;
  }
  
  .edit-btn:hover {
    background: #2980b9;
  }
  
  .delete-btn {
    background: #e74c3c;
    color: white;
  }
  
  .delete-btn:hover {
    background: #c0392b;
  }
  
  .comments-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
  }
  
  .comments-section h2 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #f1f2f6;
    padding-bottom: 15px;
  }
  
  .comment-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f2f6;
  }
  
  .comment-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .comment-content {
    flex: 1;
  }
  
  .comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  
  .comment-author {
    font-weight: 500;
    color: #2c3e50;
  }
  
  .comment-time {
    color: #95a5a6;
    font-size: 14px;
  }
  
  .comment-text {
    margin: 0 0 15px 0;
    line-height: 1.5;
    color: rgb(67, 233, 205);
  }
  
  .comment-actions {
    display: flex;
    gap: 15px;
  }
  
  .reply-btn, .helpful-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .helpful-btn {
    color: #7f8c8d;
  }
  
  .no-comments {
    text-align: center;
    padding: 30px;
    color: #7f8c8d;
    font-style: italic;
  }
  
  .comment-form {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
  }
  
  .comment-form h3 {
    margin-top: 0;
    color: #2c3e50;
  }
  
  .comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    resize: vertical;
  }
  
  .form-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  
  .submit-comment-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .cancel-btn {
    background: #95a5a6;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .related-products h2 {
    color: #2c3e50;
    margin-bottom: 20px;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-image {
    position: relative;
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-name {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #2c3e50;
    line-height: 1.3;
    height: 42px;
    overflow: hidden;
  }
  
  .product-price {
    font-weight: bold;
    color: #2c3e50;
    font-size: 18px;
  }
  
  .original-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 14px;
    margin-left: 8px;
  }
  
  .quick-add-form {
    padding: 0 15px 15px;
  }
  
  .quick-add-btn {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
  }
  
  .quick-add-btn:hover {
    background: rgb(39, 233, 120);
    color: white;
    border-color: #34db74;
  }
   .orders-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
  }
   .order-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        background: #f9fafb;
    }
    
    .order-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 20px;
    }
    
    .brand-logo {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    
    .order-header h1 {
        margin: 0;
        color: #2c3e50;
        font-weight: 600;
    }
    
    .invoice-badge {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .invoice-badge span:first-child {
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .status-badge {
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    
    .status-pending { background: #fff3cd; color: #856404; }
    .status-completed { background: #d4edda; color: #155724; }
    .status-processing { background: #cce5ff; color: #004085; }
    .status-cancelled { background: #f8d7da; color: #721c24; }
    
    /* Customer Section */
    .customer-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .customer-info, .map-container {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .customer-info h2, .order-items-section h2, .payment-info h3 {
        margin-top: 0;
        color: #2c3e50;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 10px;
    }
    
    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .info-item {
        display: flex;
        flex-direction: column;
    }
    
    .info-item label {
        font-weight: 600;
        color: #7f8c8d;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .customer-link {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
    }
    
    .customer-link:hover {
        text-decoration: underline;
    }
    
    .location-btn {
        display: inline-flex;
        align-items: center;
        background: #3498db;
        color: white;
        padding: 8px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 0.9rem;
        margin-top: 10px;
        transition: background 0.3s;
    }
    
    .location-btn:hover {
        background: #2980b9;
    }
    
    .location-btn i {
        margin-right: 5px;
    }

    .order-map {
        width: 100%;
        height: 300px;
        border-radius: 5px;
        overflow: hidden;
    }
    
    .map-error {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        color: #7f8c8d;
        font-style: italic;
    }
    
    .order-items-section {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 20px;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .order-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 15px;
    }
    
    .order-table th {
        background: #f8f9fa;
        padding: 12px 15px;
        text-align: left;
        font-weight: 600;
        color: #2c3e50;
        border-bottom: 2px solid #eaeaea;
    }
    
    .order-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #eaeaea;
    }
    
    .order-table tr:hover {
        background: #f8f9fa;
    }
    
    .product-image img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 5px;
    }

    .order-summary {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
    }
    
    .summary-card {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        width: 300px;
    }
    
    .summary-card h3 {
        margin-top: 0;
        color: #2c3e50;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 10px;
    }
    
    .summary-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
    }
    
    .summary-row.total {
        border-top: 1px solid #eaeaea;
        margin-top: 10px;
        padding-top: 15px;
        font-weight: 600;
        font-size: 1.1rem;
        color: #2c3e50;
    }
    
    .payment-section {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        text-align: center;
    }
    
    .qrcode-container {
        margin: 20px 0;
    }
    
    .qrcode {
        width: 150px;
        height: 150px;
        border: 1px solid #eaeaea;
        padding: 10px;
        border-radius: 5px;
    }
    
    .delivery-btn {
        display: inline-flex;
        align-items: center;
        background: #27ae60;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.3s;
    }
    
    .delivery-btn:hover {
        background: #219653;
    }
    
    .delivery-btn i {
        margin-right: 8px;
    }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .page-header {
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
    color: rgb(3, 3, 3);
    padding: 10px 0 10px;
    margin-bottom: 30px;
  }

  .header-content {
    text-align: center;
  }

  .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
  }

  .orders-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }

  .filter-tabs {
    display: flex;
    gap: 10px;
  }

  .filter-tab {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
  }

  .filter-tab.active, .filter-tab:hover {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
  }

  .search-box {
    position: relative;
    width: 300px;
  }

  .search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
  }

  .search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
  }

  .search-input:focus {
    border-color: #ff6b35;
  }

  .orders-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .order-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
  }

  .order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }

  .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
  }

  .order-id {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
  }

  .order-date {
    color: #666;
    font-size: 0.9rem;
  }

  .status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
  }

  .status-pending {
    background: #fff3cd;
    color: #856404;
  }

  .status-paid {
    background: #d4edda;
    color: #155724;
  }

  .status-delivered {
    background: #d1ecf1;
    color: #0c5460;
  }

  .order-body {
    padding: 25px;
  }

  .product-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }

  .product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-details h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .product-brand {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
  }

  .product-meta {
    display: flex;
    gap: 15px;
  }

  .product-meta span {
    font-size: 0.9rem;
    color: #666;
  }

  .price {
    color: #ff6b35;
    font-weight: 600;
  }

  .customer-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
  }

  .customer-info h5 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #2c3e50;
  }

  .customer-info p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
  }

  .products-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
  }

  .product-info-short h5 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
  }

  .product-info-short span {
    font-size: 0.85rem;
    color: #666;
  }

  .order-summary {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
  }

  .summary-item {
    color: black;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  .summary-item.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    margin-top: 10px;
  }

  .order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
  }

  .order-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
  }

  .order-actions {
    display: flex;
    gap: 12px;
  }

  .btn-primary, .btn-secondary, .btn-outline {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
  }

  .btn-primary {
    background: #ff6b35;
    color: white;
  }

  .btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
  }

  .btn-secondary {
    background: #6c757d;
    color: white;
  }

  .btn-secondary:hover {
    background: #545b62;
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 1px solid #ff6b35;
  }

  .btn-outline:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
  }

  .empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }

  .empty-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
  }

  .empty-state h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.5rem;
  }

  .empty-state p {
    color: #666;
    max-width: 400px;
    margin: 0 auto 25px;
    line-height: 1.6;
  }

  .pagination {
    margin-top:25px;
    margin-bottom: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .page-link {
     padding: 8px 15px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
  }
  
  .page-link:hover, .page-link.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
  }
  
  .page-link.ellipsis {
    border: none;
  }
  
  .delivery-section {
    padding: 40px 0;
    background: #f8f9fa;
  }
  
  .delivery-notice {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #ff6b35;
  }
  
  .delivery-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .delivery-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-right: 25px;
  }
  
  .delivery-text {
    flex: 1;
  }
  
  .delivery-text h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1.5rem;
  }
  
  .delivery-text p {
    margin: 0;
    color: #666;
    font-size: 1.05rem;
  }
  
  .delivery-btn {
    background: #ff6b35;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
  }
  
  .delivery-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
  }
  
  .newsletter-section {
    background: linear-gradient(135deg, #66ead0 0%, #4b65a2 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
  }
  
  .newsletter-content {
    position: relative;
    z-index: 1;
  }
  
  .newsletter-content h2 {
    margin: 0 0 15px 0;
    font-size: 2.2rem;
    font-weight: 700;
  }
  
  .newsletter-content p {
    margin: 0 0 35px 0;
    opacity: 0.9;
    font-size: 1.1rem;
  }
  
  .newsletter-form {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .newsletter-input-group {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .newsletter-input {
    flex: 1;
    border: none;
    padding: 18px 22px;
    font-size: 1.05rem;
    outline: none;
  }
  
  .newsletter-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 18px 28px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .newsletter-btn:hover {
    background: #e55a2b;
  }
  
  .main-footer {
    background: #2c3e50;
    color: white;
    padding: 70px 0 25px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
  }
  
  .footer-section h4 {
    margin: 0 0 25px 0;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  
  .footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 12px;
  }
  
  .footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.05rem;
  }
  
  .footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
  }
  
  .social-links {
    display: flex;
    gap: 18px;
    margin-top: 25px;
  }
  
  .social-links a {
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s;
  }
  
  .social-links a:hover {
    color: #ff6b35;
    transform: translateY(-3px);
  }
  
  .app-download p {
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .app-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
  }
  
  .app-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
    font-size: 0.95rem;
  }
  
 
    @media (max-width: 992px) {
        nav {
            display: none;
        }
        
        .menu-toggle {
            display: flex;
        }
        .mobile-nav {
        
          width: 50%;   
        }
        .user-info {
            display: none;
        }
        
        .location-selector {
            display: none;
        }
         .hero-title {
      font-size: 2.3rem;
    }
    
    .search-wrapper {
      flex-direction: column;
      border-radius: 12px;
    }
    
    .search-input-group, .location-filter {
      border: none;
      border-bottom: 1px solid #eee;
    }
    
    .location-filter::before {
      display: none;
    }
    
    .search-btn {
      justify-content: center;
    }
    
    .delivery-content {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
    
    .delivery-icon {
      margin-right: 0;
    }
        .product-main {
      grid-template-columns: 1fr;
    }
    
    .post_main_image {
      height: 300px;
    }
    }
    
    @media (max-width: 768px) {
        .zuddo-headers .container {
            padding: 0 15px;
        }
        
        .logo img {
            height: 35px;
        }
        
        .header-icons {
            gap: 12px;
        }
        
        .header-icons a {
            font-size: 16px;
        }
        
        .cart-icon i {
            font-size: 20px;
        }
            .hero-title {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
    }
    
    .section-header {
      flex-wrap: wrap;
      gap: 15px;
    }
    
    .categories-dropdown-trigger {
      display: flex;
    }
    
    .categories-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .listings-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
     .customer-section {
            grid-template-columns: 1fr;
        }
        
        .info-grid {
            grid-template-columns: 1fr;
        }
        
        .order-header {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
        
        .invoice-badge {
            align-items: center;
        }
        
        .order-summary {
            justify-content: center;
        }
        
        .summary-card {
            width: 100%;
        }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .app-buttons {
      justify-content: center;
    }
        .product-meta {
      flex-direction: column;
      gap: 10px;
    }
    
    .action-buttons {
      flex-direction: column;
    }
    
    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
      .orders-filter {
      flex-direction: column;
      gap: 15px;
      align-items: stretch;
    }

    .filter-tabs {
      justify-content: center;
      flex-wrap: wrap;
    }

    .search-box {
      width: 100%;
    }

    .order-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }

    .order-footer {
      flex-direction: column;
      gap: 15px;
      align-items: stretch;
    }

    .order-actions {
      justify-content: center;
    }

    .product-info {
      flex-direction: column;
      text-align: center;
    }

    .product-image {
      align-self: center;
    }

    .product-meta {
      justify-content: center;
    }

    .page-title {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }

    .page-header {
      padding: 40px 0 30px;
    }

    .order-body, .order-header, .order-footer {
      padding: 20px;
    }

    .btn-primary, .btn-secondary, .btn-outline {
      padding: 8px 16px;
      font-size: 0.85rem;
    }

    .order-actions {
      flex-direction: column;
    }
    }

      @media (max-width: 576px) {
    .hero-section {
      padding: 40px 0 30px;
    }
    
    .hero-title {
      font-size: 1.8rem;
    }
    

    
    .categories-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    
    .section-filters {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .pagination {
      gap: 8px;
    }
    
    .page-link {
      padding: 8px 14px;
      font-size: 0.9rem;
    }
    
    .newsletter-content h2 {
      font-size: 1.8rem;
    }
    
    .newsletter-input-group {
      flex-direction: column;
    }
    
    .newsletter-input, .newsletter-btn {
      width: 100%;
      text-align: center;
    }
  }
    
    @media (max-width: 480px) {
        .zuddo-headers {
            padding: 10px 0;
        }
        
        .logo img {
            height: 30px;
        }
        
        .user-profile img {
            width: 32px;
            height: 32px;
        }
        
        .header-icons {
            gap: 10px;
        }
    }