/* Mustasch Barbershop - Enhanced CSS */

/* Global Variables - Refined Dark Theme */
:root {
  --primary-color: #fdf6e9; /* Warm Cream background */
  --secondary-color: #4f403a; /* Dark Brown for text/headings */
  --accent-color: #a0522d; /* Sienna/Warm Brown accent */
  --text-color: #6b5b54; /* Slightly lighter brown for body text */
  --heading-color: var(--secondary-color);
  --background-color: #f9f0df; /* Slightly darker cream for sections */
  --card-background: #ffffff; /* White cards */
  --border-color: rgba(79, 64, 58, 0.15); /* Dark Brown based border */
  --shadow-color-light: rgba(79, 64, 58, 0.1);
  --shadow-color-heavy: rgba(79, 64, 58, 0.2);

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-signature: 'Pacifico', cursive;

  --border-radius-base: 8px;
  --border-radius-large: 16px;
  --box-shadow-light: 0 5px 15px var(--shadow-color-light);
  --box-shadow-heavy: 0 10px 25px var(--shadow-color-heavy);
  --transition-duration: 0.3s;
  --transition-timing: ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px; /* Adjusted for potentially slightly taller sticky nav */
  font-size: 100%; /* Base font size */
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='5' viewBox='0 0 5 5'%3E%3Cpath fill='%23444' fill-opacity='0.08' d='M1 4h1v1H1V4zm2-2h1v1H3V2zM0 0h1v1H0V0zm4 4h1v1H4V4z'%3E%3C/path%3E%3C/svg%3E");
  color: var(--text-color);
  font-size: 1rem; /* Approx 16px */
  line-height: 1.75; /* Slightly increased for readability */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { /* Include SVG for potential future use */
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-base);
  object-fit: cover; /* Maintain object-fit */
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: color var(--transition-duration) var(--transition-timing);
}

a:hover {
  color: var(--secondary-color);
}

.container {
  width: 90%;
  max-width: 1240px; /* Slightly wider max-width */
  margin: 0 auto;
}

/* Typography Refinements */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1px; /* Slightly wider spacing */
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  margin-bottom: 1.2rem;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); /* Responsive font size */
  margin-bottom: 3rem; /* Consistent spacing */
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem; /* More space for underline */
}

/* Underline effect for H2 */
h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px; /* Slightly wider underline */
  height: 4px; /* Slightly thicker */
  background-color: var(--accent-color);
  border-radius: 2px; /* Soften edges */
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem); /* Responsive font size */
  margin-bottom: 0.8rem;
  font-weight: 500; /* Oswald looks good at 500 */
}

.section {
  padding: 90px 0; /* Increased vertical padding */
}

.section-title { /* Alias for consistency if needed */
  margin-bottom: 3.5rem;
}

/* --- Enhanced Buttons --- */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px; /* Slightly larger padding */
  border-radius: var(--border-radius-base);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px; /* More spacing */
  border: 2px solid transparent;
  transition: all var(--transition-duration) var(--transition-timing);
  cursor: pointer;
  text-align: center;
  line-height: 1.2; /* Ensure text vertical alignment */
}

/* --- Optional: Consistent base button shadow --- */
.btn-primary {
  background-color: var(--accent-color); /* Sienna */
  color: var(--primary-color); /* Cream */
  box-shadow: var(--box-shadow-light); /* Use theme light shadow */
  /* other styles */
  border-color: var(--accent-color); /* Ensure base border color matches bg */
}

.btn-primary:hover {
  background-color: #8f4928; /* CORRECTED: Use pre-calculated darker Sienna */
  border-color: #8f4928;     /* CORRECTED: Use pre-calculated darker Sienna */
  color: var(--primary-color); /* Cream text */
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--box-shadow-heavy); /* Use theme shadow */
}


.btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-secondary:hover {
  background-color: var(--accent-color); /* Sienna background is fine */
  color: var(--primary-color); /* Cream text is fine */
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-heavy); /* USE THEME SHADOW */
}

/* --- FIXED NAVBAR RULE --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  /* Use the slightly darker cream with transparency */
  background-color: rgba(249, 240, 223, 0.9); /* CORRECTED: Light background (from --background-color) */
  backdrop-filter: blur(10px); /* Blur might need adjustment on light bg */
  border-bottom: 1px solid var(--border-color); /* Dark brown border is fine */
  transition: padding var(--transition-duration) var(--transition-timing);
  box-shadow: 0 2px 10px rgba(79, 64, 58, 0.08); /* Subtle shadow for light navbar */
}

/* Optional: Shrink navbar on scroll */
/* .navbar.scrolled { padding: 10px 0; } */

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 2rem; /* Slightly larger */
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px; /* Match headings */
}

.menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--secondary-color);
  cursor: pointer;
  background: none;
  border: none;
}

.nav-links {
  display: flex;
  gap: 40px; /* Increased gap */
  list-style: none;
  align-items: center;
}

.nav-links li a {
  color: var(--secondary-color);
  font-weight: 400; /* Lato 400 is good */
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px; /* Consistent spacing */
  padding-bottom: 8px; /* More space for border */
  border-bottom: 3px solid transparent; /* Thicker inactive border */
  transition: border-color var(--transition-duration) var(--transition-timing), color var(--transition-duration) var(--transition-timing);
  position: relative; /* For potential ::after effects */
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.nav-booking-btn { /* Uses btn styles now - more consistent */
  padding: 10px 20px; /* Slightly adjusted padding for nav context */
  font-size: 0.9rem;
  letter-spacing: 1px;
  /* Inherits .btn-primary styles */
}

.nav-booking-btn:hover {
  /* Keep specific override for nav booking button hover */
  background-color: var(--secondary-color); /* Dark Brown background */
  border-color: var(--secondary-color);
  color: var(--primary-color); /* Cream text */
  /* It inherits the transform/scale from btn-primary:hover which is fine */
  box-shadow: var(--box-shadow-heavy); /* Use theme shadow */
}


/* --- Enhanced Hero Section --- */
.hero {
  padding: 140px 0 120px; /* More vertical space */
  text-align: center;
  background-color: var(--primary-color);
  position: relative; /* For potential pseudo-elements */
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--secondary-color);
  margin-bottom: 1.8rem;
}

.subtext { /* Tagline */
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 3rem;
  font-style: italic;
  font-weight: 300; /* Lighter Lato */
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9; /* Slightly fade */
}

.subtext-alt { /* For Why Choose Us */
  font-size: 1.15rem;
  color: var(--text-color);
  text-align: center;
  margin-top: -2rem;
  margin-bottom: 3.5rem;
  opacity: 0.9;
}

/* --- Enhanced Services Section --- */
.services {
  background-color: var(--background-color); /* Use alternate dark */
}

.price-toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 20px; /* More gap */
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.toggle-btn {
  background-color: var(--card-background);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  border-radius: 30px; /* More rounded */
  padding: 12px 25px; /* More padding */
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-duration) var(--transition-timing);
  text-transform: uppercase; /* Make them feel more like buttons */
  letter-spacing: 0.5px;
}

.toggle-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px); /* Lift on hover */
}

.toggle-btn.active {
  background-color: var(--accent-color);
  color: var(--primary-color); /* Cream text */
  border-color: var(--accent-color);
  font-weight: 700;
  box-shadow: var(--box-shadow-light); /* USE THEME SHADOW */
  transform: translateY(0);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); /* Slightly larger min width */
  gap: 35px; /* Increased gap */
}

.service-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius-base);
  overflow: hidden;
  transition: transform var(--transition-duration) var(--transition-timing), box-shadow var(--transition-duration) var(--transition-timing);
  box-shadow: var(--box-shadow-light);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-color); /* Accent border on top */
}

.service-card:hover {
  transform: translateY(-10px); /* More lift on hover */
  box-shadow: var(--box-shadow-heavy);
}

.service-card img {
  width: 100%;
  height: 250px; /* Consistent height */
  object-fit: cover;
  border-radius: 0; /* Remove radius as top border exists */
  /* border-bottom: 3px solid var(--accent-color); */ /* Removed - border is on top now */
  transition: opacity var(--transition-duration) ease;
}

.service-info {
  padding: 30px 25px; /* More padding */
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-info h3 {
  color: var(--heading-color);
  font-size: 1.5rem; /* Slightly larger */
}

.description {
  font-size: 1rem;
  color: var(--text-color);
  margin: 0.8rem 0 1.5rem; /* Adjusted margin */
  transition: opacity 0.3s ease-in-out;
  min-height: 60px; /* Ensure more space */
  opacity: 0.9; /* Slightly faded description text */
}

.price {
  font-weight: 700;
  font-size: 1.3rem; /* Larger price */
  color: var(--secondary-color);
  transition: opacity 0.3s ease-in-out;
}

.price-label {
  font-size: 0.85rem; /* Slightly larger label */
  color: var(--text-color);
  margin-left: 10px;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.8; /* Fade label slightly */
}

/* Fade transitions for price/description toggle */
.fade-out {
  opacity: 0 !important; /* Use important to override inline styles if needed */
  transition: opacity 0.15s ease-out !important;
}
.fade-in {
  opacity: 1 !important;
  transition: opacity 0.2s ease-in 0.15s !important;
}

/* --- Enhanced Gallery Swiper --- */
.gallery {
  background-color: var(--primary-color); /* Match body */
}
.swiper {
  width: 100%;
  margin-top: 2.5rem; /* More space above */
  border-radius: var(--border-radius-base);
  overflow: hidden;
  box-shadow: var(--box-shadow-heavy); /* Heavier shadow for gallery */
}

.swiper-slide img {
  width: 100%;
  height: 600px; /* Increase height for impact */
  object-fit: cover;
  border-radius: 0;
  filter: saturate(1.1); /* Slightly enhance color */
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background-color: rgba(241, 238, 233, 0.6); /* Semi-transparent cream */
  opacity: 0.8;
  width: 10px; /* Slightly larger bullets */
  height: 10px;
  transition: background-color var(--transition-duration) var(--transition-timing);
}
.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
  transform: scale(1.1); /* Slightly larger active bullet */
}

/* --- Enhanced Why Choose Us Section --- */
.why-choose {
  background-color: var(--background-color); /* Alternate dark */
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px; /* Consistent gap */
  margin-top: 3.5rem;
}

.why-card {
  background-color: var(--card-background);
  padding: 35px 30px; /* More padding */
  border-radius: var(--border-radius-base);
  text-align: center;
  border: 1px solid var(--border-color);
  border-bottom: 4px solid var(--accent-color); /* Accent border on bottom */
  box-shadow: var(--box-shadow-light);
  transition: transform var(--transition-duration) var(--transition-timing), box-shadow var(--transition-duration) var(--transition-timing);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-heavy);
}

.why-card .icon {
  display: inline-block;
  font-size: 2.8rem; /* Larger icons */
  margin-bottom: 1.2rem;
  line-height: 1;
  color: var(--accent-color); /* Apply accent color directly */
}

.why-card h3 {
  font-size: 1.4rem; /* Consistent heading size */
  color: var(--heading-color); /* Use standard heading color */
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  opacity: 0.9; /* Slightly fade text */
}

/* --- Enhanced About Us Section --- */
.about {
  background-color: var(--primary-color); /* Match body */
}
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px; /* Increased gap */
  padding: 50px; /* More padding */
  background-color: var(--card-background);
  border-radius: var(--border-radius-large); /* Larger radius for visual distinction */
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow-heavy); /* More prominent shadow */
}

.about-wrapper img {
  width: 100%;
  max-width: 380px; /* Slightly larger image */
  height: auto;
  flex-shrink: 0;
  border-radius: var(--border-radius-base);
  /* box-shadow: var(--box-shadow-heavy); */ /* Shadow is on wrapper now */
  border: 5px solid var(--accent-color); /* Thicker accent border */
  filter: contrast(1.05); /* Slightly increase contrast */
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem; /* Slightly larger text */
  color: var(--text-color);
  line-height: 1.8; /* Increase line height */
}

.about-text .signature {
  font-family: var(--font-signature);
  font-size: 2rem; /* Larger signature */
  color: var(--accent-color);
  margin-top: 2rem;
  line-height: 1.2;
  text-align: right;
}

/* --- Enhanced Contact & Info Section --- */
.contact-info {
  background-color: var(--background-color); /* Alternate dark */
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); /* Adjust minmax */
  gap: 35px; /* Consistent gap */
  margin-top: 3.5rem;
  align-items: stretch;
}

.info-card {
  background-color: var(--card-background);
  border-radius: var(--border-radius-base);
  padding: 40px 30px; /* Increased padding */
  box-shadow: var(--box-shadow-light);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform var(--transition-duration) var(--transition-timing), box-shadow var(--transition-duration) var(--transition-timing);
  border-top: 4px solid var(--accent-color); /* Accent border */
}

.info-card:hover {
  transform: translateY(-8px); /* Consistent lift */
  box-shadow: var(--box-shadow-heavy);
}

.info-icon {
  width: 60px; /* Larger icon circle */
  height: 60px;
  border-radius: 50%;
  font-size: 2rem; /* Larger icon */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: var(--accent-color);
  color: var(--primary-color); /* Dark text on accent */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}

.info-card h3 {
  font-size: 1.5rem; /* Larger heading */
  color: var(--heading-color);
  margin-bottom: 0.6rem;
}

.info-subtext {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.8px; /* More spacing */
}

.info-text, .info-list {
  font-size: 1.05rem; /* Slightly larger info text */
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem; /* More space before button */
  flex-grow: 1;
}

.info-list {
  list-style: none;
  padding: 0;
}
.info-list li {
  margin-bottom: 0.5rem; /* More space between lines */
}
.info-list strong {
  color: var(--secondary-color);
  margin-right: 8px;
  font-weight: 600; /* Slightly bolder */
}

.map-btn, .call-btn {
  margin-top: auto;
  padding: 12px 24px; /* Match secondary button style */
  /* Inherits .btn-secondary styles */
}
.call-btn { /* Specific styling if needed */
    /* Example: font-weight: 700; */
}


/* --- Enhanced Footer --- */
.footer {
  text-align: center;
  padding: 50px 20px; /* More padding */
  margin-top: 80px; /* More space above footer */
  background-color: var(--card-background);
  border-top: 2px solid var(--border-color); /* Thicker border */
  color: var(--text-color);
  font-size: 0.95rem; /* Slightly larger */
}

.footer p {
  opacity: 0.7; /* Slightly more faded */
  letter-spacing: 0.3px;
}

/* --- Sticky Book Button (Consider if needed on mobile) --- */
.sticky-book-btn {
  position: fixed;
  bottom: 30px; /* Higher position */
  right: 30px;
  z-index: 999;
  padding: 14px 24px; /* Consistent with buttons */
  font-size: 1rem;
  border-radius: 30px; /* Fully rounded */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  /* Inherits .btn-primary styles */
}

/* --- Enhanced Reviews Section --- */
.reviews {
  background-color: var(--background-color); /* Alternate dark */
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); /* Match services */
  gap: 35px; /* Consistent gap */
  margin-top: 3rem;
}

.review-card {
  background-color: var(--card-background);
  padding: 35px; /* More padding */
  border-radius: var(--border-radius-base);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-color); /* Accent on the left */
  box-shadow: var(--box-shadow-light);
  display: flex;
  flex-direction: column;
  /* align-items: center; */ /* Align left now */
  text-align: left; /* Left align text */
}

.review-stars {
  font-size: 1.3rem; /* Slightly smaller stars, more subtle */
  color: var(--accent-color); /* Use accent gold */
  margin-bottom: 1.2rem;
  line-height: 1;
}

.review-text {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 1.8rem;
  flex-grow: 1;
  line-height: 1.7;
  font-size: 1.1rem; /* Larger review text */
  opacity: 0.95; /* Almost full opacity */
  position: relative;
  padding-left: 1.5em; /* Space for quote */
}

.review-text::before {
  content: '“'; /* Open quote */
  font-family: Georgia, serif; /* Serif for quotes */
  font-size: 3em; /* Larger quote */
  opacity: 0.3; /* More subtle quote mark */
  line-height: 0;
  position: absolute;
  top: 0.1em;
  left: -0.1em; /* Position quote */
  color: var(--accent-color);
}

/* Remove closing quote for cleaner look */
/* .review-text::after { ... } */


.review-author {
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: auto;
  font-size: 1rem;
  text-align: right; /* Align author right */
}

.review-author::before {
    content: "— "; /* Em dash before author */
    opacity: 0.8;
}

/* Link to Google Reviews */
.reviews .btn-secondary { /* Target button within reviews section */
    margin-top: 2rem; /* Space above button */
    display: block; /* Make it block level */
    max-width: 300px; /* Limit width */
    margin-left: auto;
    margin-right: auto; /* Center the button */
}

/* --- Enhanced Products Section --- */
.products {
  background-color: var(--primary-color); /* Match body */
  overflow: hidden;
}

.product-display-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px; /* Match about section gap */
  background-color: var(--card-background);
  padding: 40px; /* Match about section padding */
  border-radius: var(--border-radius-large); /* Match about section radius */
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow-heavy);
}

.product-image-container {
  flex: 1 1 45%; /* Slightly more space for images */
  min-width: 300px;
  position: relative;
  border-radius: var(--border-radius-base);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25); /* Enhanced shadow */
}

.productSwiper {
  width: 100%;
  height: 100%;
}

.productSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 550px; /* Increased max height */
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1.05); /* Slight saturation boost */
}

.product-pagination {
  position: absolute;
  bottom: 15px !important; /* More space from bottom */
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  z-index: 10;
}

.product-pagination .swiper-pagination-bullet {
  background-color: rgba(241, 238, 233, 0.7); /* Slightly more opaque */
  opacity: 1;
  width: 11px; /* Match gallery */
  height: 11px;
  margin: 0 6px !important; /* Adjust spacing */
}

.product-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color); /* Accent color for active dot */
   transform: scale(1.1); /* Match gallery */
}

.product-text-content {
  flex: 1 1 50%; /* Take remaining space */
  min-width: 300px;
}

.product-text-content h3 {
    font-size: 1.8rem; /* Larger heading for this section */
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.product-text-content p {
    font-size: 1.05rem; /* Standard info text size */
    color: var(--text-color);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.product-text-content ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.product-text-content li {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 0.8rem; /* Space between list items */
    padding-left: 1.8em; /* Space for custom bullet */
    position: relative;
}

.product-text-content li::before {
    content: '→'; /* Arrow bullet */
    position: absolute;
    left: 0;
    top: 0.05em; /* Adjust vertical alignment */
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2em; /* Make arrow slightly larger */
}

.product-text-content strong {
    color: var(--secondary-color); /* Highlight brand names etc. */
    font-weight: 600;
}

.product-text-content small {
    display: block; /* Make it block */
    margin-top: 1.5rem; /* Space above */
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}


/* --- Responsive Styles --- */

/* Tablet */
@media (max-width: 992px) {
  html { scroll-padding-top: 75px; }
  .container { width: 92%; }
  .about-wrapper { flex-direction: column; text-align: center; padding: 40px; }
  .about-wrapper img { max-width: 320px; margin-bottom: 2.5rem; }
  .about-text .signature { text-align: center; font-size: 1.8rem; }
  .info-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .product-display-wrapper { padding: 30px; }
  .product-text-content h3 { text-align: center; }
}

/* Mobile Large */
@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }
  .section { padding: 70px 0; }
  .navbar { padding: 15px 0; }
  .nav-wrapper { position: relative; }
  .menu-toggle { display: block; order: 3; }
  .nav-logo { order: 1; font-size: 1.8rem; }
  .nav-booking-btn { display: none; } /* Hide booking button in nav */

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--card-background); /* Use card background */
    flex-direction: column;
    padding: 10px 0; /* Reduced padding */
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow */
    max-height: calc(100vh - 70px); /* Limit height */
    overflow-y: auto; /* Allow scrolling if needed */
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links li a {
    color: var(--secondary-color);
    padding: 18px 20px; /* More vertical padding */
    display: block;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem; /* Larger text for mobile menu */
    letter-spacing: 1px;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links li a:hover, .nav-links li a.active {
    color: var(--accent-color);
    background-color: rgba(212, 175, 55, 0.08); /* Subtle accent hover */
    border-bottom-color: var(--border-color);
  }

  .hero { padding: 100px 0 80px; }
  .card-grid, .info-grid, .review-grid { grid-template-columns: 1fr; /* Stack cards */ }
  .service-card img, .swiper-slide img { height: 300px; /* Adjust image height for mobile */ }
  .swiper-slide img { height: 450px; } /* Gallery height */
  .productSwiper .swiper-slide img { max-height: 400px; } /* Product slider height */


  .sticky-book-btn {
     /* display: none; */ /* Optionally hide on smallest screens if too intrusive */
     /* Or make full width */
     width: calc(100% - 40px);
     left: 20px;
     right: 20px;
     bottom: 20px;
     text-align: center;
     padding: 12px 20px;
     font-size: 1rem;
  }

  .product-display-wrapper {
      flex-direction: column;
      padding: 25px;
      gap: 30px;
  }
  .product-image-container,
  .product-text-content {
      flex-basis: 100%;
      max-width: 100%;
  }
   .product-text-content h3 {
      font-size: 1.6rem; /* Adjust heading size */
   }
}

/* Mobile Small */
@media (max-width: 480px) {
  body { font-size: 0.98rem; line-height: 1.7; }
  .container { width: 94%; }
  .hero { padding: 80px 0 60px; }
  .subtext { font-size: 1.2rem; }
  h1 { font-size: clamp(2rem, 7vw, 2.4rem); } /* Adjust clamp */
  h2 { font-size: clamp(1.6rem, 6vw, 2rem); margin-bottom: 2.5rem; }
  h3 { font-size: clamp(1.2rem, 5vw, 1.4rem); }

  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 0.95rem; }
  .toggle-btn { padding: 10px 20px; font-size: 0.9rem; }
  .service-card img, .swiper-slide img { height: 250px; } /* Adjust image height */
  .swiper-slide img { height: 350px; } /* Gallery height */
   .productSwiper .swiper-slide img { max-height: 300px; } /* Product slider height */

  .service-info, .why-card, .info-card, .review-card { padding: 25px 20px; } /* Adjust padding */
   .review-text { font-size: 1rem; }
   .review-author { font-size: 0.95rem; }
   .review-text::before { font-size: 2.5em; top: 0.15em; }

  .footer { padding: 40px 15px; font-size: 0.9rem; }
  .sticky-book-btn { /* Ensure it's visible and usable */
    padding: 10px 18px;
    font-size: 0.9rem;
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }

  .product-display-wrapper { padding: 20px; }
  .product-text-content h3 { font-size: 1.5rem; }
  .product-text-content p, .product-text-content li { font-size: 1rem; }
}