body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  padding: 120px 20px 80px;
  text-align: center;
  overflow: hidden;
 margin-top: -20px; /* Optional if gap exists */
  padding-top: 100px; /* Gives space for blending */
  background: linear-gradient(to bottom, rgba(13,13,13,0.8), #0d0d0d); /* subtle top fade */
    position: relative;
  background-color: #0d0d0d;
  padding-bottom: 60px; /* wave sits on this */
}.hero-wave svg path {
  fill: #111111; /* match this to next section bg */
}.next-section {
  background: #111111;
  margin-top: -10px; /* optional for seamless overlap */
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: white;
      text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 20px auto 40px;
  line-height: 1.6;
}

.hero-buttons .btn {
  padding: 12px 24px;
  margin: 5px;
  border-radius: 30px;
  font-weight: 500;
}

.btn.gold {
  background: #e0b04e;
  color: #000;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
  overflow: hidden;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-wave path {
  animation: waveColorShift 8s ease-in-out infinite alternate;
}

@keyframes waveColorShift {
  0% {
    fill: #0d0d0d;
  }
  100% {
    fill: #1a1a1a;
  }
}

.btn {
  padding: 12px 24px;
  border: 1px solid #D6A85F;
  margin: 0 10px;
  font-size: 14px;
  background: transparent;
  color: #fff;
  transition: all 0.3s ease;
}

.btn.gold {
  background: #D6A85F;
  color: #000;
}

.btn:hover {
  opacity: 0.85;
}
.hero-buttons .btn {
  box-shadow: 0 4px 12px rgba(214, 168, 95, 0.3);
  transition: all 0.3s ease;
}
.hero-buttons {
  display: flex;
  gap: 1rem; /* space between buttons */
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 168, 95, 0.45);
}
.hero-background-shape {
  position: absolute;
  top: -50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(214,168,95,0.15), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}
.section-title {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 10px;
  color: #D6A85F;
  letter-spacing: 2px;
  font-size: 20px;
}

.section-subtext {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 30px;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&display=swap');

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
  text-align: center;
     font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 1px;
}

.client-logo {
  font-family: 'Playfair Display', serif; /* or whatever font you chose */
  font-size: 18px;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;

}

.services-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-box,
.why-box {
  background: #121212;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-box:hover,
.why-box:hover {
  transform: translateY(-5px);
}

.service-box img,
.why-box img {
  margin-bottom: 1rem;
  height: 50px;
  width: 50px;
}

.service-box h3,
.why-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #e0b04e;
}

.service-box p,
.why-box p {
  font-size: 0.95rem;
  color: #ccc;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-header {
  background-color: #0a0a0a;
  padding: 20px 0;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
      animation: fadeInUp 0.8s ease-out both;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  height: 160px;
    Width: 160px;
}
.logo {
  font-size: 26px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Poppins', sans-serif;
}.logo img {
  max-height: 80px; /* Adjust the value as needed */
  height: auto;
  width: auto;
}
    /* Strongly-targeted logo fix */
    .main-header .custom-logo img {
      height: auto !important;
      width: 35% !important;
      display: block;
    }

}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #d4af37;
}

.testimonials {
  background-color: #0a0a0a;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.section-heading,
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}

.section-subtext {
  text-align: center;
  margin-bottom: 2rem;
  color: #aaa;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: #f1f1f1;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.testimonial-author {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #aaa;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}

.social-icons img:hover {
  filter: brightness(1) sepia(1) hue-rotate(10deg) saturate(2);
}


.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.service-card {
  text-align: center;
  padding: 1.5rem;
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
     color: #e0b04e;
  fill: #e0b04e;
    opacity: 0.8;
}

.service-icon img,
.service-icon svg {
  color: #e0b04e !important;
  fill: #e0b04e !important;
  opacity: 1 !important;
  filter: none !important;

}



/* Final SCROLL REVEAL STYLES */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}/* OUR WORK SECTION */
.our-work {
  background-color: #0d0d0d;
  padding: 80px 20px;
  text-align: center;
}

.our-work h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #D6A85F;
  margin-bottom: 20px;
}

.our-work p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.our-work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.our-work-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-work-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8); /* translucent */
  backdrop-filter: blur(12px); /* glass effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #d4af37; /* luxury gold */
  letter-spacing: 1px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #d4af37;
}

.main-nav a:hover::after {
  width: 100%;
}.work-section {
  background: #0a0a0a;
  padding: 80px 20px;
}
/* Global Background and Font Color */
body, html {
  background-color: #0e0e0e !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
}
/* Force form field text to be white */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  color: #ffffff !important;
  background-color: #111111 !important;
  border: 1px solid #d6a85f !important;
}

/* Placeholder styling */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #bbbbbb !important;
}

/* Submit button styling */
.wpcf7-form input[type="submit"] {
  background-color: #d6a85f !important;
  color: #0e0e0e !important;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #e2b96f !important;
}.contact-section {
  display: block;
  min-height: 100vh;
  padding: 4rem 1rem;
  background-color: #0e0e0e;
  z-index: 10;
  position: relative;
}

.contact-form-wrapper {
  display: block;
  z-index: 11;
}.scroll-reveal {
  opacity: 1 !important;
  transform: none !important;
}.contact-section.scroll-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}.contact-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-section .section-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #d6a85f;
  margin-bottom: 2rem;
}.contact-form-wrapper {
  box-shadow: 0 0 30px rgba(214, 168, 95, 0.15);
}

.contact-section {
  padding: 6rem 2rem;
  background: #0e0e0e;
  position: relative;
}.gold-divider {
  width: 60px;
  height: 3px;
  background-color: #d6a85f;
  margin: 1.5rem auto 2.5rem;
  border-radius: 2px;
}.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #111;
  border: 1px solid rgba(214, 168, 95, 0.3); /* soft gold tint */
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(214, 168, 95, 0.05); /* subtle luxury glow */
  transition: box-shadow 0.3s ease;
}
.contact-form-wrapper:hover {
  box-shadow: 0 0 40px rgba(214, 168, 95, 0.15);
}.wpcf7-form input,
.wpcf7-form textarea {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 1rem;
  transition: all 0.3s ease;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #d6a85f;
  box-shadow: 0 0 8px rgba(214, 168, 95, 0.3);
}.wpcf7-form input[type="submit"] {
  display: block;
  margin: 2rem auto 0 auto; /* centers it and adds spacing */
  background: linear-gradient(145deg, #d6a85f, #e2b96f);
  color: #0e0e0e;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(214, 168, 95, 0.3);
}.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-form-column,
.contact-info-column {
  background: #111;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #d6a85f;
}

.contact-info-column .info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #d6a85f;
}

.contact-info-column a {
  color: #fff;
  text-decoration: underline;
}

.gold-divider {
  height: 2px;
  background: linear-gradient(to right, #d6a85f, transparent);
  margin: 2rem 0;
  border: none;
}


@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}.hero {
  position: relative;
  background: linear-gradient(to bottom, rgba(13,13,13,0.85), #0d0d0d);
  padding-top: 100px;
  padding-bottom: 80px;
  text-align: center;
  overflow: hidden;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 600;
  color: white;
  transition: opacity 0.8s ease-in-out;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-title.fade-out {
  opacity: 0;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  margin-bottom: 40px;
  line-height: 1.6;
}.why-box,
.service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
  margin: 20px auto;
}

.why-box img,
.service-box img {
  width: 60px; /* Adjust based on your design */
  height: auto;
  margin-bottom: 10px;

}.custom-contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px; /* adds spacing between each field */
}

.custom-contact-form label {
  font-weight: 500;
  margin-bottom: 5px;
}

.custom-contact-form input,
.custom-contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.custom-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.custom-contact-form button {
  background-color: #e0b04e;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-contact-form button:hover {
  background-color: #c79a3c;
}.shop-category-boxes {
  padding: 40px 20px;
  background: #fafafa;
  text-align: center;
}

.shop-box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-box {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  text-decoration: none;
  color: #111;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.shop-box:hover {
  border-color: #000;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.shop-box h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.shop-box p {
  font-size: 0.95rem;
  color: #555;
}
.our-workShop p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.our-work-galleryShop {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
  padding: 0 20px;
}

.our-work-galleryshop img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-work-galleryshop img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.custom-product-container {
  background-color: #111;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 900px;
  margin: 40px auto;
  gap: 30px;
}

.custom-product-image {
  flex: 0 0 35%; /* fixed 35% width */
  text-align: left;
}

.custom-product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  display: block;
  margin-left: 0;
}

.custom-product-info {
  flex: 1; /* take remaining space */
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 10px;
}

.custom-product-title {
  margin: 0;
  font-size: 2rem;
}

.custom-product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e0b04e;
}

.custom-product-short-description {
  font-size: 1rem;
  line-height: 1.4;
}

.custom-product-add-to-cart {
  margin-top: auto;
}

.custom-product-full-description {
  max-width: 900px;
  margin: 20px auto 60px;
  background-color: #111;
  color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.custom-product-full-description h3 {
  margin-top: 0;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.custom-product-description {
  font-size: 1rem;
  line-height: 1.6;
}
.single_add_to_cart_button {
  background: linear-gradient(145deg, #e0b04e, #d19b3d);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(224, 176, 78, 0.3);
  border: none;
  cursor: pointer;
}

.single_add_to_cart_button:hover {
  /* Optional: slightly darker on hover */
  background: linear-gradient(145deg, #d19b3d, #b37f24);
  box-shadow: 0 6px 12px rgba(209, 155, 61, 0.5);
}input.input-text.qty.text[type="number"] {
  width: 60px; /* adjust width */
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #d19b3d;
  border-radius: 30px;
  text-align: center;
  color: #000;
  background-color: #fff;
  box-shadow: inset 0 2px 4px rgba(224, 176, 78, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -moz-appearance: textfield; /* removes spinner in Firefox */
  appearance: textfield;
  -webkit-appearance: none; /* removes spinner in Chrome/Safari */
}

input.input-text.qty.text[type="number"]:focus {
  border-color: #e0b04e;
  box-shadow: 0 0 6px rgba(224, 176, 78, 0.6);
  outline: none;
}
.custom-service-type {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
}

.highlight-subscription {
  color: #1e87f0;
  font-weight: bold;
}

.highlight-oneoff {
  color: #00b300;
  font-weight: bold;
}

.highlight-both {
  color: #ffa500;
  font-weight: bold;
}

.highlight-unknown {
  color: #999;
  font-style: italic;
}.service-price {
  color: #e0b04e;
  font-weight: bold; /* Optional to make it stand out */
}
.custom-product-price,
.service-price {
  color: #e0b04e;
  font-weight: bold;
}

/* Custom cart table styles with gold borders */
.woocommerce-cart-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 15px;
    font-family: Arial, sans-serif;
}

.woocommerce-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    border: 2px solid #d4af37; /* gold border around the whole table */
    border-radius: 6px;
    overflow: hidden;
}

.woocommerce-cart-table thead {
    border-bottom: 2px solid #d4af37; /* gold line under header */
}

.woocommerce-cart-table th,
.woocommerce-cart-table td {
    padding: 15px;
    vertical-align: middle;
    font-size: 14px;
    color: #444;
    border-right: 1px solid #d4af37; /* gold vertical borders between columns */
}

.woocommerce-cart-table th:last-child,
.woocommerce-cart-table td:last-child {
    border-right: none; /* no border on last column */
}

.woocommerce-cart-table th {
    font-weight: 600;
    font-size: 15px;
    color: #3a2e10;
    background-color: #fffbea;
    text-align: left;
}

.woocommerce-cart-table tbody tr {
    border-bottom: 1px solid #d4af37; /* subtle gold row separators */
}

.product-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.product-info .product-details {
    flex-grow: 1;
}

.product-info .product-image {
    width: 80px;
    flex-shrink: 0;
}

.product-info .product-image img {
    max-width: 80px;
    height: auto;
    display: block;
    border-radius: 4px;
    border: 1.5px solid #d4af37; /* gold border around images */
}

.service-type {
    font-size: 13px;
    color: #7a6c33;
    margin-top: 4px;
    font-style: italic;
}

.product-price,
.product-remove {
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
}

.product-remove a {
    color: #d4af37; /* gold color for remove link */
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.product-remove a:hover {
    color: #a68020;
}

.actions {
    padding: 20px 0;
    text-align: right;
}

button.button {
    background-color: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: white;
}

button.button:hover {
    background-color: #d4af37;
    color: #1e1e1e;
}

.coupon {
    margin-bottom: 20px;
}

.coupon label {
    margin-right: 10px;
    font-weight: 600;
    color: #3a2e10;
}

.coupon input[type="text"] {
    padding: 7px 10px;
    border: 2px solid #d4af37;
    border-radius: 4px;
    width: 220px;
    margin-right: 10px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.coupon input[type="text"]:focus {
    border-color: #a68020;
    outline: none;
}.cart_totals {
  border: 2px solid #e0b04e;
  padding: 25px;
  border-radius: 8px;
  background-color: #fffbea;
  max-width: 400px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
  color: #8c6c1a;
}

.cart_totals h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #6b5410;
  font-size: 1.5em;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.cart_totals table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
  padding: 12px 15px;
  text-align: left;
  vertical-align: middle;
}

.cart_totals table.shop_table th {
  font-weight: 600;
  color: #8c6c1a;
  width: 50%;
  border-bottom: none;
}

.cart_totals table.shop_table td {
  font-weight: 700;
  color: #e0b04e;
  text-align: right;
  border-bottom: none;
  font-size: 1.1em;
}

.cart_totals table.shop_table tr.cart-subtotal th,
.cart_totals table.shop_table tr.cart-subtotal td {
  font-weight: 600;
  font-size: 1.05em;
  border-bottom: 1px solid #e0b04e;
  padding-bottom: 15px;
}

.cart_totals table.shop_table tr.order-total th,
.cart_totals table.shop_table tr.order-total td {
  font-size: 1.3em;
  color: #d9a700;
  border-top: 2px solid #e0b04e;
  padding-top: 15px;
}

.wc-proceed-to-checkout {
  margin-top: 25px;
  text-align: center;
}

.wc-proceed-to-checkout a.checkout-button {
  background-color: #e0b04e;
  color: #3a2a00;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #c79c3f;
  color: #2a1f00;
}/* Container for checkout form */
.woocommerce-checkout {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border: 2px solid #e0b04e; /* gold border */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(224, 176, 78, 0.4);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
}

/* Headings */
.woocommerce-checkout h2, 
.woocommerce-checkout h3 {
  color: #b8860b; /* dark gold */
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid #e0b04e;
  padding-bottom: 8px;
}

/* Form fields styling */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  border: 1.5px solid #e0b04e;
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: #b8860b;
  outline: none;
  box-shadow: 0 0 6px rgba(184, 134, 11, 0.6);
}

/* Labels */
.woocommerce-checkout label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #8b6d0a;
}

/* Place order button */
.woocommerce-checkout #place_order {
  background-color: #e0b04e;
  color: #fff;
  font-weight: 700;
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.woocommerce-checkout #place_order:hover {
  background-color: #b8860b;
}

/* Order review section styling */
.woocommerce-checkout #order_review {
  border: 2px solid #e0b04e;
  padding: 20px;
  border-radius: 10px;
  background: #fffbea;
  margin-bottom: 30px;
}

/* Table inside order review */
.woocommerce-checkout #order_review table.shop_table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
  border-bottom: 1px solid #e0b04e;
  padding: 12px 10px;
  text-align: left;
  vertical-align: middle;
  font-size: 16px;
  color: black;
}

/* Highlight totals row */
.woocommerce-checkout #order_review table.shop_table tr.order-total th,
.woocommerce-checkout #order_review table.shop_table tr.order-total td {
  font-weight: 700;
  font-size: 18px;
  border-top: 2px solid #b8860b;
  color: #8b6d0a;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .woocommerce-checkout {
    padding: 20px 15px;
  }

  .woocommerce-checkout #order_review table.shop_table th,
  .woocommerce-checkout #order_review table.shop_table td {
    font-size: 14px;
  }

  .woocommerce-checkout #place_order {
    width: 100%;
    padding: 14px 0;
  }
}.variation-ServiceType dt,
.variation-ServiceType dd {
  color: #b8860b; /* Dark gold, matches your site’s theme */
  font-weight: 600;
  margin: 0 0 4px 0;
}

.variation-ServiceType dd p {
  margin: 0;
  color: #555; /* dark gray for better readability */
}
#service_type {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 10px 15px;
  font-size: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  border: 2px solid #e0b04e; /* Gold border */
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(224, 176, 78, 0.3);
  margin: 0.5rem 0 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

#service_type:hover,
#service_type:focus {
  border-color: #b2871d; /* Darker gold on hover/focus */
  box-shadow: 0 0 8px rgba(178, 135, 29, 0.7);
  outline: none;
}
/* Desktop Styles – Improved Layout */
.my-account-page {
    padding: 80px 20px;
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
}

.account-container {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Form container */
.woocommerce form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual form rows */
.woocommerce form .form-row {
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Inputs */
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="password"] {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fafafa;
    transition: border-color 0.2s;
}

.woocommerce input:focus {
    border-color: #1e73be;
    outline: none;
}

/* Buttons */
.woocommerce button.button {
    background-color: #1e73be;
    color: white;
    padding: 14px 0;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.woocommerce button.button:hover {
    background-color: #155a95;
}

/* Paragraphs like "Hello admin..." */
.woocommerce-MyAccount-content > p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

/* Optional: Tidy up the nav if you're using sidebar navigation */
.woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
}