                    .admin-nav-container {
        text-align: center;
        padding: 30px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        max-width: 1000px;
        margin: 50px auto;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .admin-welcome-text {
        color: #fff;
        font-size: 2.2rem;
        margin-bottom: 30px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        font-weight: 600;
        color: black;
    }
    
    .admin-nav-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .admin-nav-btn {
        position: relative;
        width: 180px;
        height: 180px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .admin-nav-btn:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    .btn-icon {
        font-size: 3rem;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }
    
    .admin-nav-btn:hover .btn-icon {
        transform: scale(1.2);
    }
    
    .admin-nav-btn span {
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .hover-effect {
        position: absolute;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: rotate(30deg) translate(-20%, -50%);
        transition: all 0.6s ease;
        top: 0;
        left: -100%;
    }
    
    .admin-nav-btn:hover .hover-effect {
        left: 100%;
    }
    
    .contact-btn { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
    .products-btn { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
    .products-list-btn { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
    .logout-btn { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); }
    
    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
        .admin-nav-buttons {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .admin-nav-btn {
            width: 100%;
            max-width: 300px;
            height: 80px;
            flex-direction: row;
            justify-content: flex-start;
            padding: 0 25px;
            gap: 20px;
        }
        
        .btn-icon {
            margin-bottom: 0;
            font-size: 1.8rem;
        }
        
        .admin-nav-btn span {
            font-size: 1rem;
        }
        
        .admin-nav-container {
            padding: 20px;
            max-width: 95%;
        }
        
        .admin-welcome-text {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
    }

        .brands-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
 
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center alignment for all screens */
  margin-bottom: 20px;
   
}

.brands-link {
  display: block;
  width: calc(20% - 20px);
  margin: 0 10px;
  text-align: center;
  transition: transform 0.3s ease;
  border-radius: 8px;
  
}

.brands-link:hover {
  transform: scale(1.05);
}

.brands-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .brands-link {
    flex: 1 1 calc(25% - 15px);
    min-width: 110px;
  }
}

@media (max-width: 768px) {
  .brands-link {
    flex: 1 1 calc(33.333% - 15px);
    min-width: 100px;
  }
}

@media (max-width: 576px) {
  .brands-container {
    padding: 15px 10px;
  }
  
  .brands-link {
    flex: 1 1 calc(50% - 10px);
    min-width: 90px;
  }
}

@media (max-width: 400px) {
  .brands-link {
    flex: 1 1 100%; /* Stack vertically on very small screens */
    max-width: 150px; /* Limit maximum width */
    margin: 0 auto 15px; /* Center and add bottom margin */
  }
  
  .brands-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

    
   @media (max-width: 768px) {
    .footer-bottom__socials {
        justify-content: flex-start; /* Align to left on mobile */
        margin-left: 9em; /* Use margin instead of position */
        width: calc(100% - 9em); /* Prevent overflow */
    }
}

/* Optional: For very small screens */
@media (max-width: 480px) {
    .footer-bottom__socials {
        margin-left: 5em; /* Smaller offset */
        width: calc(100% - 2em);
    }
}

/* Existing .whatsapp-btn styles */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 20px; /* Changed from left to right */
    left: auto; /* Reset left positioning */
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    touch-action: manipulation;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    contain: strict;
}

/* Keep all other existing styles the same, including responsive adjustments */

.whatsapp-btn:hover {
    background-color: #20b354;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:active {
    transform: scale(1);
}

/* Override for footer WhatsApp icon */
.footer-bottom__socials .footer-whatsapp-btn {
    position: relative; /* Make it inline with other social icons */
    bottom: auto;
    left: auto;
    width: 40px; /* Smaller size to match other social icons */
    height: 40px;
    font-size: 1.5em; /* Adjust icon size */
    z-index: 1; /* Reset z-index to align with footer layout */
}

/* Responsive adjustments */
/* Mobile view (max-width: 480px) */
@media (max-width: 480px) {
    .whatsapp-btn {
        position: fixed; /* Reinforce fixed positioning for main button */
        width: 48px; /* Slightly smaller for better mobile fit */
        height: 48px;
        font-size: 1.8em; /* Adjusted for better proportionality */
        bottom: calc(12px + env(safe-area-inset-bottom)); /* Tighter spacing for mobile */
          right: calc(12px + env(safe-area-inset-right)); /* Changed from left to right */
        left: auto;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
        contain: strict;
    }

    .footer-bottom__socials {
        display: flex;
        justify-content: flex-start; /* Align icons to the left */
        gap: 12px; /* Add spacing between icons for touch targets */
        margin-left: 1.5em; /* Reduced margin for compact layout */
        width: calc(100% - 1.5em); /* Prevent overflow */
        padding: 8px 0; /* Add padding for better touch area */
    }

    .footer-bottom__socials .footer-whatsapp-btn {
        position: relative; /* Keep inline with other social icons */
        width: 32px; /* Slightly larger for better touch target */
        height: 32px;
        font-size: 1.3em; /* Proportional icon size */
        background-color: #25D366; /* Same green as main button */
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* Softer shadow for mobile */
        transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .footer-bottom__socials .footer-whatsapp-btn:hover {
        background-color: #20b354;
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .footer-bottom__socials .footer-whatsapp-btn:active {
        transform: scale(1);
    }
}

/* Very small screens (max-width: 360px) */
@media (max-width: 360px) {
    .whatsapp-btn {
        width: 44px; /* Even smaller for tiny screens */
        height: 44px;
        font-size: 1.6em;
        bottom: calc(10px + env(safe-area-inset-bottom));
          right: calc(10px + env(safe-area-inset-right)); /* Changed from left to right */
        left: auto; 
    }

    .footer-bottom__socials {
        gap: 10px; /* Tighter spacing for smaller screens */
        margin-left: 1em; /* Further reduced margin */
        width: calc(100% - 1em);
        padding: 6px 0; /* Reduced padding */
    }

    .footer-bottom__socials .footer-whatsapp-btn {
        width: 28px; /* Compact size for very small screens */
        height: 28px;
        font-size: 1.1em;
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1); /* Even softer shadow */
    }
}
