/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body setup */
body {
  font-family: 'Arial', sans-serif;
}

/* Header */
header {
  position: relative;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  z-index: 10;
  background-color: black; /* ← this line adds a black background */
}

.logo img {
  width: 30px;
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 5px;
}

nav ul li a:hover {
  color: #ff4500;
  border-bottom: 2px solid #ff4500;
}

nav ul li a.active {
  color: #00bfff;
  border-bottom: 2px solid #00bfff;
}

/* Highlighted menu option */
nav ul li:nth-child(2) a {
  color: #00ccff;
}


/*----------------------------------------------ECOMMERCE NAVBAR--------------------------------------*/
/* ------------------ Ecommerce Dropdown Navbar ------------------ */
.ecommerce-navbar {
  background: linear-gradient(135deg, #ff5100, #ff0000);
  padding: 15px 50px;
  font-family: Arial, sans-serif;
  z-index: 999;
  position: relative;  /* ✅ add this line */
}

.dropdown-menu {
  display: flex;
  list-style: none;
  justify-content: center;
}

.dropdown a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  display: block;
  transition: color 0.3s ease;
}

.dropdown:hover > a {
  background-color: white;
  color: #e60000;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* push it directly below the parent <li> */
  left: 0;
  background-color: #fff;
  padding: 20px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  z-index: 1000;
}

.dropdown-content li {
  list-style: none;
  margin: 0;
}
.dropdown-content li a {
  color: #111;
  font-size: 15px;
  padding: 12px 20px;         /* ⬅️ was 8px 10px */
  display: block;
  transition: background 0.2s ease;
  font-weight: 500;
  line-height: 1.8;           /* ⬅️ ensures vertical spacing */
  width: 100%;                /* ⬅️ ensures full hover area */
  box-sizing: border-box;     /* ⬅️ avoids overflow */
}

.dropdown-content li a:hover {
  background-color: #ffe5e5;
  color: #e60000;
  border-radius: 4px;
}


.dropdown.show .dropdown-content {
  display: block;
}

.dropdown {
  position: relative;
}


/* Hero Section */
.presentation-images-only {
  display: flex;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;     /* ✅ required for z-index */
  z-index: 1;              /* ✅ push it behind dropdown */
}

.presentation-img-left {
  flex: 3;
}

.presentation-img-right {
  flex: 2;
}

.presentation-img-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.presentation-img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.left-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.left-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.get-started-button-container {
  position: absolute;
  top: 500px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}


.get-started-button {
  background: black;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.get-started-button:hover {
  background: #ff3300;
  transform: translateY(-2px);
}

.get-started-button-container {
  text-align: center;
  margin-top: 20px;
}

/*--------------------------------------WHY FIREFIT---------------------------*/
.gradient-title {
  background: linear-gradient(90deg, orange, red, black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 48px;
  text-align: center;
}

.why-firefit {
  background: #f1f1f1;
  padding: 60px 0; /* reduced from 120px to 60px */
  font-size: 18px;
}

.why-firefit h2 {
  text-align: center;
  font-size: 48px;
  padding-bottom: 50px;
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* ⬅️ aligns top of text to image */
  gap: 60px;
  flex-wrap: wrap;
  padding: 0 40px;
}

.why-left {
  flex: 1.2;
  min-width: 400px;
}

.why-left h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

.why-left h3 span {
  font-size: 28px;
  font-weight: bold;
}

.why-left p {
	margin-top: 20px;
  font-size: 25px;
  line-height: 1.9;
}

.why-right {
  flex: 1;
  min-width: 280px;
}

.why-right img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* WHO FIRE FIT IS FOR */
.who-firefit {
  background: #eeeeee;
  text-align: center;
  padding: 60px 40px;
  min-height: 100vh;
}

.who-firefit h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.who-firefit p {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.firefit-subtitle {
  margin-bottom: 40px; /* or increase as needed */
}

.firefit-cards-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.firefit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  max-width: 1400px;
}

.firefit-card {
  width: 320px; /* was 380px */
  padding: 25px; /* was 30px */
  font-size: 16px; /* was 18px */
  border: 2px solid #ccc;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.firefit-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.firefit-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #111;
}

.firefit-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.firefit-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}



/*--------------------------------------BOOK NOW-------------------------------*/
.book-now-section {
  background: linear-gradient(to right, #ff5100, #ff0000, #000000);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.book-now-container {
  max-width: 800px;
  margin: 0 auto;
}

.book-now-section h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}

.book-now-section p {
  font-size: 20px;
  margin-bottom: 40px;
}

.book-now-btn {
  background-color: white;
  color: #ff3300;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  background-color: black;
  color: white;
}



/*------------------------------------FEATURED ITEMS-------------------------------*/

.featured-items {
  padding: 100px 40px;
  background-color: #ffffff;
  text-align: center;
}

.featured-items h2 {
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: bold;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}

.featured-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease;
}

.featured-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.featured-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.featured-card p {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.featured-card:hover {
  transform: translateY(-5px);
}


/*--------------------------------FOOTER --------------------------*/

.firefit-footer {
  background: linear-gradient(135deg, #ff5100, #ff0000, #000000);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.footer-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffcc99;
}

.footer-bottom {
  font-size: 14px;
  opacity: 0.7;
}

/*------------------------------------------------PRODUCT PAGE----------------------------------------*/
/* ----------- Product Page ----------- */
.product-section {
  padding: 80px 40px;
  background-color: #fff;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-images {
  flex: 1;
  min-width: 300px;
}

.product-images img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

#thumbnail-container {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#thumbnail-container img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

#thumbnail-container img:hover {
  border-color: red;
}

.product-details {
  flex: 1;
  min-width: 300px;
}

.product-details h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-price {
  font-size: 24px;
  color: #ff3300;
  font-weight: bold;
  margin-bottom: 20px;
}

.variant-section {
  margin-bottom: 20px;
}

.variant-section label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}

.variant-section select {
  padding: 10px 15px;
  font-size: 16px;
  margin-bottom: 20px;
  width: 100%;
}

.quantity-wrapper {
  margin-top: 20px;
  margin-bottom: 30px;
}

.quantity-wrapper label {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.quantity-wrapper input[type="number"] {
  width: 80px;
  padding: 8px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}


#color-select-wrapper,
#size-select-wrapper {
  margin-bottom: 20px;
}

.add-to-cart-btn {
  background-color: #ff3300;
  color: white;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 30px;
}

.add-to-cart-btn:hover {
  background-color: black;
}

.cart-feedback {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  color: green;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}

.cart-feedback.show {
  opacity: 1;
}

.cart-feedback.hidden {
  opacity: 0;
}


.cart-badge {
  position: absolute;
  top: -6px;     /* vertical tweak */
  right: -10px;  /* horizontal tweak */
  background-color: red;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  line-height: 1;
  z-index: 10;
}


#cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px; /* match other nav items */
  font-size: inherit;
  line-height: inherit;
}


.buy-now-btn {
  background-color: #00bfff;
  color: white;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 30px;
  margin-left: 10px;
}

.buy-now-btn:hover {
  background-color: #005f8f;
}

.product-description ul {
  list-style: disc inside;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.6;
}


/*-------------------------------------------FILTER FOR CATEGORIES--------------------------------*/
.gloves-filters {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  width: 220px;
  font-family: sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.gloves-filters h3 {
  margin-top: 0;
  font-size: 20px;
  color: #333;
}

.gloves-filters label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #444;
}

.gloves-filters select {
  width: 100%;
  padding: 8px 10px;
  margin-top: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  transition: border 0.2s ease;
}

.gloves-filters select:focus {
  border-color: #e63946;
  outline: none;
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}

.gloves-container {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  flex-wrap: wrap;
}

.gloves-products {
  flex: 1;
  min-width: 0;
}

.gloves-products .featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}


/*------------------------- CART PAGE ------------------------*/
.cart-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 40px;
  gap: 40px;
}

.cart-left,
.cart-right {
  flex: 1;
  min-width: 320px;
}

.cart-header,
.cart-item {
  display: grid;
  grid-template-columns: 0.6fr 0.2fr 0.2fr;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
}

.cart-header {
  display: grid;
  grid-template-columns: 0.6fr 0.2fr 0.2fr;
  align-items: center;
  font-weight: bold;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ccc;
}

.cart-item img {
  width: 80px;
  height: auto;
}

.cart-item .title {
  font-weight: bold;
}

.cart-item input[type="number"] {
  width: 60px;
  padding: 6px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.remove-btn {
  background: none;
  border: none;
  color: #ff3300;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
}

.cart-summary {
  border: 1px solid #ccc;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 12px;
}

.cart-summary h3 {
  margin-top: 0;
  font-size: 24px;
  color: #111;
}

.cart-row {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.cart-summary input[type="text"] {
  width: 100%;
  padding: 0.75rem;
  font-size: 16px;
  margin: 1rem 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}
/*------------------------------CHECKOUT-----------------------------*/
.edit-cart-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff3300;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.edit-cart-link:hover {
  background-color: black;
}


.checkout-btn {
  background: #000;
  color: #fff;
  padding: 15px 25px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.checkout-btn:hover {
  background-color: #ff3300;
}

.price-strike {
  text-decoration: line-through;
  color: grey;
  margin-left: 10px;
}

.checkout-summary-item img {
  border: 1px solid #ddd;
  border-radius: 4px;
}


.checkout-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.checkout-left {
  flex: 2;
  min-width: 300px;
}

/* Adds space between each major block in the left section */
.checkout-left > h2,
#shipping-method,
#shipping-info,
#delivery-note,
.checkout-btn {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Space between delivery title and textarea */
.checkout-left h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.checkout-right {
  flex: 1;
  min-width: 280px;
}

.checkout-summary {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
}

.checkout-summary h2 {
  margin-top: 0;
  font-size: 22px;
  margin-bottom: 20px;
}


/*--------------------------------Custom Modal-----------------------*/

.confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.confirm-modal-content {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
  width: 300px;
}

.confirm-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-around;
}

.confirm-btn {
  padding: 6px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.confirm-btn.yes {
  background-color: #e53935;
  color: white;
}

.confirm-btn.no {
  background-color: #ccc;
}

.hidden {
  display: none;
}

/*--------------------------CHECKOUT------------------------*/

.checkout-container {
  padding: 60px 40px;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.billing-info form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.billing-info .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.billing-info .row > div {
  flex: 1;
  min-width: 150px;
}

.billing-info input,
.billing-info select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
}


.shipping-method,
.payment-details {
  margin-top: 3rem;
}

.shipping-radio {
  position: relative;
  top: 20px; /* Increase this number until it's visually perfect */
  margin-right: 8px;
}

.shipping-box {
  background: #f5f5f5;
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.shipping-method form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shipping-method .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.shipping-method .row > div {
  flex: 1;
  min-width: 150px;
}

.shipping-method input,
.shipping-method select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

#shipping-address-form {
	margin-top: 20px;
}



.payment-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.payment-options label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
}

.pay-icon {
  height: 24px;
}

.note-small {
  font-size: 0.85rem;
  color: #666;
}

/* Add spacing below the city/state/postcode row */
#shipping-info .row:last-of-type {
  margin-bottom: 2rem;
}

/* Add spacing above the confirm button */
#confirm-order-btn {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Add spacing around the delivery instructions */
#delivery-note {
  display: block;
  height: 200px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}

/*---------------------------CONTACT----------------------*/

/* Title + Subtitle Section */
.contact-hero {
  background-color: #fff;
  padding: 80px 20px 40px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.contact-hero p {
  font-size: 18px;
  color: #444;
  margin-top: 0;
}

/* Form Section */
.contact-form-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;
}

.contact-form textarea {
  min-height: 140px;
}

.contact-btn {
  background-color: #ff3300;
  color: white;
  font-weight: bold;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: black;
}

.text-message-option {
  text-align: center;
  margin-top: 20px;
}

.text-message-option p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.text-message-btn {
  display: inline-block;
  background-color: #00bfff;
  color: white;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.text-message-btn:hover {
  background-color: #005f8f;
}


.service-dropdown {
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  width: 100%;
}

/*----------------------------------ECOMMERCE-------------------------*/
.ecommerce-enquiry-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.ecommerce-enquiry-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
}

.ecommerce-enquiry-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.ecommerce-enquiry-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecommerce-enquiry-form input,
.ecommerce-enquiry-form textarea {
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: vertical;
}

.ecommerce-enquiry-form textarea {
  min-height: 140px;
}


/*-------------------------------SUCCESS.HTML--------------------------*/
.success-container {
      padding: 60px 20px;
      text-align: center;
    }

    .success-container h1 {
      font-size: 2em;
      margin-bottom: 10px;
    }

    .order-summary-box {
      margin-top: 30px;
      padding: 20px;
      border: 1px solid #ddd;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .order-item {
      border-bottom: 1px solid #eee;
      padding: 10px 0;
    }

    .btn-primary {
      margin-top: 30px;
      display: inline-block;
      padding: 10px 20px;
      background-color: red;
      color: white;
      text-decoration: none;
      border-radius: 4px;
    }
	
	
/*---------------CHECKOUT ERRORS--------------------*/
.input-error {
  border: 2px solid red !important;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 4px;
}

  /* ------------------- MOBILE RESPONSIVENESS ------------------- */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .presentation-grid {
    flex-direction: column;
    padding: 20px;
  }

  .presentation-text {
    padding: 20px;
    text-align: center;
  }

  .presentation-text h1 {
    font-size: 32px;
  }

  .presentation-text p {
    font-size: 18px;
  }
  
  

.presentation-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}
.presentation-image img {
  width: auto;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: top center;
  display: block;
  margin: 0 auto;
}

  .why-firefit {
    padding: 60px 20px;
  }

  .why-firefit h2 {
    font-size: 36px;
  }

  .why-container {
    flex-direction: column;
    padding: 0;
    gap: 40px;
  }

  .why-left h3 span {
    font-size: 24px;
  }

  .why-left p {
    font-size: 18px;
  }

  .why-right img {
    max-height: 300px;
  }

  .who-firefit {
    padding: 60px 20px;
  }

  .who-firefit h2 {
    font-size: 36px;
  }

  .firefit-cards {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .firefit-card {
    width: 100%;
  }

  .featured-items {
    padding: 60px 20px;
  }

  .featured-items h2 {
    font-size: 32px;
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-content h2 {
    font-size: 24px;
  }

  .footer-content p {
    font-size: 14px;
  }

  .footer-links a {
    margin: 0 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .presentation-images-only {
    flex-direction: column;
    height: auto;
  }

  .why-container {
    flex-direction: column;
    padding: 20px;
  }

  .firefit-cards {
    flex-direction: column;
    align-items: center;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .checkout-two-column {
    flex-direction: column;
    padding: 20px;
  }

  .checkout-left,
  .checkout-right {
    width: 100%;
    padding: 0;
  }

  .cart-section {
    flex-direction: column;
    padding: 20px;
  }

  .cart-header,
  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-item img {
    margin: 0 auto;
  }

  .product-container {
    flex-direction: column;
    padding: 20px;
  }

  .contact-form {
    width: 100%;
    padding: 0 10px;
  }

  .ecommerce-enquiry-form {
    width: 100%;
    padding: 0 10px;
  }

  .gloves-container {
    flex-direction: column;
    padding: 20px;
  }

  .gloves-filters {
    width: 100%;
  }

  .gloves-products .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-summary-box {
    width: 100%;
    padding: 15px;
  }

  .book-now-section h2 {
    font-size: 32px;
  }

  .gradient-title,
  .why-firefit h2,
  .who-firefit h2 {
    font-size: 32px;
  }

  .product-details h1 {
    font-size: 24px;
  }

  .product-price {
    font-size: 20px;
  }
}

/* --- Mobile Responsiveness Fixes --- */
@media screen and (max-width: 768px) {
  .home-hero {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
  }

  .home-hero h1 {
    font-size: 2rem;
  }

  .home-hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .get-started-button {
    width: 100%;
    max-width: 250px;
    font-size: 1rem;
    padding: 10px;
    margin: 0 auto;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .product-card, .cart-item, .checkout-section {
    flex-direction: column;
    align-items: center;
  }

  .checkout-form-group, .shipping-info-group {
    flex-direction: column;
    width: 100%;
  }

  input, select, textarea, button {
    width: 100% !important;
    box-sizing: border-box;
  }

  .footer, footer {
    flex-direction: column;
    text-align: center;
  }



.ecommerce-navbar {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    background-color: #fff;
  }

  .ecommerce-navbar ul.dropdown-menu {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0;
    padding: 0 1rem;
    list-style: none;
    gap: 1rem;
  }

  .ecommerce-navbar ul.dropdown-menu > li {
    flex: 0 0 auto;
    position: relative;
  }

  .ecommerce-navbar ul.dropdown-menu > li > a {
    padding: 0.5rem 0;
    display: inline-block;
    white-space: nowrap;
  }

  .ecommerce-navbar ul.dropdown-content {
    display: none !important; /* Hide dropdowns in mobile to simplify UI */
    position: static;
  }
  
   .coaching-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .get-started-button {
    margin-top: 20px !important;
	margin-bottom: 20px;
    display: block;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  nav ul li {
    flex: 1 1 auto;
    text-align: center;
  }
  
}

@media (max-width: 768px) {


  .get-started-button {
    font-size: 1.1rem;
    padding: 12px 28px;
    background-color: #ff3300;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
  }

  .get-started-button:hover {
    background-color: #cc2900;
  }
  
  .get-started-button-container a{
  text-decoration: none;
  color: inherit !important;
  }
  
  .cart-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
}


