    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 220px;  
    height: auto;
    
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.2rem;
    align-items: center;
    margin-left: 300px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a73e8;
}

.whatsapp-btn {
    background: green;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.whatsapp-icon {
  font-size: 20px;
}

.whatsapp-btn:hover {
    background: green;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 244, 78, 0.3);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 95%;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.9s ease;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    background-color: #1ebe5d;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgb(246, 246, 246);
    }

}

.container {
    max-width: auto;
    margin-top: 80px;
    padding: 1.5rem 1rem;
    margin-left:60px ;
}

.filter-panel {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment{
    font-size: 12px;
    color: red;
    margin-bottom:10px;
}

.search-bar {
    margin-bottom: 0;
}

.search-input {
position: relative;
display: flex;
align-items: center;
}

.search-input input {
padding: 10px 10px 10px 35px;
width: 100%;
border: 1px solid #ccc;
border-radius: 6px;
}

.search-icon {
position: absolute;
left: 10px;
color: #888;
font-size: 16px;
pointer-events: none;
}

.icon{
font-size: 50px;
}

.search-input::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.filter-toggle {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    width: fit-content;
}

.filter-toggle:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.filter-badge {
    background: #1e40af;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    margin-left: 0.5rem;
}

.filters {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    animation: slideDown 0.3s ease-out;
}

.filters.show {
    display: grid;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.filter-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.clear-filters {
    background: #ef4444;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
    width: fit-content;

}

.clear-filters:hover {
    background: #dc2626;
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #6b7280;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-count {
    font-weight: 600;
    color: #111827;
}


.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination button {
    background: none;
    color: rgb(0, 0, 0);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.pagination button:hover:not(:disabled) {
    background: #2233b5;
    color: white;
}

.pagination button:disabled {
    background: #d1d5db;
    color: #6b7280;
    cursor: not-allowed;
}

.page-number {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    margin: 0 0.125rem;
    transition: all 0.2s;
}

.page-number:hover {
    background: #e5e7eb;
}

.page-number.active {
    background: #2563eb;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    }
}

.product-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    transition: box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

 .product-image {
    
  width: 100%;
  height: 150px;              
  object-fit:cover;          
  display: block;
  padding: 0;                 

}

.product-image.has-image {
    background: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;

}   

.product-name {
    font-weight: 500;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.9rem;
    line-height: 1.25rem;
    height: 4.5rem;
    overflow: hidden;
    padding-top: 10px;
}

.product-brand {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.product-price {
    font-size: 1.125rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.product-details {
    font-size: 12px;  
    font-weight: bold; 
    display: inline-block; 
    cursor: pointer; 
    color: blue;
}

.detail-value {
    color:black;
}

.details-toggle {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.25rem 0;
}

.details-toggle:hover {
    color: #374151;
}

.details-content {
    display: none;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}

.details-content.show {
    display: block;
}

.pdf-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 14px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 1px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.pdf-link:hover {
    background-color: #004a99;
}


.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.5rem;
}

.no-results button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
}


.product-actions {
    text-align: center;
    margin-top: 20px;
}


.btn-primary {
  background-color: #0a3ece; 
  color: rgb(255, 255, 255);
  border: none;
  padding: 12px 24px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #0055ff;
  transform: scale(1.05);
}



/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: white;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(135deg, #f9c140 0%, #ecc70e 100%);
    color: white;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}



.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 2rem;
    display: flex;
}

.modal-product-image {
    width:50%;
    height:200px;   
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    overflow: hidden;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-product-image i {
    color: #9ca3af;
}

.product-detail-section {
   display: contents; 
}

.product-details-top{
    display: grid;
    grid-template-columns: 120px 1fr; 
    row-gap: 10px;
    margin-top: 15px;
}

.detail-label {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: block;
    margin-top: 10px;
    margin-left: 70px;
}

.detail-value {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 70px;
    margin-top: 10px;
}



.product-specs {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 60px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: #374151;
}

.spec-value {
    color: #6b7280;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
    background: #f8f9fa;
  
}

#modalDescription ul {
    margin: 0;
    padding-left: 2em; 
}

.modal-whatsapp-btn {
    flex: 1;
    background: #25d366;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.modal-whatsapp-btn:hover {
    background: #1da851;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.comments {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  font-style: italic;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
}

.float_item {
    position: fixed;
    bottom: 70px;
    right: 85rem;
    display: flex;
    align-items: center;
    z-index: 999;
}



.floating-email-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 95%;
    color: rgb(254, 254, 254);
     background-color: rgba(0, 0, 0, 0.522);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.floating-email-icon:hover {
    transform: scale(1.1);
}

.floating-email-icon img {
    width: 60%;
    height: 60%;
}

.footer {
    background: #fff;
    padding: 60px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 110px;
    line-height: 1.8em;
    margin-right: 100px;        
    padding: 0 10px;   
    width: 100%;
}

.footer-column {
  min-width: 20px;

}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;

}

.footer-text {
  font-size: 16spx;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  color: #357ae8;
  transition: color 0.3s;
}

.social-icons i:nth-child(2) {
  color: #e4405f;
}
.social-icons i:nth-child(3) {
  color: #1da1f2;
}
.social-icons i:nth-child(4) {
  color: #21759b;
}

.social-icons i:hover {
  opacity: 0.7;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

.Iicon {
  color: #4285f4;
  margin-right: 10px;
}

.footer-links {
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.footer-links a {
  text-decoration: none;
  color: inherit; 
  transition: color 0.1s ease;
}


.footer-links li {
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links li:hover {
  color: #1a73e8;
}

.footer-hours {
  text-align: center;
  margin-top: 40px;
}

.footer-hours h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.footer-hours h3::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background-color: #1a73e8;
  margin: 8px auto 0;
}