* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

img,
video {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-family: var(--ff-secondary);
}

h2 {
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

p {
  overflow-wrap: break-word;
  font-family: var(--ff-primary);
}

:root {
  --body-bg-color: #f6f5f3;
  --primary-color: #2b2b2b;
  --clr-neutral-white: #fff;
  --accent-color: #c96c33;
  --card-bg-color: #faf8f4;
  --footer-bg-color: #1f1f1f;
  --section-bg-color: #e8c8a0;
  --cta-button-bg-color: #a55326;
  --cta-button-hover-color: #8b4320;
  --instagram-color: #e1306c;
  --facebook-color: #0077b5;
  --whatsapp-color: #25d366;
  --ff-primary: "Lato", sans-serif;
  --ff-secondary: "Playfair Display", serif;
  --card-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --card-border-radius: 0.75rem;
  --card-padding: 1.875rem;
  --section-padding: 5rem 1rem;
}

section {
  padding: var(--section-padding);
}

@media (hover: hover) {
  .product-card:hover,
  .testimonial-card:hover,
  .pricing-card:hover {
    transform: translateY(-8px);
  }
}

.product-card:active,
.testimonial-card:active,
.pricing-card:active {
  transform: translateY(-8px);
}

.about-cta,
.products-cta,
.steps-cta,
.customer-showcase-cta,
.pricing-cta,
.video-feedback-cta,
.size-guide-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.product-order-btn,
.size-guide-cta-btn,
.about-cta-btn,
.step-cta-btn,
.customer-showcase-cta-btn,
.video-feedback-cta-btn {
  text-decoration: none;
  background-color: var(--cta-button-bg-color);
  color: var(--clr-neutral-white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease-out, color 0.3s ease-out,
    transform 0.3s ease-out;
}

.product-order-btn:hover,
.size-guide-cta-btn:hover,
.about-cta-btn:hover,
.step-cta-btn:hover,
.customer-showcase-cta-btn:hover,
.video-feedback-cta-btn:hover {
  background-color: var(--cta-button-hover-color);
  color: var(--clr-neutral-white);
}

.header-cta-btn:active,
.hero-buttons a:active,
.about-btn:active,
#order-placement-form button:active,
#newsletter-form button:active,
#contact-form button:active,
.product-order-btn:active,
.size-guide-cta-btn:active,
.about-cta-btn:active,
.step-cta-btn:active,
.customer-showcase-cta-btn:active,
.video-feedback-cta-btn:active {
  transform: scale(0.97);
}

.contact-info-grid,
.customer-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.pricing-grid,
.values-grid,
.product-grid,
.why-grid,
.steps-flow,
.size-steps-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.founder-image img,
.about-story-image img,
.about-craft-image img,
.about-image img,
.size-guide-image img,
.customer-gallery-image img,
.product-card img,
.why-card-image img {
  width: 100%;
  height: auto;
}

.size-steps-subtitle,
.why-subtitle,
.products-subtitle,
.steps-subtitle,
.customer-showcase-subtitle,
.pricing-subtitle,
.video-feedback-subtitle,
.contact-subtitle {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.25rem;
  opacity: 0.8;
}

.product-name,
.value,
.step,
.size-step {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.custom-fit-text {
  font-size: 1.2rem;
  text-align: justify;
  margin-bottom: 1rem;
  opacity: 0.8;
}

#order-placement,
#about-values,
#size-steps,
#how-it-works {
  background: var(--section-bg-color);
}

#why-choose-us,
#products,
#testimonials,
#video-feedback,
#faq,
#newsletter {
  background: var(--clr-neutral-white);
}

.contact-consent,
.order-consent {
  font-size: 0.95rem;
  margin: 0 0 0.625rem;
  opacity: 0.8;
}

.about-hero,
.size-guide-hero {
  color: var(--clr-neutral-white);
  padding: 9.375rem 1rem;
  text-align: center;
}

#order-placement-form textarea,
#contact-form textarea {
  resize: vertical;
  min-height: 3.75rem;
}

#order-placement-form input:focus,
#order-placement-form textarea:focus,
#contact-form input:focus,
#contact-form textarea:focus {
  border: 2px solid var(--primary-color);
}

/* Form error-message */
.contact-error-message,
.order-error-message {
  color: red;
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}

/* Form success-message */
.success-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  color: green;
}

/* GENERAL STYLES */

body {
  font-family: var(--ff-primary);
  height: 100dvh;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--primary-color);
}

body,
header {
  background-color: var(--body-bg-color);
}

header {
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease-in-out;
}

.container {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
}

.logo img {
  width: 150px;
  height: auto;
}

.header-content {
  justify-content: space-between;
  align-items: center;
}

.header-content,
nav ul {
  display: flex;
}

nav ul {
  list-style: none;
}

nav a {
  text-decoration: none;
  margin-inline: 0.5em;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover,
.nav-links .active {
  color: var(--cta-button-bg-color);
}

.nav-links .active {
  font-weight: 600;
}

.no-scroll {
  overflow: hidden;
  height: 100dvh;
}

.header-cta-btn {
  background-color: var(--cta-button-bg-color);
  color: var(--clr-neutral-white);
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out,
    transform 0.3s ease-out;
}

.header-cta-btn:hover {
  background-color: var(--cta-button-hover-color);
  color: var(--clr-neutral-white);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

nav .cta-mobile,
#menu-toggle,
.hamburger {
  display: none;
}

.hamburger {
  flex-direction: column;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.hamburger span {
  background: var(--primary-color);
  width: 1.875rem;
  height: 0.1875rem;
  margin: 0.1875rem 0;
  transition: 0.3s;
}

.page-content {
  padding-top: 5rem;
}

.hero h1,
.hero p,
.about-hero h1,
.about-hero p,
.size-guide-hero h1,
.size-guide-hero p {
  animation: fadeUp 1s ease-out forwards;
}

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

/* Policy Page */

.policy-page-content {
  background-color: var(--clr-neutral-white);
  max-width: 60rem;
  margin: 0 auto;
}

.policy-hero {
  padding: 9.375rem 1rem 0;
}

.policy-hero h1 {
  font-size: 2.5rem;
}

.policy-hero p {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0.5rem 0 0;
  opacity: 0.8;
}

.policy-content {
  padding: 3rem 1rem;
}

.policy-content h2 {
  font-size: 2rem;
  text-align: start;
  margin: 1.5rem 0 0.75rem;
}

.policy-content p {
  text-align: justify;
}

.policy-intro-text {
  font-size: 1.275rem;
}

.policy-text {
  font-size: 1.125rem;
}

/* Size Guide Page */

.size-guide-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(image/foot-length-measurement.webp) center/cover no-repeat;
}

.size-guide-hero p {
  max-width: 37.5rem;
  font-size: 1.2rem;
  margin: 1rem auto auto;
  opacity: 0.8;
}

.size-guide-note {
  margin-top: 1.5rem;
  text-align: center;
}

#size-guide-image {
  background-color: var(--clr-neutral-white);
}

#size-guide-image .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.size-steps-subtitle {
  font-family: var(--ff-primary);
  font-weight: 500;
}

.size-step-tip {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 1.5rem;
}

/* Hero Section */

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(image/ilisabawn-hero.webp) center/cover no-repeat;
  color: var(--clr-neutral-white);
  padding: 12.5rem 1rem 9.375rem;
  text-align: start;
}

.hero span {
  color: var(--accent-color);
  font-weight: 700;
}

.hero h1 {
  font-size: 3.75rem;
  max-width: 43.75rem;
  font-weight: 400;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
  max-width: 37.5rem;
  opacity: 0.8;
}

.hero h1 {
  line-height: 1.2;
}

.hero p {
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-buttons a {
  padding: 0.75rem 1.5rem;
  border-radius: 0.3125rem;
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--clr-neutral-white);
  display: inline-block;
  transition: all 0.3s ease-out;
}

.btn-primary {
  background-color: var(--cta-button-bg-color);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--clr-neutral-white);
}

.btn-primary:hover {
  background-color: var(--cta-button-hover-color);
}

.btn-secondary:hover {
  background-color: #1c1c1c;
  border-color: #1c1c1c;
}

/* Why Choose Us Section */

#why-choose-us span {
  color: var(--accent-color);
}

.why-card {
  padding: 0;
  margin: 0;
  background-color: var(--card-bg-color);
  overflow: hidden;
  border: var(--body-bg-color);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-box-shadow);
}

.why-card-content {
  padding: var(--card-padding) 1.5rem;
}

.why {
  font-size: 1.275rem;
  margin-bottom: 0.625rem;
}

.why-description {
  opacity: 0.8;
}

/* About Section */

.about-btn {
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--clr-neutral-white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease-out, color 0.3s ease-out,
    transform 0.3s ease-out;
}

.about-btn:hover {
  background-color: #1c1c1c;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(image/artisan-crafting-a-custom-shoe.webp) center/cover no-repeat;
}

.about-hero h1,
.size-guide-hero h1 {
  font-size: 3.75rem;
  max-width: 43.75rem;
  margin: 0 auto;
  line-height: 1.3;
  font-weight: 400;
}

.about-hero span,
.size-guide-hero span {
  font-weight: 700;
  color: var(--accent-color);
}

.about-hero p {
  font-size: 1.2rem;
  margin: 1rem auto auto;
  opacity: 0.8;
}

.about-content,
.about-story-content,
.about-craft-content,
.founder-note-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: space-between;
}

.about-craft-text,
.about-text,
.about-story-text,
.founder-note-text {
  flex: 1 1 50%;
}

.about-title,
.about-story-title,
.about-craft-title,
.founder-note-title {
  text-align: start;
}

.about-future-description,
.about-craft-description,
.about-description,
.about-story-description,
.founder-note-description {
  font-size: 1.2rem;
  text-align: justify;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.founder-image img,
.about-craft-image img,
.about-image img,
.about-story-image img {
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.about-future-description span,
.about-craft-description span,
.founder-note-description span,
.about-story-description span,
.about-description span,
.about-cta {
  font-weight: 600;
}

#about-values {
  text-align: center;
}

.value-description {
  opacity: 0.8;
}

/* Products Section */

.product-card {
  background-color: var(--card-bg-color);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.product-price-hint {
  font-size: 0.9875rem;
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.product-card-content {
  padding: var(--card-padding) 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-description {
  opacity: 0.7;
  margin-bottom: 1rem;
}

.product-order-btn {
  text-align: center;
}

/* Products Filter + Sort */

.product-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.filter-group label {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.3125rem;
  font-weight: 500;
}

.filter-group select {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--primary-color);
}

/* How It Works Section */

.steps-subtitle {
  font-family: var(--ff-primary);
  font-weight: 500;
}

.steps-label {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.125rem;
}

.steps-label,
.step-card,
.size-step-card {
  text-align: center;
}

.steps-flow small {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  display: block;
}

.step-card,
.size-step-card {
  padding: 1rem;
}

.step-number,
.size-step-number {
  background: var(--clr-neutral-white);
  color: var(--primary-color);
  font-size: 1.375rem;
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-description,
.size-step-description {
  opacity: 0.8;
}

/* Customer Showcase Section */

.customer-gallery-grid img {
  border: var(--body-bg-color);
  border-radius: var(--card-border-radius);
}

.customer-gallery-grid figcaption {
  margin-top: 0.5rem;
  font-style: italic;
  opacity: 0.8;
  text-align: center;
  line-height: 1.5;
}

/*  Testimonials Section */

.testimonials-subtitle {
  margin-bottom: 1.5rem;
  font-size: 1.375rem;
  font-weight: 500;
  font-family: var(--ff-primary);
  text-align: center;
  opacity: 0.8;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas:
    "jude chris oly"
    "jude dan oly";
}

.card-jude {
  grid-area: jude;
}

.card-chris {
  grid-area: chris;
}

.card-oly {
  grid-area: oly;
}

.card-dan {
  grid-area: dan;
}

.card-jude,
.card-oly {
  align-self: center;
}

.testimonial-card {
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  padding: var(--card-padding);
  background-color: var(--card-bg-color);
  color: var(--primary-color);
  transition: transform 0.3s ease-in-out;
}

.testimonial-card-header figure {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.testimonial-card-image {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.875rem;
}

.customer-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.customer-name,
.customer-location {
  font-family: var(--ff-primary);
}

.customer-location {
  font-size: 1.1rem;
  font-weight: 500;
}

.customer-location,
.testimonial-card-quote {
  opacity: 0.7;
}

.testimonial-card-quote {
  font-style: italic;
  margin-bottom: 1rem;
}

.star-icon {
  color: #ffd500;
}

/* Video Feedback Section */

#video-feedback {
  text-align: center;
}

#video-feedback video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  max-width: 37.5rem;
  margin: auto;
}

/* Pricing Section */

.pricing-grid {
  place-items: center;
}

.pricing-card {
  border-radius: 1rem;
  padding: var(--card-padding);
  text-align: center;
  box-shadow: var(--card-box-shadow);
  max-width: 18.75rem;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  background: transparent;
  color: var(--cta-button-bg-color);
  border: 2px solid var(--cta-button-bg-color);
}

.footwear {
  font-size: 1.275rem;
  font-weight: 600;
  color: var(--cta-button-bg-color);
  margin-bottom: 0.5rem;
  font-family: var(--ff-primary);
}

.price {
  font-size: 2rem;
}

.price,
.pricing-card ul {
  color: var(--primary-color);
}

.pricing-card ul {
  margin: 1.5rem 0 2.5rem;
  opacity: 0.8;
}

.pricing-card ul li {
  list-style: none;
  padding: 0;
  margin-bottom: 0.25rem;
}

.pricing-card-btn {
  display: inline-block;
  text-decoration: none;
  background-color: var(--cta-button-bg-color);
  color: var(--clr-neutral-white);
  padding: 0.75rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 0.375rem;
  box-sizing: border-box;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-out;
}

.pricing-card-btn:hover {
  background-color: var(--cta-button-hover-color);
  transform: scale(1.05);
}

.pricing-card-btn:active {
  transform: scale(0.97);
}

.view-products-btn,
.view-prices-btn {
  position: relative;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--primary-color);
  border-radius: 0.5rem;
  color: var(--primary-color);
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.5, 0, 0.3, 1);
  display: inline-block;
}

.view-products-btn:hover,
.view-prices-btn:hover {
  background-color: var(--primary-color);
  color: var(--clr-neutral-white);
  transform: translateY(-2px);
  border-radius: 999px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.view-products-btn:active,
.view-prices-btn:active {
  transform: scale(0.97);
}

.pricing-footer-note {
  text-align: center;
  margin-top: 1.5rem;
  opacity: 0.8;
}

/* FAQ Section */

.faq-content {
  max-width: 50rem;
}

.faq-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  max-width: 43.75rem;
  margin: 0 auto 1.5rem;
  font-family: var(--ff-primary);
}

.faq-subtitle,
.faq-answer {
  opacity: 0.8;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  font-size: 1.275rem;
  font-family: var(--ff-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--card-bg-color);
}

.faq-question,
.plus-sign,
.faq-cta a,
.faq-footer a {
  font-weight: 600;
}

.plus-sign {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-question,
.faq-answer {
  padding: 0.75rem 1rem;
}

.faq-answer {
  display: none;
  background-color: var(--clr-neutral-white);
}

.faq-answer,
.faq-cta a,
.faq-footer a {
  font-size: 1.0625rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .plus-sign {
  transform: rotate(45deg);
}

.faq-cta a,
.faq-footer a {
  text-decoration: none;
  color: var(--primary-color);
}

.faq-cta a:hover,
.faq-footer a:hover {
  text-decoration: underline;
}

.faq-cta,
.faq-footer {
  margin-top: 1rem;
}

.faq-cta,
.faq-footer {
  text-align: center;
}

/* Order Placement Section */

.order-placement-subtitle {
  text-align: center;
  font-size: 1.25rem;
  max-width: 40.625rem;
  margin: 0 auto;
  opacity: 0.8;
}

#order-placement-form {
  width: 100%;
  max-width: 37.5rem;
  margin: 3rem auto auto;
}

#order-placement-form label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4375rem;
}

#order-placement-form fieldset {
  border: none;
  padding: 0;
}

#order-placement-form fieldset,
#order-placement-form legend,
.form-group {
  margin-bottom: 0.625rem;
}

#order-placement-form legend {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}

#order-placement-form .form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 0.625rem;
}

.form-row .form-group {
  flex: 1;
}

#order-placement-form input,
#order-placement-form textarea,
#order-placement-form select {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.9875rem;
  border: 1px solid var(--primary-color);
  border-radius: 0.5rem;
  box-sizing: border-box;
  outline: none;
}

#order-placement-form small {
  font-size: 0.95rem;
  margin-top: 0.3125rem;
  display: block;
  opacity: 0.8;
}

#order-placement-form button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--cta-button-bg-color);
  color: var(--clr-neutral-white);
  border: var(--clr-neutral-white);
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
}

#order-placement-form button:hover {
  background-color: var(--cta-button-hover-color);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.order-alt {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.order-alt a {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--primary-color);
  text-decoration: none;
}

.order-alt a:hover {
  text-decoration: underline;
}

/* Newsletter Section */

#newsletter {
  text-align: center;
}

.newsletter-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.newsletter-subtitle {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

#newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

#newsletter-form input {
  padding: 0.625rem 0.75rem;
  width: 100%;
  max-width: 15.625rem;
  border-radius: 0.5rem;
  border: 1px solid var(--primary-color);
  font-size: 0.9875rem;
  outline: none;
}

#newsletter-form input:focus {
  border: 2px solid var(--primary-color);
}

#newsletter-form button {
  padding: 0.625rem 1.25rem;
  background-color: var(--primary-color);
  color: var(--clr-neutral-white);
  border: var(--body-bg-color);
  border-radius: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
}

#newsletter-form button:hover {
  background-color: #1c1c1c;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.newsletter-note {
  font-size: 0.95rem;
  margin-top: 0.625rem;
  text-align: center;
  font-style: italic;
}

/* Contact Section */

.contact-info-grid {
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  background-color: var(--clr-neutral-white);
  padding: var(--card-padding);
  border-radius: var(--card-border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-card-content a {
  color: inherit;
  text-decoration: none;
}

.contact-card-content a:hover {
  text-decoration: underline;
}

.contact-icon {
  font-size: 1.25rem;
}

.contact-card h4 {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: var(--ff-primary);
}

.contact-card p {
  opacity: 0.7;
}

#contact-form {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}

#contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

#contact-form label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#contact-form input,
#contact-form textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-sizing: border-box;
  outline: none;
  font-size: 0.9875rem;
}

#contact-form button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--clr-neutral-white);
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: 0.5rem;
  margin-top: 0.875rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out,
    transform 0.3s ease-out;
}

#contact-form button:hover {
  background-color: #1c1c1c;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

/* Footer */

footer {
  padding: 2.5rem 1rem 1.25rem;
  background-color: var(--footer-bg-color);
  color: var(--body-bg-color);
  position: relative;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 2rem;
  max-width: 75rem;
  margin: 0 auto;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.375rem;
  font-weight: 600;
}

.footer-logo {
  display: inline-block;
  width: 140px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-section p {
  opacity: 0.8;
}

.footer-section address {
  margin-top: 0.3125rem;
}

.footer-section address a {
  text-decoration: none;
  color: var(--section-bg-color);
}

.footer-section address a:hover {
  text-decoration: underline;
}

.footer-links,
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--body-bg-color);
  transition: color 0.3s ease-out;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--section-bg-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: var(--clr-neutral-white);
  font-size: 1.25rem;
  transition: color 0.3s ease-out;
}

.social-icons .fa-facebook:hover {
  color: var(--facebook-color);
}

.social-icons .fa-instagram:hover {
  color: var(--instagram-color);
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9375rem;
  opacity: 0.7;
}

.fa-brands.whatsapp-chat-btn,
.back-to-top-btn {
  position: fixed;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  right: 1.25rem;
  z-index: 1000;
  text-decoration: none;
  color: var(--clr-neutral-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fa-brands.whatsapp-chat-btn {
  background-color: var(--whatsapp-color);
  font-size: 1.5rem;
  bottom: 1.25rem;
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.back-to-top-btn {
  background-color: var(--primary-color);
  font-size: 1.25rem;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  bottom: 5rem;
}

.back-to-top-btn:hover {
  opacity: 0.8;
}

.back-to-top-btn:active {
  transform: scale(0.97);
}

/* Media Queries */

@media (max-width: 767px) {
  .logo img {
    width: 130px;
  }

  .about-title,
  .about-story-title,
  .about-craft-title,
  .founder-note-title,
  .policy-hero,
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.275rem;
    margin: 0 auto;
    line-height: 1.4;
  }

  .hero p {
    margin: 1rem auto 2rem;
  }

  h2,
  .newsletter-title {
    font-size: 1.75rem;
  }

  .about-hero h1,
  .size-guide-hero h1 {
    font-size: 2.5rem;
  }

  .hero p,
  .about-hero p,
  .size-guide-hero p {
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .policy-hero h1 {
    font-size: 2.15rem;
  }

  .policy-hero p {
    font-size: 1.0625rem;
  }

  .policy-content h2 {
    font-size: 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100dvh;
    background: var(--clr-neutral-white);
    text-align: center;
    padding: 7.5rem 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
  }

  .hero-buttons,
  .founder-note-content,
  .about-craft-content,
  .form-row,
  #newsletter-form,
  nav ul {
    flex-direction: column;
  }

  nav li {
    margin: 0.625rem 0;
  }

  nav .cta-mobile {
    display: block;
    margin: auto;
    width: auto;
    max-width: fit-content;
    box-sizing: border-box;
    padding: 0.625rem 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-out, color 0.3s ease-out,
      box-shadow 0.3s ease-out, transform 0.3s ease-out;
  }

  nav .cta-mobile:hover {
    background-color: var(--cta-button-hover-color);
    color: var(--clr-neutral-white);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
  }

  nav .cta-mobile:active {
    transform: scale(0.97);
  }

  .cta-desktop {
    display: none;
  }

  /* Show menu when checkbox is checked */
  #menu-toggle:checked + .hamburger + nav {
    transform: translateX(0);
    opacity: 1;
  }

  /* Animate Hamburger icon */
  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 5px);
  }

  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
  }

  .hero-buttons {
    gap: 1.125rem;
  }

  .product-name,
  .why,
  .contact-info h3 {
    font-size: 1.375rem;
  }

  .about-content,
  .about-story-content {
    flex-direction: column-reverse;
  }

  .about-btn {
    display: block;
    margin: 1.5rem auto 0;
    max-width: fit-content;
  }

  .page-content {
    padding-top: 4rem;
  }

  .product-grid,
  .why-grid,
  .pricing-grid,
  .contact-wrapper,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-rows: 1fr;
    grid-template-areas:
      "jude"
      "chris"
      "dan"
      "oly";
  }

  #newsletter-form input,
  #newsletter-form button {
    max-width: 100%;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .filter-group {
    flex: 1 1 100%; /* full width on mobile */
  }

  .filter-group select {
    width: 100%; /* dropdown fills its container */
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .about-title,
  .about-story-title,
  .about-craft-title,
  .founder-note-title,
  .policy-hero,
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
    max-width: 40.625rem;
    margin: 0 auto;
    line-height: 1.4;
  }

  .hero p {
    margin: 1rem auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero p,
  .about-hero p,
  .size-guide-hero p {
    font-size: 1.125rem;
  }

  h2 {
    font-size: 2rem;
  }

  .policy-hero h1 {
    font-size: 2.25rem;
  }

  .policy-hero p {
    font-size: 1.0625rem;
  }

  .policy-content h2,
  .newsletter-title {
    font-size: 1.75rem;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100dvh;
    background: var(--clr-neutral-white);
    text-align: center;
    padding: 7.5rem 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
  }

  .about-craft-content,
  .about-story-content,
  .founder-note-content,
  nav ul {
    flex-direction: column;
  }

  nav li {
    margin: 0.625rem 0;
  }

  nav .cta-mobile {
    display: block;
    margin: auto;
    width: auto;
    max-width: fit-content;
    box-sizing: border-box;
    padding: 0.625rem 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-out, color 0.3s ease-out,
      box-shadow 0.3s ease-out, transform 0.3s ease-out;
  }

  nav .cta-mobile:hover {
    background-color: var(--cta-button-hover-color);
    color: var(--clr-neutral-white);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
  }

  nav .cta-mobile:active {
    transform: scale(0.97);
  }

  .cta-desktop {
    display: none;
  }

  /* Show menu when checkbox is checked */
  #menu-toggle:checked + .hamburger + nav {
    transform: translateX(0);
    opacity: 1;
  }

  /* Animate Hamburger icon */
  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 5px);
  }

  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
  }

  .about-content,
  .about-story-content {
    flex-direction: column-reverse;
  }

  .about-btn {
    display: block;
    margin: 1.5rem auto 0;
    max-width: fit-content;
  }

  .page-content {
    padding-top: 4rem;
  }

  .product-grid,
  .pricing-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-rows: 1fr;
    grid-template-areas:
      "chris jude"
      "dan oly";
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}
