/* === Global Styles === */
:root {
  /* Colors from config.json */
  --primary-color: #0a403a;
  --secondary-color: #1a5e52;
  --accent-color: #ffd700;
  --text-light-color: #ffffff;
  --text-dark-color: #2c3e50;
  --light-grayish-blue-color: #ecf0f1;
  --background-light-color: #fdfdfd;

  /* Other values from config.json */
  --border-radius: 15px;
  --shadow-light: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 20px 40px rgba(0,0,0,0.25);

  /* Font Families from config.json */
  --font-inter: 'Inter', sans-serif;
  --font-playfair-display: 'Playfair Display', serif;

  /* NEW: Hero Specific Colors now derived directly from config.json */
  --hero-gradient-start-color: var(--primary-color); /* Will be overridden by script.js if defined */
  --hero-gradient-end-color: var(--secondary-color); /* Will be overridden by script.js if defined */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-inter);
  background: var(--background-light-color);
  color: var(--text-dark-color);
  opacity: 0;
  animation: fadeInBody 1s ease forwards;
}


@keyframes fadeInBody {
  to {
    opacity: 1;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-playfair-display);
  margin: 0;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, transform 0.3s ease;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 2rem;
}

/* === Header === */
header {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--text-light-color);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeInHeader 0.8s ease-in-out;
}

@keyframes fadeInHeader {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
  }
}

.logo {
  min-width: 188px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-weight: 500;
}

nav ul li {
  transition: transform 0.3s ease;
  position: relative;
}

/* Add new styles for dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 5px;
  padding: 10px 0;
  margin-top: 10px;
  z-index: 1000;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

nav ul li a {
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  color: var(--text-light-color);
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
  background: rgba(255,215,0,0.2);
  color: var(--accent-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light-color);
  margin-left: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

.actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.actions input {
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  border: none;
  font-size: 0.95rem;
  background: rgba(255,215,0,0.1);
  color: var(--text-dark-color);
  transition: background 0.3s ease;
}

.actions input:focus {
  outline: none;
  background: rgba(255,215,0,0.2);
}

/* === Hero Section === */
.hero {
  background: linear-gradient(to bottom, var(--hero-gradient-start-color), var(--hero-gradient-end-color));
  color: var(--text-light-color);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}


.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  animation: heroEntrance 1s ease-out forwards;
  animation-delay: 0.3s;
  position: relative;
  z-index: 1;
}


@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .text {
  flex: 1;
  max-width: 850px;
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero .highlight {
  color: var(--accent-color);
  font-weight: 800;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--light-grayish-blue-color);
  line-height: 1.6;
}

.buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: buttonsSlideIn 0.8s ease forwards;
  animation-delay: 0.9s;
}

.hero .image img {
  width: 100%;
  max-width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  transition: transform 0.4s ease;
  border: 2px solid var(--light-grayish-blue-color);
}

@keyframes buttonsSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn, .btn-outline {
  padding: 1rem 2rem;
  border-radius: 35px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow-light);
}

.btn {
  background: var(--accent-color);
  color: var(--primary-color);
}

.btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.btn.video {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn.video:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.hero .image img {
  width: 100%;
  max-width: 450px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  transition: transform 0.4s ease;
  border: 2px solid var(--light-grayish-blue-color);
}

.hero .image img:hover {
  transform: scale(1.08);
}

.hero-curve {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 140px;
  z-index: 1;
  overflow: hidden;
  line-height: 0;
}

.hero-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* === Featured Section === */
.featured {
  background: var(--background-light-color);
  text-align: center;
  padding: 6rem 2rem 3rem;
}

.featured h2 {
  font-family: var(--font-playfair-display);
  font-size: 2.5rem;
  /*color: var(--primary-color);*/
  color: black;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-in;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.featured p {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1.2s ease-in;
}

.featured .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.card {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--accent-color);
}

.card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(to top, hsla(170, 71%, 10%, 0.7), transparent 70%);
  color: var(--text-light-color);
  text-align: center;
  transition: background 0.3s ease;
  box-sizing: border-box;
}

.card .overlay .text-overlay {
  background: rgba(253, 253, 253, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  display: inline-block;
}


.card .overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-playfair-display);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0);
  font-weight: 700;
  display: block;
  color: var(--text-light-color);
}



/* Ensure the link inside h3 also respects block display for wrapping */
.card .overlay h3 a {
  display: block;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.card .overlay p {
  font-size: 1rem;
  line-height: 1.5;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  opacity: 0.9;
  word-break: break-word;
  overflow-wrap: break-word;
}


/* === Why Choose Us Section === */
.why-choose-us {
  background: var(--background-light-color);
  text-align: center;
  padding: 3rem 2rem 6rem;
}

.why-choose-us h2 {
  font-family: var(--font-playfair-display);
  font-size: 3rem;
  /*color: var(--primary-color);*/
  color: black;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.why-choose-us p {
  font-size: 1.2rem;
  color: #7D7882;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-us .usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.usp-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.usp-card .icon-circle {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.usp-card .icon-circle img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
}

.usp-card h3 {
  font-family: var(--font-playfair-display);
  font-size: 1.7rem;
  /*color: var(--primary-color);*/
  color: #7D7882;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.usp-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
  color: #7D7882;

}

/* === Key Metrics Section === */
.key-metrics {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: var(--text-light-color);
  padding: 4rem 2rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.key-metrics .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-item h3 {
  font-family: var(--font-playfair-display);
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.metric-item p {
  font-size: 1.1rem;
  color: var(--light-grayish-blue-color);
  margin-bottom: 0;
}

/* === Customer Reviews Section === */
.customer-reviews {
  background: var(--background-light-color);
  text-align: center;
  padding: 6rem 2rem;
}

.customer-reviews h2 {
  font-family: var(--font-playfair-display);
  font-size: 3rem;
  /*color: var(--primary-color);*/
  color: black;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.customer-reviews p {
  font-size: 1.2rem;
  color: #7D7882;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.customer-reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Customer Reviews Section */
.review-card .customer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--accent-color);
  box-shadow: var(--shadow-light);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.review-card .stars {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-card h3 {
  font-family: var(--font-playfair-display);
  font-size: 1.7rem;
  color: #7D7882;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #7D7882;

}


/* In style.css, add this new rule */
.review-card .reviewer {
  font-weight: 600;
  /* Change the color to be darker for better contrast */
  color: #7D7882;
}

/* === About Us Section === */
.about-us {
  background: var(--background-light-color);
  padding: 6rem 2rem;
}

.about-us .about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-us .image-col {
  flex: 1;
  min-width: 300px;
}
.about-us .image-col img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: transform 0.4s ease;
  border: 2px solid var(--light-grayish-blue-color);
}

.about-us .image-col img:hover {
  transform: scale(1.03);
}

.about-us .text-col {
  flex: 2;
  min-width: 300px;
}

.about-us .text-col h2 {
  font-family: var(--font-playfair-display);
  font-size: 3rem;
  /*color: var(--primary-color);*/
  color: black;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.about-us .text-col p {
  font-size: 1.1rem;
  color: #7D7882;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light-color);
  color: var(--text-dark-color);

  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}


/* === Footer === */
footer {
  background: var(--primary-color);
  color: var(--text-light-color);
  padding: 5rem 2rem 3rem;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}

footer h4 {
  margin-bottom: 1.2rem;
  color: var(--accent-color);
  font-size: 1.3rem;
}

footer p {
  font-size: 1rem;
  color: var(--light-grayish-blue-color);
  line-height: 1.6;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.7rem;
}

footer ul li a {
  color: var(--light-grayish-blue-color);
  display: block;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* For direct text in Address column */
footer .col ul li {
  color: var(--light-grayish-blue-color);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Update social icon styling */
footer .socials a {
  margin-right: 1rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  cursor: pointer;
}

footer .socials a:hover {
  color: var(--light-grayish-blue-color);
}

footer .socials a .social-icon {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

footer .copyright {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--light-grayish-blue-color);
}

/* === Animations === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  background-color: var(--primary-color);
  margin: auto;
  padding: 0;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  width: 90%;
  max-width: 900px;
}

.close-button {
  color: var(--text-light-color);
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
  color: var(--accent-color);
  text-decoration: none;
  cursor: pointer;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: black;
  border-radius: var(--border-radius);
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .featured .grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .usp-card { padding: 1.5rem; }
  .usp-card .icon-circle { width: 60px; height: 60px; }
  .usp-card .icon-circle img { width: 32px; height: 32px; }
  .key-metrics .container { grid-template-columns: repeat(2, 1fr); }
  .customer-reviews .reviews-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary-color); text-align: center; box-shadow: var(--shadow-light); }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: 1.5rem 0; gap: 1rem; }
  nav ul li { padding: 0.6rem 0; }
  .actions { display: none; }
  .hero-content { flex-direction: column-reverse; text-align: center; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.1rem; }
  .buttons { flex-direction: column; align-items: center; gap: 1rem; }
  .btn, .btn-outline { padding: 0.9rem 1.8rem; font-size: 1rem; }
  /* UPDATED RULE BELOW */
  .hero .image img {max-width: 100%; width: 100%; aspect-ratio: 1 / 1;   /* ADD THIS LINE */ object-fit: cover;     /* ADD THIS LINE */}
  .featured h2, .why-choose-us h2, .customer-reviews h2 { font-size: 2.2rem; }
  .featured p, .why-choose-us p, .customer-reviews p { font-size: 1.1rem; }
  .featured .grid { grid-template-columns: 1fr; }
  .card { width: 100%; padding-bottom: 100%; height: 0; }
  .card .overlay h3 { font-size: 1.8rem; }
  .card .overlay p { font-size: 1.1rem; }
  .btn-outline.featured-btn { padding: 0.9rem 2rem; font-size: 1rem; }
  .key-metrics { padding: 3rem 1.5rem; margin-bottom: 3rem; }
  .metric-item h3 { font-size: 2.5rem; }
  .metric-item p { font-size: 0.9rem; }
  .customer-reviews { padding: 4rem 1.5rem; }
  .customer-reviews p { font-size: 1.1rem; }
  .about-us .text-col p { font-size: 1rem; }
  footer .container { grid-template-columns: 1fr; gap: 2rem; }
  footer h4 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.5rem; }
  .logo img { height: 40px; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .buttons { flex-direction: column; align-items: center; gap: 1rem; }
  .btn, .btn-outline { padding: 0.8rem 1.5rem; font-size: 1rem; }
  .featured { padding: 4rem 1.5rem 2rem; }
  .featured h2, .why-choose-us h2, .customer-reviews h2, .about-us .text-col h2 { font-size: 1.8rem; }
  .card { height: auto; }
  .card .overlay h3 { font-size: 1.8rem; }
  .card .overlay p { font-size: 1.1rem; }
  .btn-outline.featured-btn { padding: 0.8rem 1.8rem; font-size: 0.95rem; }
  .why-choose-us { padding: 2rem 1.5rem 4rem; }
  .usp-card { padding: 1rem; }
  .usp-card h3 { font-size: 1.4rem; }
  .usp-card p { font-size: 0.9rem; }
  .key-metrics { padding: 3rem 1.5rem; margin-bottom: 3rem; }
  .metric-item h3 { font-size: 2.5rem; }
  .metric-item p { font-size: 0.9rem; }
  .customer-reviews { padding: 4rem 1.5rem; }
  .customer-reviews p { font-size: 1.1rem; }
  .about-us .text-col p { font-size: 1rem; }
  footer .container { grid-template-columns: 1fr; gap: 2rem; }
  footer h4 { font-size: 1.2rem; }
}

/* === Redesigned Delivery Info Section Styles === */
#delivery-info-section {
    background: var(--background-light-color);
    padding: 6rem 2rem;
}

#delivery-info-section .section-title,
#payment-info-section .section-title,
#warranty-info-section .section-title {
  font-family: var(--font-playfair-display);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  text-align: center;
}

.delivery-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.delivery-text-content {
    flex: 2;
    min-width: 300px;
}

.delivery-image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.delivery-image-content img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

/* === Style Enforcement Rules === */
.delivery-text-content, .delivery-text-content * {
    font-family: var(--font-inter) !important;
    color: var(--text-dark-color) !important;
    font-size: 1rem !important;
    background: none !important;
}

.delivery-text-content h3 {
    font-family: var(--font-playfair-display) !important;
    color: var(--secondary-color) !important;
    font-size: 1.8rem !important;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-grayish-blue-color);
}

.delivery-text-content h3:first-child {
    margin-top: 0;
}

.delivery-text-content ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.delivery-text-content ul li {
    line-height: 1.8;
    margin-bottom: 0.75rem;
    position: relative;
}

.delivery-text-content ul li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: -1.5rem;
    top: 0;
    font-family: sans-serif !important; /* Ensure bullet is a simple character */
}

.delivery-text-content ul ul {
    margin-top: 0.75rem;
    padding-left: 2rem;
}

.delivery-text-content ul ul li::before {
    content: '◦';
    color: var(--primary-color);
}

.delivery-text-content b,
.delivery-text-content strong {
    font-weight: bold !important;
    font-family: inherit !important; /* Make sure bold tags don't change font */
    color: inherit !important;
}


@media (max-width: 768px) {
    .delivery-content-wrapper {
        flex-direction: column-reverse;
    }
}
