/*=============================================================================
  GLOBAL STYLES
  (Reset, Base, Typography, Forms, Buttons, Header/Nav, Product-Card, Footer)
=============================================================================*/

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1f1f1f;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section-gray {
  background-color: #fafafa;
  padding: 44px 0; /* adjust vertical spacing as needed */
}

.container {
  padding-left: 0;
  padding-right: 0;
}

/* Keep this for weight-only, across the whole site */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* DOMAIN-PAGE HEADINGS OVERRIDE */
.domain-page h1,
.domain-page h2,
.domain-page h3,
.domain-page h4,
.domain-page h5,
.domain-page h6 {
  text-align: left;
  color: #555555;  /* soft grey */
}

/* GLOBAL TEXT HIGHLIGHT */
.highlight {
  color: #f58220;  /* orange accent */
}


p {
  margin-bottom: 16px;
}

/* Form Elements */
button,
input,
select,
textarea {
  font-family: 'Poppins', sans-serif;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: #f58220;
  color: #ffffff;
  border: 2px solid #f58220;
}

.btn-primary:hover {
  background-color: #e06f0f;
  border-color: #e06f0f;
}

.btn-secondary {
  background-color: #262626;
  color: #ffffff;
  border: 2px solid #262626;
}

.btn-secondary:hover {
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}

.btn-outline {
  background-color: transparent;
  color: #f58220;
  border: 2px solid #f58220;
  margin-right: 8px;
  margin-bottom: 8px;
}

.btn-outline:hover {
  background-color: #f58220;
  color: #ffffff;
}

/*----------------------------------------------------
  BUTTONS  universal large buttons, links & hover
----------------------------------------------------*/
.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 48px;
  font-size: 18px;
  line-height: 1;
  border-radius: 4px;
  cursor: pointer;
}

/* orange primary button */
.btn-primary.btn-large {
  background: linear-gradient(90deg, #F58220 0%, #E06F0F 100%);
  border: none;
  color: #fff;
}
.btn-primary.btn-large:hover {
  background-color: #e06f0f;
  border-color:     #e06f0f;
}

/* blue live website link */
.btn-live-website.btn-large {
  background-color: #007bff;
  border: 2px solid #007bff;
  color: #fff;
}


/* Header / Navigation */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

/* make header container span full 1200px grid with no side padding */
.site-header .container {
  padding-left: 0;
  padding-right: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 48px;
}

.main-nav ul {
  display: flex;
  gap: 48px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #1f1f1f;
  line-height: 40px;
  transition: color 0.2s ease;
}

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

/* Search */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 240px;
  height: 40px;
  padding: 0 40px 0 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  border-color: #f58220;
}

.search-btn {
  position: absolute;
  right: 12px;
  height: 40px;
  width: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.search-btn .material-icons {
  font-size: 20px;
  color: #555555;
}

.search-btn:hover .material-icons {
  color: #f58220;
}

/* Reusable Product Card */
.product-card {
  background-color: #ffffff;
  border-radius: 16px;
  width: 280px;
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.2s ease;

  /* always-on shadow */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  /* stronger shadow on hover */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}


/* make the product image fill the top of the card */
.product-card {
  overflow: hidden;
  border-radius: 16px;
}

.product-card .card-logo {
  display: block;
  width: calc(100% + 48px);
  margin: -24px -24px 16px;
  height: 180px;
  object-fit: cover;
}

.product-card .domain-name {
  font-size: 16px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 16px;
}

.product-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
}

.product-card .price {
  font-size: 20px;
  font-weight: 600;
  color: #1f1f1f;
}

.product-card .monthly-group {
  display: flex;
  align-items: center;
}

.product-card .monthly-text {
  font-size: 14px;
  color: #555555;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  background-color: #1a1a1a;
  color: #cccccc;
  padding: 64px 0 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  border-bottom: 1px solid #383838;
  padding-bottom: 48px;
}

.footer-about {
  flex: 2;
  min-width: 280px;
}

.footer-logo {
  max-height: 40px;
  margin-bottom: 16px;
}

.footer-about p {
  line-height: 1.6;
  color: #cccccc;
}

.footer-about a {
  color: #f58220;
  font-weight: 500;
}

.footer-links,
.footer-contact {
  flex: 1;
  min-width: 220px;
}

.footer-links h5,
.footer-contact h5 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #cccccc;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-contact ul li a {
  color: #cccccc;
  transition: color 0.2s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
  color: #f58220;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-list .material-icons {
  vertical-align: middle;
  margin-right: 4px;
  font-size: 17px;
  color: #cccccc;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: #777777;
}


/*=============================================================================
  INDEX-PAGE (index.html)
  (Hero, Featured Listings, How It Works, Accordion, Categories)
=============================================================================*/

.hero {
  padding-top: 64px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: url('images/banner-bg.png') no-repeat right bottom;
  background-size: 100% auto;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero-subheading {
  font-size: 16px;
  color: #555555;
  margin-bottom: 8px;
}

.hero-heading {
  font-size: 40px;
  margin-bottom: 8px;
}

.hero-description {
  font-size: 16px;
  color: #555555;
  margin-bottom: 32px;
}

.hero-buttons .btn {
  margin-right: 16px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease;
}

.hero-buttons .btn:hover {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-illustration img {
  max-width: 100%;
  height: auto;
}


.featured-listings-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-header {
  text-align: center;
  margin-bottom: 48px;
}

.featured-header .featured-title {
  font-size: 32px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.featured-header .featured-subtext {
  font-size: 16px;
  color: #555555;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.5;
}

.featured-listings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.info-section {
  background-color: #ffffff;
  padding: 32px 0;
}

.info-inner {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.how-it-works {
  flex: 1;
  min-width: 280px;
}

.how-it-works .info-title {
  font-size: 32px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.how-it-works .info-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 32px;
  line-height: 1.5;
}

.steps-list {
  counter-reset: step-counter;
  margin: 0;
  padding: 0;
}

.steps-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
}

.steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f58220;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.why-choose {
  flex: 1;
  min-width: 280px;
}

.why-choose .info-title {
  font-size: 32px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s ease;
}

.accordion-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  width: 100%;
  background-color: #fafafa;
  border: none;
  padding: 16px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.accordion-button:hover {
  background-color: #f0f0f0;
}

.accordion-button:focus {
  outline: 2px solid #f58220;
  outline-offset: 2px;
}

.accordion-icon {
  position: absolute;
  right: 24px;
  font-size: 20px;
  transition: transform 0.2s ease;
  color: #555555;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: #ffffff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: #555555;
}

.accordion-content p {
  margin: 16px 0;
  line-height: 1.5;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 16px 24px;
}

.categories-section {
  background-color: #ffffff;
  padding-top: 10px;
  padding-bottom: 52px;
  text-align: center;
}

.categories-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

.categories-buttons {
  display: inline-block;
}

.categories-buttons .btn-outline {
  display: inline-block;
  margin: 0 16px 16px 0;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 24px;
  border: 2px solid #f58220;
  color: #f58220;
  border-radius: 4px;
  background-color: transparent;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.categories-buttons .btn-outline:hover {
  background-color: #f58220;
  color: #ffffff;
}

/*=============================================================================
  DOMAINS-PAGE OVERRIDES
=============================================================================*/


/* Content container (filters + grid) is full-width */
.domains-page > .container:nth-of-type(2) {
  padding-left: 0;
  padding-right: 0;
}


/* tighten up space around the page title */
.domains-page .page-title {
  margin: 0 0 16px;
}

.domains-page .domains-inner {
  display: flex;
  gap: 48px;
  padding-left: 12px;
  padding-right: 12px;
}

/* hide the removed Filters heading */
.filters > h4 {
  display: none;
}

/* filters sidebar */
.filters {
  flex: 0 0 280px;
  background-color: #f1f1f1;
  padding: 24px;
  border-radius: 8px;
}

/* filter groups */
.filter-group {
  margin-bottom: 32px;
}
.filter-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

/* range inputs */
.range-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.range-inputs input {
  width: 48%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
.range-slider {
  width: 100%;
}

.slider-container {
  --a: 0;
  --b: 100;
  position: relative;
  height: 40px;        /* room for 18px knobs + padding */
  margin-top: 8px;
  pointer-events: none; /* allow only the knobs to capture events */
}
/* full-length grey rail */
.slider-container::before {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 1;
}
/* orange fill between knobs */
.slider-container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(var(--a) * 1%);
  right: calc((100 - var(--b)) * 1%);
  height: 4px;
  background: #f58220;
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 2;
}
/* overlay the two inputs so their knobs sit above the rail */
.slider-container input[type="range"] {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  background: transparent;

  /* centre the track & thumbs vertically */
  transform: translateY(-50%);
}

/* hide the native track on each */
.slider-container input[type="range"]::-webkit-slider-runnable-track,
.slider-container input[type="range"]::-moz-range-track {
  height: 0;
  background: transparent;
  border: none;
}
/* style the knobs and make them sit flush on top of the rail */
.slider-container input[type="range"]::-webkit-slider-thumb,
.slider-container input[type="range"]::-moz-range-thumb {
  pointer-events: all;  /* re-enable events on knobs */
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #f58220;
  cursor: pointer;
  margin-top: 0;       /* knob bottom edge sits at rail top */
}
/* ensure left/thumb ordering when they cross */
.slider-container input.thumb--left  { z-index: 4; }
.slider-container input.thumb--right { z-index: 3; }

/* bump the focused/active thumb above its sibling */
.slider-container input[type="range"]::-webkit-slider-thumb:active,
.slider-container input[type="range"]::-webkit-slider-thumb:hover,
.slider-container input[type="range"]::-moz-range-thumb:active,
.slider-container input[type="range"]::-moz-range-thumb:hover {
  z-index: 5;
}

/* listing + sort bar */
.listing-grid {
  flex: 1;
}
.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.results-count {
  font-size: 14px;
  color: #1f1f1f;
}
.sort-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-label {
  font-size: 14px;
  font-weight: 500;
}
.sort-wrapper {
  position: relative;
  display: inline-block;
}
.sort-select {
  height: 40px;
  padding: 0 40px 0 16px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  appearance: none;
  background-color: #ffffff;
  cursor: pointer;
}
.sort-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #555555;
  pointer-events: none;
}

/* grid of cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.page-link {
  display: inline-block;
  padding: 8px 12px;
  font-size: 14px;
  color: #333333;
  border: 1px solid #dddddd;
  border-radius: 4px;
  text-decoration: none;
}
.page-link.active {
  background-color: #f58220;
  color: #ffffff;
  border-color: #f58220;
}

/* responsive tweaks */
@media (max-width: 1024px) {
  .container.domains-inner {
    flex-direction: column;
  }
  .filters {
    width: 100%;
  }
}

/*=============================================================================
  DOMAIN DETAIL PAGE (domain.html)
=============================================================================*/

/* match domains.html page-title spacing */
.domain-page .page-title {
  margin: 0 0 16px;
}

/* two-column flex container */
.domain-page .domain-detail-inner {
  display: flex;
  gap: 2%;               /* 10% of container width = ~120px at max */
  margin-bottom: 6px;
}

/* each half becomes its own vertical stack */
.domain-page .domain-detail-inner .left-column,
.domain-page .domain-detail-inner .right-column {
  display: flex;
  flex-direction: column;
  gap: 16px;              /* space between carousel ? features & panel ? protection box */
}

/* fixed widths to match your design: 40% / 50% */
.domain-page .domain-detail-inner .left-column {
  width: 46%;
}

.domain-page .domain-detail-inner .right-column {
  width: 52%;
}

/* pull the bottom margin off the features so it hugs the carousel */
.domain-page .key-features {
  margin-bottom: 0;
}

/* IMAGE CAROUSEL (unchanged) */
.domain-page .image-carousel {
  width: 100%;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  background-color: #ffffff;
}
.domain-page .image-carousel img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.domain-page .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}
.domain-page .carousel-dots .dot {
  width: 8px;
  height: 8px;
  background: #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
}
.domain-page .carousel-dots .dot.active {
  background: #333333;
}

/* PURCHASE PANEL (unchanged) */
.domain-page .purchase-panel {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 24px;
  background-color: #ffffff;
}
.domain-page .purchase-panel h2 {
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.domain-page .badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  padding: 2px 8px;
  background: #e6f4ea;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
}
.domain-page .badge-verified .material-icons {
  font-size: 16px;
}

/* push the Verified badge to the far right of the H2 */
.domain-page .purchase-panel h2 {
  display: flex;
  align-items: center;
}

.domain-page .purchase-panel h2 .badge-verified {
  margin-left: auto;
}

.domain-page .purchase-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.domain-page .purchase-form .option {
  position: relative;
  background: #f4f5f8;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.domain-page .purchase-form .option:hover {
  background: #ececec;
}
.domain-page .purchase-form .option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.domain-page .purchase-form .option-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 16px;
}
.domain-page .purchase-form .option-price {
  font-weight: 600;
}
.domain-page .purchase-form .option input:checked + .option-inner {
  background: #e9f5ff;
  border: 1px solid #3c9ee5;
}
.domain-page .purchase-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.domain-page .purchase-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
}

.domain-page .protection-program {
  margin-top:    6px;
  margin-bottom: 6px;
  padding-top:    16px;
  padding-bottom: 16px;
  padding-left:   16px;
  padding-right:  16px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.domain-page .protection-program .program-title {
  font-weight: 600;
  margin-top:    6px;
  margin-bottom: 6px;
  font-size:     14px;
}

.domain-page .protection-program p {
  margin-bottom: 12px;
}

.domain-page .protection-program p:last-child {
  margin-bottom: 0;
}

.domain-page .related-domains .section-title {
  margin-bottom: 16px;
  
}

/*-----------------------------------------------
  TAG BUBBLES in the Filters sidebar (light bg + border + hover)
-----------------------------------------------*/
.filter-group .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.filter-group .tag {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  color: #1f1f1f;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-group .tag:hover {
  background-color: #fef5f0;
  border-color: #f58220;
  color: #f58220;
}


/*
  Purchase Form Button Row (global)
*/
.purchase-form .button-row {
  display: flex;
  gap: 12px;
}
.purchase-form .button-row .btn-large {
  flex: 1;
  text-align: center;
  cursor: pointer;
}

/* Orange Proceed to Payment */
.purchase-form .btn-primary.btn-large {
  background: linear-gradient(90deg, #F58220 0%, #E06F0F 100%);
  border: none;
  color: #fff;
}



/*-----------------------------------------------
  FEATURE BOX: stretch, margin above, icons above text
-----------------------------------------------*/
.domain-page .domain-detail-inner .left-column .key-features {
  flex: 1;
  padding-top: 36px;    /* space above the three boxes */
}

.domain-page .key-features {
  display: flex;
  gap: 24px;
}

.domain-page .key-features .feature-item {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.domain-page .key-features .feature-item .material-icons {
  font-size: 36px;
  color: #f58220;
  margin-bottom: 12px;
}

.domain-page .key-features .feature-item p {
  margin: 0;
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
}


/*-----------------------------------------------
  PURCHASE FEATURES: ticks + payment SVG
-----------------------------------------------*/
.domain-page .purchase-panel .purchase-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.domain-page .purchase-panel .purchase-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #333333;
}

/* payment methods SVG */
.domain-page .purchase-panel .payment-icons {
  text-align: center;
  margin-top: 12px;
}

.domain-page .purchase-panel .payment-icons img {
  max-width: 100%;
  height: auto;
}

.domain-page .purchase-panel .purchase-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.domain-page .purchase-panel .purchase-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.domain-page .purchase-panel .purchase-features .feature-icon {
  display: inline-block;
  font-size: 16px;
  color: #f58220;
  /* if you want perfect vertical centering: */
  line-height: 1;
}

/*-----------------------------------------------
  DISCOUNTED PRICE: diagonal strike + new price
-----------------------------------------------*/

/* ensure the label still lays out nicely */
.domain-page .purchase-panel .purchase-form .option.discount .option-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* wrapper for both prices */
.domain-page .option-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.domain-page .original-price {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #888888;
  text-decoration: none;
  margin-right: 8px;
}

.domain-page .original-price::after {
  content: '';
  position: absolute;
  color: #333333;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: rotate(-8deg);
  transform-origin: center;
}

/* IMAGE CAROUSEL WITH THUMBNAILS */
.domain-page .image-carousel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.domain-page #mainImage {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.domain-page .thumbnails {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.domain-page .thumbnails .thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.domain-page .thumbnails .thumb.active {
  opacity: 1;
  border-color: #f58220;
}

/*-----------------------------------------------
  WHATS INCLUDED  section and cards
  Uses global .section-title for the heading
-----------------------------------------------*/
.included-section {
  padding: 60px 0;
}

.included-section .section-title {
  margin-bottom: 16px;
}

.included-section .included-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.included-section .included-item {
  flex: 1;
  min-width: 280px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* make the icon a block so it sits above the title */
.included-section .included-item .material-icons {
  display: block;
  font-size: 36px;
  color: #f58220;
  margin: 0 auto 16px;
}

.included-section .included-item h3 {
  font-size: 18px;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.included-section .included-item h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #f58220;
  margin: 8px auto 0;
}

.included-section .included-item p {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  margin-top: 16px;
}

/*=============================================================================
  CONTACT PAGE OVERRIDES
=============================================================================*/

.contact-detail-inner {
  display: flex;
  column-gap: 10%;       /* 10% gutter between columns */
  margin-bottom: 64px;
}

.contact-info {
  width: 30%;            /* left side: 30% */
}

.contact-form-wrapper {
  width: 60%;            /* right side: 60% */
}

.contact-info h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1f1f1f;
}

.contact-list-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 12px;
  color: #333333;
}

.contact-list-info .material-icons {
  font-size: 20px;
  color: #f58220;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #555555;
}

.contact-form input,
.contact-form textarea {
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.contact-form .btn-large {
  margin-top: 8px;
  width: fit-content;
}
