/* ===== Base Styles ===== */
:root {
  --cl-yellow: #ffd700;
  --cl-dark: #1f2937;
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-600: #2563eb;
  --green-600: #059669;
  --red-600: #dc2626;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

/* ===== Button Styles ===== */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-yellow {
  background-color: #46669f;
  color: white;
}

.button-yellow:hover {
  background-color: #46669f;
}

.button-light {
  background-color: var(--white);
  color: white;
}

.button-light:hover {
  background-color: var(--gray-100);
}

.button-full {
  width: 100%;
  padding: 0.75rem;
}

/* ===== Navbar Styles ===== */

/* ======================
   DESKTOP FIRST STYLES
   ====================== */

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1400px;
  margin: auto;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: black;
}

.nav-link {
  position: relative;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  color: black;
  padding: 5px 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #46669f;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #46669f;
}

.nav-link:hover::after {
  width: 100%;
}

.logo {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-decoration: none;
  font-size: 26px;
  font-weight: bold;
  color: black;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  margin-left: 10px;
}

.nav-right i {
  font-size: 14px;
  color: black;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-right i:hover {
  color: #46669f;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  color: black;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.dropdown-toggle::after {
  content: "\25BC";
  font-size: 0.7em;
  margin-left: 0.5rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 260px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #444;
  transition: background-color 0.2s;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: #f3f3f3;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #000;
  cursor: pointer;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #444;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* When menu is active */
.mobile-menu.active {
  display: block;
}

/* ======================
   MEDIA QUERIES
   ====================== */

@media screen and (max-width: 1024px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: none;
    background-color: #fff;
    padding: 1rem;
    border-top: 1px solid #ddd;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-link {
    font-weight: 500;
    color: #444;
    text-decoration: none;
  }

  .mobile-link:hover {
    color: #b0ba44;
  }

  .mobile-dropdown summary {
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-dropdown summary::after {
    content: "\25BC";
    font-size: 0.7em;
    margin-left: 0.5rem;
  }

  .mobile-dropdown[open] summary::after {
    content: "\25B2";
  }

  .mobile-submenu {
    margin-top: 0.5rem;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-sublink {
    color: #444;
    text-decoration: none;
  }

  .mobile-sublink:hover {
    color: #b0ba44;
  }
}

@media screen and (max-width: 768px) {
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo {
    margin-bottom: 10px;
  }
  .nav-left,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-logo {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .nav-logo .logo {
    font-size: 20px;
  }

  .nav-logo .logo img {
    width: 40px;
    height: 40px;
  }

  .navbar-container {
    padding: 10px 20px;
  }
  .mobile-menu {
    padding: 10px;
  }

  .mobile-link,
  .mobile-sublink {
    display: block;
    padding: 10px 0;
    font-size: 16px;
  }

  .mobile-dropdown summary {
    font-weight: bold;
    cursor: pointer;
    margin: 10px 0;
  }

  .mobile-submenu {
    padding-left: 15px;
  }
}

/* ===== Main Content Styles ===== */

/* ===== Hero Section ===== */
.hero {
  background-size: cover;
  background-position: center;
  /* min-height: 100px; */
  position: relative;
}
.hero-bg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.hero-content {
  /* color: var(--white);*/
  padding: 1rem;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
  color: white;
  position: absolute;
  top: 10%;
  left: 10%;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.hero-button {
  animation: fadeIn 1.5s ease;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .hero {
    min-height: 250px;
  }
}

/* ===== Section Styles ===== */
.section {
  padding: 3rem 0;
}

.section-white {
  background-color: var(--white);
}

.section-light {
  background-color: var(--gray-50);
}

.section-content {
  max-width: 64rem;
  margin: 0 auto;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.section-subtitle {
  margin-bottom: 2rem;
}

.section-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
/*  -----9999999999999977777777777774 */
.cubicle-section {
  background: white;
  padding: 2rem;
  font-family: "Arial", sans-serif;
  color: #111;
  max-width: 1200px;
  margin: auto;
}

.info-container,
.details {
  text-align: center;
  margin-bottom: 2rem;
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.images-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.info-container > h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.info-container > p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.details > h2,
.details > h3 {
  color: #000;
  margin-top: 1rem;
  font-size: 2.5rem;
}

.details > p {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

strong {
  color: #000;
}
/* Contact Info */
/* .contact-info {
  margin-bottom: 2rem;
}

.contact-name {
  font-weight: 700;
}

.contact-link {
  color: #46669f;
}

.contact-link:hover {
  text-decoration: underline;
}

.section-image {
  max-width: 32rem;
  margin: 2rem auto;
}

.section-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
} */

/* testimonial-section */
.testimonial-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
  font-family: "Arial", sans-serif;
}

.testimonial-container {
  max-width: 800px;
  margin: auto;
  color: #000;
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
  font-size: 32px;
  color: #f9c606;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* ===== Inventory Grid ===== */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.inventory-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.inventory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.card-link {
  display: block;
  height: 100%;
}

.card-image {
  height: 12rem;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.inventory-card:hover .card-image img {
  transform: scale(1.05);
  border: 1px solid #46669f;
}

.card-content {
  padding: 1rem;
  background-color: var(--white);
}

.card-title {
  font-weight: 500;
  color: var(--gray-800);
  transition: color 0.3s ease;
}

.inventory-card:hover .card-title {
  color: #46669f;
}
@media (max-width: 1024px) {
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .inventory-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 480px) {
  .inventory-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Locations Section ===== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.location-card {
  background-color: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.location-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.location-address,
.location-hours,
.location-phone {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.location-icon {
  margin-right: 0.5rem;
  color: #46669f;
}

.appointment-only,
.now-open {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.location-phone a {
  color: #46669f;
}

.location-phone a:hover {
  text-decoration: underline;
}

/* ===== Contact Form ===== 
.contact-container {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-form-container {
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.25rem;
}

.contact-form textarea {
  min-height: 7.5rem;
  resize: vertical;
}
.contact-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.contact-form .input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b0ba44;
  box-shadow: 0 0 5px rgba(176, 186, 68, 0.5);
  outline: none;
}

.contact-form button {
  background-color: #b0ba44;
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background-color: #9fa936;
  transform: translateY(-2px);
}

.contact-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.contact-form .input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: 500;
  color: black;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #46669f;
  box-shadow: 0 0 6px rgba(75, 125, 195, 0.6);
  outline: none;
}

.contact-form button {
  background-color: #46669f;
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background-color: #3d557f;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .contact-section {
    padding: 30px 15px;
  }

  .contact-form button {
    width: 100%;
  }
}*/

/* ======================== contact Page +====================== */

/* .contact-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
   max-width: 1200px;
  margin: auto; 
}
.contact-text {
  flex: 1 1 300px;
}

.contact-text h2 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.contact-form {
  flex: 1 1 500px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group.double {
  display: flex;
  gap: 15px;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #ccc;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--black);
  padding: 10px 5px;
  color: var(--cl-dark);
  font-size: 1rem;
  outline: none;
  background-color: white;
}

::placeholder {
  color: #777;
}

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.budget-options button {
  background: transparent;
  color: black;
  border: 1px solid black;
  border-radius: 50px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.budget-options button:hover {
  background: #39ff14;
  color: #000;
}

.submit-btn {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.8;
}
.contact-layout {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.contact-form-container {
  order: 1;
}

.contact-map {
  order: 2;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #39ff14;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-info span {
  font-size: 1.125rem;
  color: #39ff14;
}
.phone-info a {
  color: #39ff14;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #39ff14;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid var(--black);
  color: var(--cl-dark);
} */
/* ===  Styles === */
.contact-section {
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.contact-text h2 {
  font-size: 2.2rem;
  color: #1c1c1c;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 800px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.double {
  display: flex;
  gap: 20px;
}

.form-group.double input {
  width: 100%;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #2c2c2c;
}

label span {
  color: var(--black);
  font-size: 0.8rem;
  text-transform: lowercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #fff;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cl-dark);
  outline: none;
}

.budget-options button {
  margin: 5px 5px 0 0;
  padding: 10px 16px;
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.budget-options button:hover {
  background-color: #46669f;
  border-color: #46669f;
  color: #fff;
}

.submit-btn {
  background-color: #46669f;
  border: none;
  color: white;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #0aaf0a;
}

/* === Second Section: Let's Get In Touch  === */
.contact-section:nth-of-type(2) {
  background-color: whitesmoke;
  color: black;
}

.heading-lg {
  text-align: center;
  font-size: 2.5rem;
  color: #46669f;
  margin-bottom: 40px;
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-form-container {
  flex: 1 1 400px;
  color: white;
}

.contact-info h3 {
  margin-bottom: 10px;
  color: #46669f;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.phone-info .phone-icon {
  font-size: 1.4rem;
  color: deeppink;
}

.phone-info a {
  color: var(--cl-dark);
  text-decoration: none;
}

.phone-info a:hover {
  text-decoration: underline;
}

.contact-form-container input,
.contact-form-container textarea {
  background-color: var(--white);
  border: 2px solid #444;
  color: black;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
  border-color: #46669f;
  background-color: whitesmoke;
}

.btn-primary {
  background-color: #46669f;
  color: white;
  font-weight: 700;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #557dc3;
  color: white;
}

.full-width {
  width: 100%;
}

.contact-map {
  flex: 1 1 50%;
  min-height: 400px;
  display: flex;
}

.map-placeholder {
  width: 100%;
  height: 100%;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  min-height: 450px;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .contact-layout {
    flex-direction: column;
  }

  .contact-map {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .contact-form-container {
    flex: 1 1 100%;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .phone-info {
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
  }
  .input {
    width: 100%;
  }
}
/* ========================= Slider ============== */
.double-slider {
  width: 100%;
  background: #f8f9fc;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  padding: 15px 0;
  overflow: hidden;
}

.slider-wrapper {
  overflow: hidden;
  white-space: nowrap;
  margin: 10px 0;
}

.slider-wrapper ul {
  display: flex;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.slider-wrapper li a {
  font-weight: bold;
  color: #46669f;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  border: 1px solid #ddd;
  padding: 10px 20px;
}

.slider-wrapper li a:hover {
  color: #2c3e50;
}

/* Slider animation */
.slider-track {
  display: inline-block;
  animation: scroll-left 25s linear infinite;
}

/* Reverse direction */
.right-to-left .slider-track {
  animation: scroll-right 25s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  .slider-wrapper ul {
    gap: 20px;
  }

  .slider-wrapper li a {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 480px) {
  .slider-wrapper ul {
    gap: 10px;
  }

  .slider-wrapper li a {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  background: #fff;
  padding: 60px 20px;
  font-family: "Arial", sans-serif;
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: bold;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-weight: 600;
  color: #1a1a1a;
}

.faq-question .icon {
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding-left: 10px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 10px 0;
}
ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 6px;
}
/* Tablets (768px and up) */
@media (max-width: 991px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-section h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

/* Mobile devices (max 600px) */
@media (max-width: 600px) {
  .faq-section {
    padding: 30px 10px;
  }

  .faq-section h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
    padding: 12px 0;
  }

  .faq-question .icon {
    font-size: 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* ===== Footer Styles ===== */

.footer {
  background-color: #46669f;
  color: white;
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}
.footer-col img {
  /* margin-top: 10px; */
  width: 300px;
  height: 100px;
  border-radius: 20px;
}
.footer-col .mei {
  margin-top: 20px;
  width: 300px;
  height: 50px;
  border-radius: 10px;
}
.footer-col .meii {
  height: 150px;
}
.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.footer h4 {
  margin-top: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a,
.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  text-decoration: underline;
  color: #ffc107;
}

.footer-call-btn {
  background-color: black;
  color: #fff;
  border: none;
  padding: 10px 16px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
}
.footer-call-btn a {
  font-size: 20px;
}
.title a {
  font-size: 20px;
}
.footer-closed {
  font-size: 13px;
  color: #ccc;
}

.footer-search {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: none;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid #fff;
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
}

.footer-bottom p {
  margin: 5px 0;
  font-size: 13px;
}

.footer-socials a {
  color: white;
  margin: 0 8px;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #ffc107;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-col {
    flex: 1 1 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
    color: black;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
    color: black;
  }
}

.footer-socials ul {
  display: flex;
  justify-content: center;
}

.footer-socials ul li {
  list-style: none;
}

.footer-socials ul li a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  margin: 0 10px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  z-index: 1;
}

.footer-socials ul li a .icon,
.ico {
  position: relative;
  color: #262626;
  transition: 0.5s;
  z-index: 3;
}

.footer-socials ul li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}
.footer-socials ul li a:hover .ico {
  color: black;
  transform: rotateY(360deg);
}

.footer-socials ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}

.footer-socials ul li a:hover:before {
  top: 0;
}

.footer-socials ul li:nth-child(1) a:before {
  background: #3b5999;
}

.footer-socials ul li:nth-child(2) a:before {
  background: #55acee;
}

.footer-socials ul li:nth-child(3) a:before {
  background: #0077b5;
}

.footer-socials ul li:nth-child(4) a:before {
  background: #89f336;
}
.footer-socials ul li:nth-child(5) a:before {
  background: yellow;
}
.footer-socials ul li:nth-child(6) a:before {
  background: #dd4b39;
}
.footer-socials ul li:nth-child(7) a:before {
  background: #ffd700;
}
.footer-socials ul li:nth-child(8) a:before {
  background: blueviolet;
}
.footer-socials ul li:nth-child(9) a:before {
  background: pink;
}
@media screen and (max-width: 768px) {
  .footer-socials ul li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
  .footer-socials ul li a:hover .ico {
    color: #fff;
    transform: rotateY(360deg);
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .footer-socials ul li a {
    width: 20px;
    height: 20px;
    line-height: 18px;
    font-size: 10px;
  }
  .footer-col {
    flex: 1 1 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}

/*+++++++++++++++++++++++++ store   +========================== */
/* Cart Icon Styles */
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 1rem;
  padding: 0.5rem;
  font-size: 1.25rem;
  color: var(--gray-800);
  transition: color 0.3s ease;
}

.cart-icon:hover,
.cart-icon.active {
  color: var(--cl-yellow);
}

.cart-count {
  position: absolute;
  text-align: center;
  top: -0.5rem;
  right: -0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--cl-yellow);
  color: var(--black);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  display: none;
}

/* Filter Container */
.filter-container {
  margin-bottom: 2rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover {
  background-color: var(--gray-100);
}

.filter-btn.active {
  background-color: var(--cl-yellow);
  border-color: var(--cl-yellow);
  color: var(--black);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.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);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 1rem;
}

.product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.product-price {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.product-stock {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ===== Cart Page Styles ===== */

.cart-container {
  margin-bottom: 2rem;
}

.empty-cart-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  color: var(--gray-500);
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "image details"
      "image quantity"
      "image total"
      "remove remove";
    gap: 0.75rem;
  }

  .cart-item-image {
    grid-area: image;
  }

  .cart-item-details {
    grid-area: details;
  }

  .cart-item-quantity {
    grid-area: quantity;
  }

  .cart-item-total {
    grid-area: total;
  }

  .cart-item-remove {
    grid-area: remove;
    justify-self: end;
  }
}

.cart-item-image {
  width: 100px;
  height: 100px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--gray-600);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quantity-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 0.25rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background-color: var(--gray-200);
}

.quantity {
  font-weight: 600;
  min-width: 1.5rem;
  text-align: center;
}

.cart-item-total {
  font-weight: 700;
  min-width: 80px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--red-600);
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 0.5rem;
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

/* Cart Summary */
.cart-summary {
  max-width: 30rem;
  margin-left: auto;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: var(--gray-50);
}

.cart-totals {
  margin-bottom: 1.5rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.cart-total-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: none;
  padding-top: 1rem;
}

.cart-buttons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 640px) {
  .cart-buttons {
    flex-direction: column;
  }
}

/* Related Products */
.related-products-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
}

.related-product {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-product .product-image {
  height: 10rem;
}

.related-product .product-info {
  padding: 1rem;
}

.related-product .button {
  margin-top: 0.75rem;
  width: 100%;
}

/* Notification System */
#notificationContainer {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1000;
  max-width: 100%;
  width: 300px;
}

.notification {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  animation: slideIn 0.3s ease forwards;
}

.notification.success {
  border-left: 4px solid var(--green-600);
}

.notification.error {
  border-left: 4px solid var(--red-600);
}

.notification.fade-out {
  animation: slideOut 0.3s ease forwards;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--gray-600);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Contact Info 
.contact-layout {
  flex-direction: row;
}

.contact-form-container {
  order: 1;
  width: 50%;
}
.contact-info {
  margin-bottom: 2rem;
}

.contact-name {
  font-weight: 700;
}

.contact-link {
  color: var(--blue-600);
}

.contact-link:hover {
  text-decoration: underline;
}

.section-image {
  max-width: 32rem;
  margin: 2rem auto;
}

.section-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
} */

/* ===== Inventory Grid ===== */
/* .inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.inventory-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.inventory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.card-link {
  display: block;
  height: 100%;
}

.card-image {
  height: 12rem;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.inventory-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1rem;
  background-color: var(--white);
}

.card-title {
  font-weight: 500;
  color: var(--gray-800);
  transition: color 0.3s ease;
}

.inventory-card:hover .card-title {
  color: var(--cl-yellow);
} */

/* ===== Locations Section ===== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(3, 0fr);
  }
}

.location-card {
  background-color: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.location-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.location-address,
.location-hours,
.location-phone {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.location-icon {
  margin-right: 0.5rem;
  color: var(--cl-yellow);
}

.appointment-only,
.now-open {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.location-phone a {
  color: var(--blue-600);
  font-size: 20px;
}

.location-phone a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .location-card {
    padding: 1rem;
  }

  .location-title {
    font-size: 1.125rem;
  }

  .location-address,
  .location-hours,
  .location-phone {
    font-size: 0.875rem;
  }
}
/* ===== Contact Form ===== 
.contact-container {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-form-container {
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.25rem;
}

.contact-form textarea {
  min-height: 7.5rem;
  resize: vertical;
}
  */

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.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);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 1rem;
}

.product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.product-price {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.product-stock {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ===== Cart Page Styles ===== */

.cart-container {
  margin-bottom: 2rem;
}

.empty-cart-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  color: var(--gray-500);
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "image details"
      "image quantity"
      "image total"
      "remove remove";
    gap: 0.75rem;
  }

  .cart-item-image {
    grid-area: image;
  }

  .cart-item-details {
    grid-area: details;
  }

  .cart-item-quantity {
    grid-area: quantity;
  }

  .cart-item-total {
    grid-area: total;
  }

  .cart-item-remove {
    grid-area: remove;
    justify-self: end;
  }
}

.cart-item-image {
  width: 100px;
  height: 100px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--gray-600);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quantity-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 0.25rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background-color: var(--gray-200);
}

.quantity {
  font-weight: 600;
  min-width: 1.5rem;
  text-align: center;
}

.cart-item-total {
  font-weight: 700;
  min-width: 80px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--red-600);
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 0.5rem;
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

/* Cart Summary */
.cart-summary {
  max-width: 30rem;
  margin-left: auto;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: var(--gray-50);
}

.cart-totals {
  margin-bottom: 1.5rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.cart-total-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: none;
  padding-top: 1rem;
}

.cart-buttons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 640px) {
  .cart-buttons {
    flex-direction: column;
  }
}

/* Related Products */
.related-products-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
}

.related-product {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-product .product-image {
  height: 10rem;
}

.related-product .product-info {
  padding: 1rem;
}

.related-product .button {
  margin-top: 0.75rem;
  width: 100%;
}

/* Notification System */
#notificationContainer {
  position: fixed;
  top: 5rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1000;
  max-width: 100%;
  width: 300px;
}

.notification {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  animation: slideIn 0.3s ease forwards;
}

.notification.success {
  border-left: 4px solid var(--green-600);
}

.notification.error {
  border-left: 4px solid var(--red-600);
}

.notification.fade-out {
  animation: slideOut 0.3s ease forwards;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--gray-600);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
