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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Top Bar Styling */
.top-bar {
    background-color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
}

.logo-icon {
    width: auto;
    height: 35px;    
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;  
    background: none; 
    padding: 0;
}

.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 850px;
    margin: 0 30px;
}

.search-bar {
    display: flex;
    width: 100%;
    border: 3px solid #4a90e2;
    border-radius: 6px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 16px;
}

.category-dropdown {
    padding: 10px 15px;
    border: none;
    border-left: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    outline: none;
    font-size: 16px;
    min-width: 130px;
}

.search-btn {
    padding: 10px 25px;
    background-color: #4a90e2;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #3afc09;
   font-size: 18px;
   color: rgb(235, 2, 2);
}

.page-nav-bar {
    background-color: white;
    padding: 8px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.page-nav-bar .nav-links {
    margin: 0;
    background-color: #f8f9fa;
    padding: 6px 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Navigation Links - Small Bar Style */
.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: #4a90e2;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nav-links li a:active {
    color: #357abd;
}

/* Active link styling */
.nav-links li a[href="index.html"] {
    color: #4a90e2;
    font-weight: 600;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Right Icons */
.top-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: #4d4c4c;
    font-size: 12px;
    transition: color 0.3s;
}

.icon-item:hover {
    color: #0575f5;
}

.icon-item i {
    font-size: 24px;
    margin-bottom: 3px;
}

/* Navigation Bar */
.nav-bar {
    background-color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-item:hover {
    background-color: #f0f0f0;
}

.nav-item.active {
    background-color: #4a90e2;
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.language-select {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    outline: none;
}

.ship-to {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    display: flex;
    padding: 20px 50px;
    gap: 20px;
    margin-top: 10px;
    align-items: stretch;
}

/* Categories Sidebar */
.categories-sidebar {
    width: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 15px 15px;
    height: 420px;
    overflow: hidden;
}

.category-item {
    padding: 10px 12px;
    margin-bottom: 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.category-item:hover {
    background-color: #f3f4f6;
}

/* Hero Banner */
.hero-banner {
    flex: 1;
    background: none;
    border-radius: 8px;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    text-align: left;
}

.hero-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 5px;
}

.hero-content p {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.learn-more-btn {
    padding: 10px 25px;
    background-color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.user-section {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    width: 300px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 420px;
}

.user-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgb(224, 241, 252);
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    flex-shrink: 0;
}

.user-greeting {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.user-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.user-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.join-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #0672ed;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.join-btn:hover {
    background-color: #09f343;
    color: rgb(236, 0, 0);
}

.login-link {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: white;
    color: #087bff;
    border: 1px solid #087bff;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
}

.login-link:hover {
    background-color: #f0f8ff;
    font-size: 18px;
    color: #fa0202;
}



.promo-card {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 8px;
    padding: 20px;
    color: white;
    flex: 0.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-card h3 {
    font-size: 18px;
    margin: 0;
    line-height: 1.3;
}

.supplier-card {
    background-color: #14e9f4;
    border-radius: 8px;
    padding: 20px;
    color: white;
    flex-shrink: 0;
}

.supplier-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.supplier-card p {
    font-size: 13px;
    margin: 0;
}

/* Deals and Offers Section */
.deals-section {
    padding: 20px 50px;
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: stretch;
}

/* Timer Box */
.deals-timer-box {
    width: 250px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    border: 2px solid #8b5cf6;
    flex-shrink: 0;
}

.deals-timer-box h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.deals-timer-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.timer {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.timer-item {
    background-color: #555;
    border-radius: 6px;
    padding: 10px 8px;
    text-align: center;
    flex: 1;
}

.timer-value {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 3px;
}

.timer-label {
    font-size: 11px;
    color: #ccc;
}

/* Products Grid */
.deals-products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.discount {
    display: inline-block;
    background-color: #ffecec;
    color: #ff4444;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

/* Home and Outdoor Section */
.home-outdoor-section {
    padding: 20px 50px;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Left Banner Box */
.outdoor-banner {
    width: 250px;
    background: linear-gradient(135deg, #ffe8d6, #ffd4b3);
    border-radius: 8px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.source-btn {
    padding: 10px 20px;
    background-color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s;
}

.source-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.banner-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: auto;
    opacity: 0.9;
}

/* Right Side Container */
.outdoor-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.outdoor-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.outdoor-product-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.outdoor-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-info {
    text-align: left;
}

.product-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.product-price {
    font-size: 13px;
    color: #666;
}

.outdoor-product-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Consumer Electronics Section */
.consumer-section {
    padding: 20px 50px;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* next day 11/11/2025 */
/* Left Banner Box */
.consumer-banner {
    width: 250px;
    background: linear-gradient(135deg, #d4e4f7, #c2d9f5);
    border-radius: 8px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.consumer-banner .banner-content {
    position: relative;
    z-index: 2;
}

.consumer-banner .banner-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.consumer-banner .banner-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: auto;
    opacity: 0.9;
}

/* Right Side Container */
.consumer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consumer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.consumer-product-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.consumer-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.consumer-product-card .product-info {
    text-align: left;
}

.consumer-product-card .product-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.consumer-product-card .product-price {
    font-size: 13px;
    color: #666;
}

.consumer-product-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Quote Request Section */
.quote-section {
  background-image: url('/assets/Image/backgrounds/Group\ 982.png');
   background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  position: relative;
  max-width: 1690px;
  margin: 0 auto; 
}

.quote-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.quote-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.quote-left {
  flex: 0 0 45%;
  min-width: 300px;
  color: white;
  padding-right: 80px;
  max-width: 500px;
  margin-right: auto;
  margin-left: -100px;
  margin-bottom: 200px;
}

.quote-left h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.quote-left p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}
.quote-right {
  flex: 0 0 420px;
  min-width: 320px;
}

.quote-form-card {
  background: white;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.quote-form-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1f2937;
}

.quote-input,
.quote-textarea,
.quote-quantity-input,
.quote-unit-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.quote-input:focus,
.quote-textarea:focus,
.quote-quantity-input:focus,
.quote-unit-select:focus {
  outline: none;
  border-color: #2563eb;
}

.quote-textarea {
  min-height: 80px;
  resize: vertical;
}

.quote-quantity-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.quote-quantity-input {
  flex: 1;
  margin-bottom: 0;
}

.quote-unit-select {
  flex: 0 0 120px;
  margin-bottom: 0;
  cursor: pointer;
}

.quote-submit-btn {
  width: 50%;
  background: #2563eb;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.quote-submit-btn:hover {
  background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .quote-section {
    padding: 40px 20px;
  }
  
  .quote-left h2 {
    font-size: 28px;
  }
  
  .quote-content {
    flex-direction: column;
  }
  
  .quote-right {
    flex: 1;
    width: 100%;
  }
  
  .quote-form-card {
    padding: 24px;
  }
}

/* Recommended Items Section */
.recommended-section {
  padding: 40px 0;
  background-color: #f7f7f7;
}

.recommended-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 20px;
}

.recommended-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 24px;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.recommended-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.recommended-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.recommended-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.recommended-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recommended-info {
  padding: 16px;
}

.recommended-price {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.recommended-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .recommended-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .recommended-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .recommended-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .recommended-img {
    height: 160px;
  }
  
  .recommended-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .recommended-grid {
    grid-template-columns: 1fr;
  }
  
  .recommended-section {
    padding: 30px 15px;
  }
}

/* Our Extra Services Section */
.services-section {
  padding: 50px 0;
}

.services-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: visible;
  position: relative;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: #f9fafb;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 20px;
  font-weight: 550;
  color: #1f2937;
  line-height: 1.4;
  margin: 0;
}

.service-icon {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  background-color: #c5ddf8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08aaf5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 150px;
  right: 20px;
  z-index: 10;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .services-section {
    padding: 40px 0;
  }
  
  .service-image {
    height: 200px;
  }
}

/* Suppliers by Region Section */
.suppliers-section {
  padding:30px 0;
}

.suppliers-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
}

.suppliers-title {
  font-size: 24px;
  font-weight: 600;
  color: #090b0f;
  margin-bottom: 30px;
}

.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 20px;
}

.supplier-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.supplier-flag {
  width: 40px;
  height:30px;
  object-fit: cover;
  border: 2px solid #e5e7eb;
  flex-shrink: 0;
}

.supplier-info {
  flex: 1;
  min-width: 0;
}

.supplier-country {
  font-size: 20px;
  font-weight: 500;
  color: #1f2937;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.supplier-website {
  font-size: 16px;
  color: #0a2155;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .suppliers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .suppliers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  
  .suppliers-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .suppliers-grid {
    grid-template-columns: 1fr;
  }
}

/* Newsletter Section */
.newsletter-section {
  padding: 60px 20px;
  background-color: #d3d2d2;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: 30px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.newsletter-desc {
  font-size: 18px;
  color: #000000;
  margin-bottom: 32px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.newsletter-input-wrapper {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.newsletter-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #7a9cd6;
  pointer-events: none;
}

.newsletter-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid #c9dcf8;
  border-radius: 6px;
  font-size: 18px;
  background-color: #ffffff;
  transition: border-color 0.3s;
}

.newsletter-input:focus {
  outline: none;
  border-color: #0e58f8;
}

.newsletter-input::placeholder {
  color: #9ca3af;
}

.newsletter-btn {
  padding: 14px 32px;
  background-color: #0850eb;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 550;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background-color: #25ec0b;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 50px 20px;
  }
  
  .newsletter-title {
    font-size: 24px;
  }
  
  .newsletter-desc {
    font-size: 14px;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .newsletter-input-wrapper {
    max-width: 100%;
    width: 100%;
  }
  
  .newsletter-btn {
    width: 100%;
  }
}

/* Footer Main Section */
.footer-main {
  padding: 50px 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.footer-main-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Brand Column */
.footer-brand {
  max-width: 300px;
}

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

.footer-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.footer-brand-desc {
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ebe8e5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #67e460fa;
}

.social-icon img {
  width: 18px;
  height: 18px;
}

/* Footer Columns */
.footer-column {
  min-width: 0;
}

.footer-column-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 18px;
  color: #5c687e;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #004ff8;
}

/* Get App Column */
.footer-app {
  min-width: 0;
}

.app-download {
  display: block;
  margin-bottom: 12px;
}

.app-download img {
  width: 140px;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s;
}

.app-download:hover img {
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  background-color: #d3d7da;
  border-top: 1px solid #9096a3;
}

.footer-bottom-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 18px;
  color: #1c2331;
  margin: 0;
}

/* Language Selector */
.footer-language {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: white;
  border: 1px solid #195abb;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  color: #1f2937;
  transition: border-color 0.3s;
}

.language-btn:hover {
  border-color: #9ca3af;
}

.language-flag {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.language-arrow {
  width: 16px;
  height: 16px;
  color: #6b7280;
}

.language-dropdown {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 8px;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  display: none;
  overflow: hidden;
}

.footer-language:hover .language-dropdown {
  display: block;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: 16px;
  color: #1f2937;
  text-decoration: none;
  transition: background-color 0.3s;
}

.language-option:hover {
  background-color: #f3f4f6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-main-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0;
  }
  
  .footer-main-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-app {
    grid-column: 1 / -1;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-main-container {
    grid-template-columns: 1fr;
  }
}

/* ADDITIONAL CSS FOR JAVASCRIPT FUNCTIONALITY */

/* Animation for notifications */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Categories sidebar transitions */
.categories-sidebar {
    transition: all 0.3s ease;
}

.categories-sidebar.show {
    display: block !important;
}

/* Navigation links for mobile */
.nav-links.show {
    display: flex !important;
}

/* Lazy loading for images */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Notification styles */
.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart counter styles */
.cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

/* Scroll to top button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 15px;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        padding: 12px 15px;
        border-radius: 6px;
        font-size: 16px;
        text-align: center;
        border: 1px solid #f0f0f0;
        display: block;
    }
    
    /* Adjust top bar for mobile */
    .top-bar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .search-container {
        order: 3;
        margin: 15px 0 0 0;
        max-width: 100%;
    }
}

/* Desktop specific styles */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
}