:root {
  /* Color Variables */
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  
  /* Theme Colors */
  --bs-primary: var(--bs-blue);
  --bs-secondary: var(--bs-gray);
  --bs-success: var(--bs-green);
  --bs-info: var(--bs-cyan);
  --bs-warning: var(--bs-yellow);
  --bs-danger: var(--bs-red);
  --bs-light: var(--bs-gray-100);
  --bs-dark: var(--bs-gray-900);
  
  /* RGB Values */
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: var(--bs-dark-rgb);
  --bs-body-bg-rgb: var(--bs-white-rgb);
  
  /* Typography */
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: var(--bs-gray-900);
  --bs-body-bg: var(--bs-white);
  

 
  /* Gradients */
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  
  /* Custom Variables */
  --transition: all 0.3s ease;
  --primary-color: var(--bs-primary);
  --secondary-color: var(--bs-secondary);
  --success-color: var(--bs-success);
  --dark-color: var(--bs-dark);
  --light-color: var(--bs-light);
  --gray-color: var(--bs-gray);
  --mid-bar: var(--bs-gray-100);

  /* Border Radius */
--bs-border-radius: 0.375rem;
--bs-border-radius-sm: 0.25rem;
--bs-border-radius-lg: 0.5rem;
--bs-border-radius-xl: 1rem;
--bs-border-radius-2xl: 2rem;
--bs-border-radius-pill: 50rem;

}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  background: #f9f9f9;
}

/* Social Bar */
.social-bar {
  /* background-color: rgb(41, 40, 40); */
  /*background-color: rgb(18, 70, 112);*/
    background-color: rgb(46, 107, 131);

  padding: 0.625rem 1.5625rem;
  border-bottom: 1px solid rgb(253, 251, 251);
  color: white;
}

.social-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 106.25rem;
  margin: 0 auto;
}

.social-text {
  font-family: var(--bs-font-sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 0.9375rem;
}

.social-icon {
  color: gray;
  background-color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-0.125rem);
}

.social-icon i {
  font-size: 0.875rem;
}

/* Social icon hover colors */
.social-icon:nth-child(1):hover { background-color: #3b5998; color: var(--bs-white); }
.social-icon:nth-child(2):hover { background-color: #1DA1F2; color: var(--bs-white); }
.social-icon:nth-child(3):hover { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); color: var(--bs-white); }
.social-icon:nth-child(4):hover { background-color: #FF0000; color: var(--bs-white); }
.social-icon:nth-child(5):hover { background-color: #25D366; color: var(--bs-white); }

/* Main Header */
.top-header {
  /*background-color: rgb(18, 70, 112);*/
  background-color: rgb(46, 107, 131);
  padding: 1.0rem 6.1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: -1px;
  color: var(--bs-black);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 106.25rem;
  margin: 0 auto;
}

/* Logo */
.logo-container {
  margin-right: 7.5rem;
}

.logo {
  height: 5.625rem;
  width: auto;
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.9;
}

/* Search */
.search-container {
  flex: 1;
  max-width: 37.5rem;
}

.search-form {
  display: flex;
  width: 100%;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 3.125rem 0.75rem 1.25rem;
  border: var(--bs-border-width) var(--bs-border-style) #dfe6e9;
  border-radius: var(--bs-border-radius-pill);
  font-size: 1rem;
  color: var(--dark-color);
  outline: none;
  transition: var(--transition);
  background-color: var(--bs-white);
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.1875rem rgba(var(--bs-primary-rgb), 0.2);
}

.search-button {
  position: absolute;
  right: 0.3125rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 2.1875rem;
  height: 2.1875rem;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-button:hover {
  background-color: #2980b9;
  transform: translateY(-50%) scale(1.05);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  margin-left: 2.5rem;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bs-white);
  font-weight: 500;
}

.contact-info i {
  font-size: 1.125rem;
}

.cart-button {
  background-color: transparent;
  color: var(--bs-white);
  border: none;
  padding: 0.5rem 0.9375rem;
  border-radius: var(--bs-border-radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.cart-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cart-count {
  background-color: var(--light-color);
  color: var(--dark-color);
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Navigation */
.main-nav {
  /*background-color: rgb(46, 107, 131);*/
    background-color: rgb(18, 70, 112);
  padding: 0.4rem 1.5625rem;
  position: sticky;
  top: 5rem;
  z-index: 999;
  
  
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 106.25rem;
  margin: 0 auto;

}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background-color: #00ADB5;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 1rem;
}

.btn-register {
  padding: 0.5rem 0.7rem;
  border-radius: var(--bs-border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition);
  color: var(--bs-white);
  background-color: transparent;
  border: 2px  solid #00ADB5;
}

.btn-register:hover {
  background-color: #4f88dd;
  transform: translateY(-0.0625rem);
}

.btn-register i {
  margin-right: 0.5rem;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -28.125rem;
  width: 21.875rem;
  height: 100vh;
  background-color: var(--bs-white);
  box-shadow: -0.3125rem 0 0.9375rem rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-gray-200);
}

.cart-header h3 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--dark-color);
  font-weight: 600;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-color);
  transition: var(--transition);
}

.close-cart:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-color);
  text-align: center;
}

.empty-cart i {
  font-size: 3.125rem;
  margin-bottom: 1.25rem;
  opacity: 0.5;
}

.empty-cart p {
  font-size: 1.125rem;
  font-weight: 500;
}

.cart-footer {
  padding: 1.25rem;
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-gray-200);
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 600;
}

.total-amount {
  color: var(--secondary-color);
}

.checkout-button {
  width: 100%;
  padding: 0.9375rem;
  background-color: var(--success-color);
  color: var(--bs-white);
  border: none;
  border-radius: var(--bs-border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
}

.checkout-button:hover {
  background-color: #219653;
  transform: translateY(-0.125rem);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--bs-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3125rem;
  margin-right: 0.625rem;
  z-index: 1001;
}

.mobile-close-btn {
  display: none;
}

/* Brown Container */
.brown-container {
  padding: 0.3rem 1.5625rem;
  position: sticky;
  top: 5rem;
  z-index: 999;
  height: 3.75rem;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgb(46, 107, 131);
  border-top:2px solid white;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  display: flex;
  transition: 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
  width: 33.33%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 75rem;
  margin: 0 2.5rem;
  padding: 0 5%;
  color: var(--bs-white);
  z-index: 10;
  transform: translateX(-3.125rem);
  animation: contentSlide 1s forwards 0.5s;
}

@keyframes contentSlide {
  to {
      transform: translateX(0);
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 0.9375rem;
  text-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.4);
  color: var(--bs-white);
}

.hero-content p {
  font-size: 1.5rem;
  max-width: 37.5rem;
  margin-bottom: 1.875rem;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.4);
}

.cta-button {
  display: inline-block;
  padding: 0.9375rem 2.5rem;
  background-color: transparent;
  color: var(--bs-white);
  text-decoration: none;
  border-radius: var(--bs-border-radius-pill);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 0.0625rem solid var(--bs-white);
}

.cta-button:hover {
  transform: translateY(-0.1875rem);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Slide Controls */
.slide-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1.875rem;
  z-index: 20;
}

.slide-arrow {
  width: 3.125rem;
  height: 3.125rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--bs-white);
  font-size: 1.5rem;
}

.slide-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hide social bar on mobile */
  .social-bar {
    display: none;
  }
  
  .brown-container {
    display: block;
  }
  
  /* Show mobile toggle elements */
  .mobile-toggle,
  .mobile-close-btn {
    display: block;
  }
  
  /* Adjust header layout */
  .top-header {
    padding: 0.625rem 0.9375rem;
  }
  
  .header-content {
    justify-content: space-between;
  }
  
  /* Center logo */
  .logo-container {
    margin: 0 auto;
    margin-right: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
  }
  
  /* Logo size adjustment for mobile */
  .logo {
      padding-top:5px ;
    height: 3.75rem;
    width: auto;
    max-width: 7.5rem;
    object-fit: contain;
  }
  
  /* Hide desktop elements */
  .search-container,
  .contact-info {
    display: none;
  }
  
  /* Adjust header actions */
  .header-actions {
    margin-left: 0;
    gap: 0.625rem;
  }
  
  /* Adjust cart button */
  .cart-button {
    padding: 0.375rem 0.625rem;
  }
  
  /* Mobile menu styling */
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100vh;
    background-color: rgb(31, 59, 97);
    padding: 1.25rem;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  /* Close button styling */
  .mobile-close-btn {
    position: absolute;
    top: 0.9375rem;
    right: 0.9375rem;
    background: transparent;
    border: none;
    color: var(--bs-white);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Hide register button in mobile menu */
  .auth-buttons {
   
    width: 110%;                /* full row */
    justify-content: flex-end; /* align like links */
    margin: 320px 0 -60px -100px;          /* space above */
    
  }
  
  /* Nav links styling */
  .nav-links {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-links li {
    border-bottom: 0.0625rem solid rgba(255,255,255,0.1);
  }
  
  .nav-links a {
    padding: 0.9375rem 0;
    display: block;
  }
  
  /* Overlay */
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Prevent scrolling when menu is open */
  body.no-scroll {
    overflow: hidden;
  }

  /* Brown search bar */
  .brown-container {
        background-color: rgb(99, 136, 167);
    display: flex;
    padding: 0.625rem 1.5625rem;
    top: 5rem;
    height: 3.75rem;
  }

  /* Show search container in brown-container */
  .brown-container .search-container {
    display: block !important;
    width: 90%;
    max-width: 31.25rem;
  }

  /* Hide search container in header */
  .header-content .search-container {
    display: none;
  }
  
  /* Hero adjustments */
   .hero{
    height: 60vh;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .slide-arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.875rem;
  }

  .slide-arrow {
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 1rem;
  }

  .slide-controls {
    padding: 0 0.9375rem;
  }
  
  .nav-links {
    width: 80%;
  }
}

/* Professional Promo Bar with Perfect Responsiveness */
.promo-bar {
  background-color: #040443;
  color: var(--bs-white);
  height: 130px;
  margin: 60px 10px;
  border-radius:50px;
  overflow: hidden;
  position: relative;
}

.promo-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.promo-slider {
  display: flex;
  height: 100%;
  align-items: center;
  transition: transform 0.4s ease;
  justify-content: space-between;
}

.promo-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 37px;
}

.promo-icon {
  font-size: 50px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-white);
}

.promo-text {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  padding: 25px 20px;
  color: var(--bs-white);
}

/* Navigation Arrows */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: var(--bs-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  display: none;
}

.promo-arrow:hover {
  background: rgba(255,255,255,0.25);
}

.promo-prev {
  left: 15px;
}

.promo-next {
  right: 15px;
}

/* Desktop View - Show all items */
@media (min-width: 992px) {
  .promo-slider {
    justify-content: space-around;
  }
  .promo-item {
    min-width: auto;
    flex: 1;
  }
}

/* Tablet View - Show 2-3 items */
@media (max-width: 991px) and (min-width: 768px) {
  .promo-item {
    min-width: 50%;
  }
  .promo-arrow{
    display: block;
  }
}

/* Mobile View - Show 1 item */
@media (max-width: 767px) {
  .promo-bar {
    height: 110px;
  }
  .promo-arrow{
    display: block;
  }
  .promo-item {
    min-width: 100%;
    margin-left: 5px;
  }
}

/* Featured Products Section */
.featured-products {
  padding: 60px 20px;
  background-color: var(--bs-gray-100);
  text-align: left;
}

.section-title {
  font-family: var(--bs-font-sans-serif);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--bs-black);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background-color: rgb(18, 70, 112);
}

.featured-products .description {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin: 10px auto 45px;
  max-width: 100%;
  line-height: 1.8;
  font-weight: 500;
  background: #f8f8f8;
  padding: 12px 18px;
  border-radius: 10px;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1600px;
  margin: 0 auto;
}

.product-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: var(--bs-white);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bs-white);
  z-index: 2;
}

.product-badge.hot {
  background-color: var(--bs-danger);
}

.product-badge.sale {
  background-color: var(--bs-success);
}

.product-badge.new {
  background-color: var(--bs-info);
}

.product-badge.limited {
  background-color: var(--bs-warning);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.add-to-cart {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 12px;
  background-color: var(--accent-color);
  color: var(--bs-white);
  border: none;
  font-family: var(--bs-font-sans-serif);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card:hover .add-to-cart {
  bottom: 0;
}

.product-info {
  padding: 20px;
  text-align: left;
}

.product-name {
  font-family: var(--bs-font-sans-serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--bs-black);
}

.product-desc {
  font-family: var(--bs-font-sans-serif);
  font-size: 14px;
  color: var(--bs-black);
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-price {
  font-family: var(--bs-font-sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--bs-gray-900);
}

.old-price {
  text-decoration: line-through;
  color: var(--bs-gray-600);
  font-size: 14px;
  margin-right: 8px;
  font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .product-card {
    min-width: 200px;
  }
}

@media (max-width: 992px) {
  .products-container {
    gap: 20px;
  }
  .product-card {
    min-width: calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}

/* Mobile Specific Styles (786px and below) */
@media (max-width: 786px) {
  .products-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-card {
    min-width: 100%;
    position: relative;
    padding-bottom: 50px;
  }

  .add-to-cart {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--bs-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    transition: all 0.2s ease;
    left: auto;
  }

  .add-to-cart i {
    font-size: 16px;
  }

  .add-to-cart:hover {
    transform: scale(1.1);
    background: #d1b745;
  }

  /* Hide text and show only icon */
  .add-to-cart span {
    display: none;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  position: relative;
  height: 350px;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

.background-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.content-container {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-content {
  max-width: 50%;
  color: var(--bs-white);
  padding-right: 40px;
}

.text-content h2 {
  font-family: var(--bs-font-sans-serif);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.text-content p {
  font-family: var(--bs-font-sans-serif);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.button-container {
  align-self: center;
}

.contact-btn {
  background-color:#0b334e;
  color: var(--bs-white);
  border: none;
  padding: 14px 40px;
  font-family: var(--bs-font-sans-serif);
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Overlay for better text readability */
.why-choose-us::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8,8,36,0.7) 0%, rgba(8,8,36,0.4) 100%);
  z-index: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .why-choose-us {
    height: 400px;
  }
  
  .content-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
  }
  
  .text-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .text-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    height: 350px;
  }
  
  .text-content h2 {
    font-size: 28px;
  }
  
  .text-content p {
    font-size: 15px;
  }
  
  .contact-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}

/* Recommended Products Section */
.recommended-products {
  padding: 60px 20px;
  background-color: var(--bs-gray-100);
  text-align: left;
}

.recommended-products .section-title {
  font-family: var(--bs-font-sans-serif);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--bs-black);
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.recommended-products .section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 20px;
  width: 110px;
  height: 3px;
  background-color: var(--accent-color);
}

.recommended-products .products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 25px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.recommended-products .product-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: var(--bs-white);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.recommended-products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.recommended-products .add-to-cart {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 12px;
  background-color: rgba(1, 19, 36, 0.335);
  color: var(--bs-white);
  border: none;
  font-family: var(--bs-font-sans-serif);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.recommended-products .product-card:hover .add-to-cart {
  bottom: 0;
}

.recommended-products .product-name {
  font-family: var(--bs-font-sans-serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--bs-gray-800);
}

.recommended-products .product-desc {
  font-family: var(--bs-font-sans-serif);
  font-size: 14px;
  color: var(--bs-gray-600);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Mobile Specific Styles (786px and below) */
@media (max-width: 786px) {
  .recommended-products .products-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  .recommended-products .section-title {
    padding-left: 10px;
  }

  .recommended-products .section-title::after {
    left: 10px;
  }

  .recommended-products .product-card {
    min-width: 100%;
    position: relative;
    padding-bottom: 50px;
  }

  .recommended-products .add-to-cart {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--bs-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    transition: all 0.2s ease;
    left: auto;
  }

  .recommended-products .add-to-cart i {
    font-size: 16px;
  }

  /* Hide text and show only icon */
  .recommended-products .add-to-cart span {
    display: none;
  }
}

/* Footer Styles */
.site-footer {
  background-color: rgb(2, 8, 27);
  color: var(--bs-gray-100);
  padding: 40px 60px 20px;
  font-family: var(--bs-font-sans-serif);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
  height: 60px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  color: var(--bs-gray-100);
  background-color: rgba(255,255,255,0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--bs-primary);
  transform: translateY(-3px);
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 40px 0;
}

.footer-column {
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--bs-white);
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--bs-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--bs-gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--bs-primary);
  padding-left: 5px;
}

.newsletter-text {
  color: var(--bs-gray-400);
  margin-bottom: 20px;
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--bs-border-radius);
  font-family: var(--bs-font-sans-serif);
}

.newsletter-form button {
  background-color: var(--accent-color);
  color: var(--bs-white);
  border: none;
  padding: 0 20px;
  border-radius: var(--bs-border-radius);
  cursor: pointer;
  font-family: var(--bs-font-sans-serif);
  font-weight: 500;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #d1b745;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--bs-gray-400);
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    padding: 12px;
  }
}