@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.cdnfonts.com/css/nexa-bold);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #ffff;
    color: #333;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #333;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #28a745;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-weight: 500;
}

.globe-icon,
.cart-icon {
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.globe-icon:hover,
.cart-icon:hover {
    transform: scale(1.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.user-avatar:hover {
    background: #218838;
}

/* Main Content */
.main {
    padding: 40px 0;
}

.page-title {
    
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* Container */
.search-form-modern {
    background: #fff;
    padding: 30px 30px 30px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.15);
    max-width: 900px;
    margin: 0 auto 40px;
  }
  
  /* Grid */
  .search-row-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 20px;
    align-items: flex-end;
  }
  
  /* Label */
  .search-field-modern label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
  }
  
  /* Input Wrapper */
  .input-wrapper {
    position: relative;
    width: 100%;
  }
  
  /* Input */
  input[type="text"] {
    width: 100%;
    padding: 12px 48px 12px 16px;
    border: 2px solid #d1d8e0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #34495e;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline-offset: 2px;
  }
  
  input[type="text"]:focus {
    border-color: #28a745;
    outline: none;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
  }
  
  /* Search Button inside Input */
  .btn-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #28a745;
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.25s ease;
  }
  
  .btn-icon:hover {
    background: #218838;
  }
  
  /* Select */
  select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #d1d8e0;
    font-size: 15px;
    font-weight: 500;
    color: #34495e;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='16' height='16' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  select:focus {
    border-color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
    outline: none;
  }
  
  /* Main Search Button */
  .search-btn-modern {
    background: #28a745;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 28px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.15s ease;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.4);
  }
  
  .search-btn-modern:hover {
    background: #218838;
    transform: translateY(-2px);
  }
  
  .search-btn-modern:active {
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .search-row-modern {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  }
  

/* Results Info */
.results-info {
    margin-bottom: 30px;
    color: #6c757d;
    font-size: 16px;
}

.results-count {
    font-weight: 600;
    color: #333;
}

/* Store Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.store-card {
   
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.store-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.store-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.store-logo {
    flex-shrink: 0;
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 10px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.logo-image.yellow {
    background: #ffc107;
}

.logo-image.cyan {
    background: #17a2b8;
}

.logo-image.gray {
    background: #6c757d;
}

.logo-image.dark {
    background: #343a40;
}

.logo-image.green {
    background: #28a745;
}

.logo-image.nature {
    background: #6f9654;
}

.logo-text {
    background-color: white;
    border-radius: 10px;
    color: black;
    font-size: 8px;
    margin-bottom: 2px;
    padding: 2px;
}

.logo-icons,
.logo-brand,
.logo-building,
.logo-brand-white,
.logo-medical,
.logo-leaf {
    font-size: 16px;
    font-weight: bold;
}

.logo-brand-white {
    color: white;
    font-size: 8px;
    font-weight: 600;
}

.store-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.delivery-label {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.delivery-icon {
    font-size: 14px;
}

.delivery-time {
    color: #6c757d;
    font-size: 14px;
}

.store-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.feature-tag {
    background: #f8f9fa;
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.feature-tag.blue {
    background: #e3f2fd;
    color: #1976d2;
    border-color: #bbdefb;
}

.store-location {
    color: #6c757d;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }

    .nav {
        gap: 20px;
    }

    .page-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .search-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .store-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .store-card {
        padding: 15px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .search-form {
        padding: 20px;
    }

    .header-actions {
        gap: 15px;
    }

    .nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }
}