/* =========================
   BASIC WEBSITE SETTINGS
========================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: #f8f3e9;
  color: #3f392f;
  font-family: Arial, sans-serif;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  -webkit-tap-highlight-color: transparent;
}


/* =========================
   HEADER
========================= */

#store-header {
  width: 100%;
  text-align: center;
  background: #f8f3e9;
  padding: 18px 15px 5px;
  position: relative;
  z-index: 100;
}

.header-brand {
  text-align: center;
  margin-bottom: 6px;
}

.header-small-title {
  margin: 0;
  color: #a47b2a;
  font-size: 9px;
  letter-spacing: 6px;
}

#store-header h1 {
  margin: 1px 0;
  color: #a47b2a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 6px;
  font-weight: normal;
}

.header-collection {
  margin: 0;
  color: #a47b2a;
  font-size: 9px;
  letter-spacing: 6px;
}


/* =========================
   NAVIGATION
========================= */

#customer-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 12px 5px;
}

#customer-nav a {
  color: #705b36;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

#customer-nav a:hover {
  color: #b78b32;
}

.gold-line {
  width: 92%;
  max-width: 1200px;
  height: 1px;
  margin: 5px auto 0;
  background: #c7a35b;
}


/* =========================
   MAIN / PAGE SYSTEM
========================= */

main {
  width: 100%;
  min-height: 100vh;
}

.page-section {
  display: none;
  width: 100%;
  min-height: 100vh;
  text-align: center;
  padding: 30px 20px;
}

#home {
  display: block;
  width: 100%;
  padding: 0;
  min-height: 100vh;
}

#shop:target,
#product-details:target,
#about:target,
#contact:target,
#cart:target,
#payment-success:target,
#admin-login:target,
#forgot-password:target,
#reset-password:target,
#admin-dashboard:target {
  display: block !important;
}

body:has(#shop:target) #home,
body:has(#product-details:target) #home,
body:has(#about:target) #home,
body:has(#contact:target) #home,
body:has(#cart:target) #home,
body:has(#payment-success:target) #home,
body:has(#admin-login:target) #home,
body:has(#forgot-password:target) #home,
body:has(#reset-password:target) #home,
body:has(#admin-dashboard:target) #home {
  display: none;
}

#shop,
#product-details,
#about,
#contact,
#cart,
#payment-success,
#admin-login,
#forgot-password,
#reset-password {
  background: transparent;
}

#admin-dashboard {
  background: rgba(247, 241, 231, 0.96);
}


/* =========================
   PAGE TITLES
========================= */

.page-title-area {
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-title-area h2,
#cart > h2,
#payment-success h2,
#admin-login > h2,
#forgot-password > h2,
#reset-password > h2,
#admin-dashboard h2 {
  color: #9d7628;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  font-size: 34px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.page-title-area p {
  color: #6e6254;
}


/* =========================
   HOMEPAGE HERO
========================= */

.luxury-hero {
  width: 100%;
  height: 78vh;
  min-height: 560px;
  max-height: 850px;
  position: relative;
  overflow: hidden;
  background: #2f2b25;
}

.luxury-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.luxury-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0.30)
    );
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding: 0 20px 55px;
}

.hero-instagram-box {
  text-align: center;
  margin-top: 18px;
}

.hero-instagram-box p {
  margin: 0 0 10px;
  color: white;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 1px;
}

.hero-instagram-button {
  display: inline-block;
  background: #d4af37;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.2s ease;
}

.hero-instagram-button:hover {
  background: #b8860b;
}


/* =========================
   BUNDLES BANNER
========================= */

.home-shop-banner {
  width: 100%;
  min-height: 420px;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: #d9c9ae;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-shop-banner p {
  color: #fff8eb;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 4px;
  margin: 0 0 12px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
}

.home-shop-banner h2 {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  letter-spacing: 4px;
  margin: 0 0 22px;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.70);
}

.home-shop-banner a {
  display: inline-block;
  color: white;
  border: 1px solid white;
  padding: 13px 28px;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.25);
}


/* =========================
   HOME ABOUT PREVIEW
========================= */

.section-small-title {
  color: #a57a2b;
  font-size: 11px;
  letter-spacing: 5px;
  margin-bottom: 12px;
  font-weight: bold;
}

.home-about-preview {
  width: 100%;
  padding: 85px 25px;
  background: #f8f3e9;
}

.home-about-preview h2 {
  color: #443a2c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 3px;
  margin: 12px auto 20px;
}

.home-about-preview > p:not(.section-small-title) {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #655b4f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

.home-about-preview a {
  display: inline-block;
  color: #8d6825;
  border: 1px solid #aa8136;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 3px;
}


/* =========================
   SHOP
========================= */

.hair-categories {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hair-categories button {
  background: #fffaf1;
  color: #866322;
  border: 1px solid #c4a15a;
  padding: 11px 18px;
  cursor: pointer;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
}

.products {
  width: 100%;
  max-width: 1300px;
  margin: 35px auto;
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.product,
.product-card {
  width: 100%;
  padding: 15px;
  background: #fffaf2;
  border: 1px solid #dfcfb2;
}

.product img,
.product-card img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.product h3,
.product-card h3 {
  color: #8b6727;
  font-family: Georgia, "Times New Roman", serif;
}

.product p,
.product-card p {
  color: #61594f;
}

.product button,
.product-card button {
  background: #a67c2d;
  color: white;
  border: none;
  padding: 14px 25px;
  font-weight: bold;
  cursor: pointer;
}


/* =========================
   PRODUCT DETAILS
========================= */

#product-details {
  padding: 0;
  text-align: left;
}

.product-details-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 70px;
  background: #f8f3e9;
}

.product-detail-image-wrap {
  width: 100%;
  background: #eee5d7;
  overflow: hidden;
}

.product-detail-image {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center;
}

.product-detail-info {
  padding: 34px 24px 20px;
}

.product-detail-category {
  margin: 0 0 10px;
  color: #a47b2a;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.product-detail-name {
  margin: 0 0 12px;
  color: #332c24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: normal;
  line-height: 1.08;
}

.product-detail-description {
  margin: 0 0 22px;
  color: #665c51;
  font-size: 15px;
  line-height: 1.6;
}

.product-option-title {
  margin: 24px 0 10px;
  color: #4f463c;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
}

.product-length-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-length-button {
  min-width: 88px;
  padding: 13px 17px;
  border: 1px solid #d6c5a7;
  border-radius: 24px;
  background: #fffaf2;
  color: #4d4439;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  cursor: pointer;
}

.product-length-button.selected {
  background: #2f2923;
  color: white;
  border-color: #2f2923;
}

.product-length-button:disabled,
.product-length-button.sold-out {
  opacity: 0.38;
  text-decoration: line-through;
  cursor: not-allowed;
}

.product-selected-info {
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid #dfd0b7;
  border-bottom: 1px solid #dfd0b7;
}

.selected-product-price {
  margin: 0 0 5px;
  color: #8f6824;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

#selected-stock-text {
  margin: 0;
  color: #6e6459;
  font-size: 13px;
}

.product-quantity-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-quantity-button {
  width: 44px;
  height: 44px;
  border: 1px solid #ccb489;
  background: #fffaf2;
  color: #4b4035;
  font-size: 22px;
  cursor: pointer;
}

.product-quantity-number {
  min-width: 45px;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
}

.product-detail-add-button {
  width: 100%;
  margin-top: 28px;
  padding: 17px 20px;
  border: none;
  background: #332c24;
  color: white;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 3px;
  cursor: pointer;
}

.product-back-link {
  display: inline-block;
  margin-top: 22px;
  color: #896726;
  text-decoration: none;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  border-bottom: 1px solid #896726;
  padding-bottom: 4px;
}


/* =========================
   OUR STORY
========================= */

#about {
  padding: 0;
  background: #f8f3e9;
  text-align: left;
}

.about-hero {
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #e5dac8;
}

.about-hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-story-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 42px 45px;
  background: #fbf6ee;
  text-align: left;
}

.about-eyebrow {
  margin: 0 0 7px;
  color: #a57b32;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 5px;
}

.about-story-content > h2 {
  margin: 0 0 8px;
  color: #32271f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  font-weight: normal;
  line-height: 1.06;
}

.about-subtitle {
  max-width: 620px;
  margin: 0 0 17px;
  color: #a47b34;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
}

.about-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 18px;
}

.about-divider > span:not(.about-divider-symbol) {
  flex: 1;
  height: 1px;
  background: #c8ad7a;
}

.about-divider-symbol {
  color: #b28c47;
  font-size: 14px;
}

.about-story-text p {
  margin: 0 0 16px;
  color: #3f3b36;
  font-size: 17px;
  line-height: 1.55;
}

.about-scripture-box {
  width: 100%;
  margin: 24px auto 0;
  padding: 24px 20px 20px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid #c9ad78;
  border-radius: 18px;
  text-align: center;
}

.about-scripture-box p {
  margin: 0 auto 8px;
  color: #46382d;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.35;
}

.about-scripture-box span {
  color: #a47b32;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 4px;
}


/* =========================
   CONTACT
========================= */

#contact {
  padding: 55px 20px 90px;
  text-align: center;
}

#contact .page-title-area {
  max-width: 700px;
  margin: 0 auto 38px;
}

#contact .section-small-title {
  color: #8a7345;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 5px;
  margin-bottom: 18px;
}

#contact .page-title-area h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #b18428;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 4px;
  margin: 0 0 15px;
}

.contact-box {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 38px 32px;
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid #d4af37;
  box-shadow: 0 8px 30px rgba(70, 55, 25, 0.08);
  text-align: left;
}

.contact-box label {
  display: block;
  color: #6d5b37;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.contact-box input,
.contact-box textarea {
  display: block;
  width: 100%;
  border: 1px solid #c9ad6a;
  background: #fffdf8;
  color: #3f392f;
  font-size: 15px;
  padding: 15px;
  margin: 0 0 23px;
  outline: none;
}

.contact-box input {
  height: 52px;
}

.contact-box textarea {
  height: 145px;
  resize: vertical;
}

#contact-send-button {
  display: block;
  width: 100%;
  background: #d4af37;
  color: white;
  border: none;
  padding: 16px 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
}


/* =========================
   CART / CHECKOUT
========================= */

#cart {
  text-align: center;
}

#cart-items {
  width: 100%;
  max-width: 650px;
  margin: 25px auto;
}

.cart-item {
  width: 90%;
  max-width: 550px;
  margin: 15px auto;
  padding: 15px;
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid #c2a161;
}

#cart button,
#place-order-button {
  background: #a67c2d;
  color: white;
  border: none;
  padding: 14px 25px;
  font-weight: bold;
  cursor: pointer;
}

.checkout-box {
  width: 90%;
  max-width: 500px;
  margin: 30px auto;
  background: rgba(255, 250, 241, 0.96);
  border: 1px solid #c4a15b;
  padding: 28px;
  text-align: left;
}

.checkout-box label {
  display: block;
  margin: 14px 0 5px;
  color: #594e42;
  font-weight: bold;
  font-size: 13px;
}

.checkout-box input,
.checkout-box textarea {
  display: block;
  width: 100%;
  background: #fffaf1;
  color: #40372d;
  border: 1px solid #c4a15b;
  padding: 15px;
  margin-bottom: 10px;
  font-size: 16px;
}


/* =========================
   ADMIN
========================= */

.admin-login-box,
.admin-tab {
  background: #fffaf2;
  border: 1px solid #c7a45e;
}

.admin-login-box {
  width: 90%;
  max-width: 620px;
  margin: 30px auto;
  padding: 40px;
}

.admin-dashboard-menu {
  width: 90%;
  max-width: 850px;
  margin: 25px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.admin-dashboard-menu button,
.admin-tab button {
  background: #a67c2d;
  color: white;
  border: none;
  padding: 14px 18px;
  font-weight: bold;
  cursor: pointer;
}

.admin-tab {
  display: none;
  width: 90%;
  max-width: 750px;
  margin: 30px auto;
  padding: 28px;
}


/* =========================
   FOOTER
========================= */

#store-footer {
  width: 100%;
  background: #f8f3e9;
  text-align: center;
  padding: 55px 20px 30px;
  border-top: 1px solid #c6a364;
}

/* =========================
   SIDE MENU BUTTON
========================= */

.menu-open-button {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 1500;

  background: transparent;
  border: none;

  color: #b8860b;

  font-size: 34px;
  line-height: 1;

  cursor: pointer;
}


/* =========================
   SIDE MENU OVERLAY
========================= */

.side-menu-overlay {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.55);

  z-index: 1998;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
}

.side-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* =========================
   LUXURY SIDE MENU
========================= */

.side-menu {
  position: fixed;

  top: 0;
  left: 0;

  width: 88%;
  max-width: 390px;
  height: 100vh;

  background: #fffaf1;

  z-index: 1999;

  transform: translateX(-100%);
  transition: transform 0.3s ease;

  overflow-y: auto;

  border-right: 1px solid #d4af37;

  box-shadow:
    8px 0 30px rgba(0, 0, 0, 0.20);
}

.side-menu.active {
  transform: translateX(0);
}


/* =========================
   MENU HEADER
========================= */

.side-menu-top {
  min-height: 105px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 25px 22px;

  background: #fffaf1;

  border-bottom: 1px solid #d4af37;
}

.side-menu-top h2 {
  margin: 0;

  color: #9d7628;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 21px;
  font-weight: normal;

  letter-spacing: 2px;
  line-height: 1.3;
}


/* CLOSE BUTTON */

.menu-close-button {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: #f6ecd8;

  color: #b8860b;

  border: 1px solid #e1c98e;
  border-radius: 4px;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;
}


/* =========================
   DECORATIVE GOLD LINE
========================= */

.side-menu-top::after {
  content: "";

  position: absolute;

  top: 104px;
  left: 25px;
  right: 25px;

  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      #d4af37,
      transparent
    );
}


/* =========================
   MENU LINKS
========================= */

.side-menu-link {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;

  padding: 22px 25px;

  background: #fffaf1;

  color: #4c3a1f !important;

  border-bottom: 1px solid #ead9b5;

  text-decoration: none !important;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 17px;
  font-weight: normal;

  letter-spacing: 2px;

  transition: 0.2s ease;
}


/* GOLD ARROW */

.side-menu-link::after {
  content: "›";

  position: absolute;
  right: 24px;

  color: #c3922e;

  font-family: Arial, sans-serif;

  font-size: 31px;
  font-weight: normal;

  line-height: 1;
}


/* HOVER */

.side-menu-link:hover {
  background: #f8efdD;

  color: #b8860b !important;

  padding-left: 30px;
}


/* CLICK */

.side-menu-link:active {
  background: #f3e5c6;
}


/* ADMIN LINK */

.admin-menu-link {
  color: #a47b2a !important;
}


/* =========================
   SHIPPING POLICY
========================= */

.policy-page {
  width: 90%;
  max-width: 750px;

  margin: 40px auto;

  padding: 35px 25px;

  background: #fffaf1;

  border: 1px solid #d4af37;

  text-align: center;

  box-shadow:
    0 8px 25px rgba(86, 65, 26, 0.08);
}

.policy-page h2 {
  margin: 0 0 25px;

  color: #9d7628;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 32px;
  font-weight: normal;

  letter-spacing: 3px;
}

.policy-page p {
  color: #51483d;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 16px;
  line-height: 1.8;

  margin-bottom: 20px;
}

.policy-back-button {
  display: inline-block;

  margin-top: 15px;

  padding: 14px 27px;

  background: #d4af37;

  color: white !important;

  border: 1px solid #d4af37;

  text-decoration: none !important;

  font-size: 11px;
  font-weight: bold;

  letter-spacing: 2px;
}

.policy-back-button:hover {
  background: #b8860b;
}


/* =========================
   SIDE MENU MOBILE
========================= */

@media (max-width: 600px) {

  .side-menu {
    width: 88%;
    max-width: 360px;
  }

  .side-menu-top {
    min-height: 100px;
    padding: 22px 20px;
  }

  .side-menu-top h2 {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .side-menu-top::after {
    top: 99px;
    left: 20px;
    right: 20px;
  }

  .side-menu-link {
    padding: 21px 24px;

    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .side-menu-link::after {
    right: 22px;
    font-size: 28px;
  }

}



/* =========================
   PAYMENT SUCCESS BUTTON
========================= */

#payment-success a {
  display: inline-block;
  margin-top: 18px;
  background: #d4af37;
  color: #ffffff;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  border: 1px solid #d4af37;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  body {
    background-attachment: scroll;
  }

  #store-header {
    padding: 14px 8px 4px;
  }

  #store-header h1 {
    font-size: 23px;
    letter-spacing: 4px;
  }

  .header-small-title,
  .header-collection {
    font-size: 7px;
    letter-spacing: 4px;
  }

  #customer-nav {
    gap: 10px;
    padding: 10px 2px;
  }

  #customer-nav a {
    font-size: 9px;
    letter-spacing: 0.7px;
  }


  /* =========================
     MOBILE HOMEPAGE HERO
     SHOW WHOLE PHOTO
  ========================= */

  .luxury-hero {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    position: relative;
    overflow: hidden;
    background: #2f2b25;
  }

  .luxury-hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding: 0 20px 28px;
  }


  .home-shop-banner {
    min-height: 300px;
    padding: 40px 20px;
  }

  .home-shop-banner h2 {
    font-size: 32px;
  }

  .home-about-preview {
    padding: 60px 20px;
  }

  .products {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product,
  .product-card {
    padding: 8px;
  }

  .product img,
  .product-card img {
    height: 220px;
  }

  .product h3,
  .product-card h3 {
    font-size: 14px;
  }

  .product p,
  .product-card p {
    font-size: 12px;
  }

  .product button,
  .product-card button {
    width: 100%;
    padding: 11px 8px;
    font-size: 10px;
  }

  .product-detail-info {
    padding: 28px 22px 45px;
  }

  .product-detail-name {
    font-size: 34px;
  }

  .product-length-button {
    min-width: calc(50% - 4px);
  }

  .about-hero {
    height: 390px;
  }

  .about-story-content {
    padding: 22px 22px 35px;
  }

  .about-story-content > h2 {
    font-size: 34px;
  }

  .page-section {
    padding: 25px 14px;
  }

  #home,
  #about,
  #product-details {
    padding: 0;
  }

  .admin-login-box {
    width: 100%;
    padding: 28px 22px;
  }

  .admin-dashboard-menu {
    width: 94%;
    flex-direction: column;
  }

  .admin-dashboard-menu button {
    width: 100%;
  }

  .admin-tab {
    width: 96%;
    padding: 18px 12px;
  }

  .contact-box {
    padding: 28px 20px;
  }

}


/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width: 380px) {

  #store-header h1 {
    font-size: 20px;
  }

  #customer-nav a {
    font-size: 8px;
  }

  .product-length-button {
    min-width: 100%;
  }

}/* =========================
   FOOTER DESIGN FIX
========================= */

#store-footer {
  width: 100%;
  background: #f8f3e9;
  text-align: center;
  padding: 55px 20px 30px;
  border-top: 1px solid #c6a364;
}

.footer-small-title {
  margin: 0;
  color: #a47b2a;
  font-size: 9px;
  letter-spacing: 5px;
}

.footer-brand h2 {
  margin: 2px 0;
  color: #a47b2a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 5px;
}

.footer-collection {
  margin: 0 0 14px;
  color: #a47b2a;
  font-size: 9px;
  letter-spacing: 5px;
}

.footer-tagline {
  margin: 14px 0 25px;
  color: #765f36;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 3px;
}

.footer-gold-line {
  width: 70px;
  height: 1px;
  margin: 0 auto 28px;
  background: #c5a15e;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #9d7628 !important;
  text-decoration: none !important;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 2px;
}

.footer-links a:visited {
  color: #9d7628 !important;
}

.footer-links a:hover {
  color: #b8860b !important;
}

.footer-scripture {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #61574b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
}

.footer-copyright {
  margin: 0;
  color: #938878;
  font-size: 9px;
  letter-spacing: 1.5px;
}


/* MOBILE FOOTER */

@media (max-width: 600px) {

  #store-footer {
    padding: 45px 15px 25px;
  }

  .footer-brand h2 {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .footer-tagline {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-links a {
    font-size: 9px;
  }

  .footer-scripture {
    font-size: 13px;
    padding: 0 12px;
  }

  .footer-copyright {
    font-size: 8px;
    line-height: 1.6;
  }
}/* =========================================
   SELLER PORTAL / ADMIN DESIGN RESTORE
========================================= */

#admin-login,
#forgot-password,
#reset-password,
#admin-dashboard {
  background: #f8f3e9;
  color: #3f392f;
}


/* SELLER LOGIN PAGE */

#admin-login,
#forgot-password,
#reset-password {
  text-align: center;
  padding: 45px 20px 80px;
}

#admin-login h2,
#forgot-password h2,
#reset-password h2 {
  margin: 0 0 15px;

  color: #a77b25;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 40px;
  font-weight: normal;

  letter-spacing: 5px;
}

#admin-login > p,
#forgot-password > p,
#reset-password > p {
  color: #665b4e;
  font-size: 16px;
  margin-bottom: 30px;
}


/* LOGIN CARD */

.admin-login-box {
  width: 92%;
  max-width: 520px;

  margin: 25px auto;

  padding: 35px 30px;

  background: #fffaf1;

  border: 1px solid #c9a85f;

  box-shadow:
    0 10px 30px rgba(90, 68, 28, 0.08);

  display: flex;
  flex-direction: column;
  gap: 14px;
}


/* LOGIN INPUTS */

.admin-login-box input {
  display: block;

  width: 100%;

  padding: 16px;

  background: #fffdf8;

  border: 1px solid #c9aa68;

  color: #3f392f;

  font-size: 15px;

  outline: none;
}

.admin-login-box input:focus {
  border-color: #b8860b;

  box-shadow:
    0 0 0 1px #b8860b;
}


/* LOGIN BUTTONS */

#admin-login-button,
#send-reset-button,
#resend-reset-button,
#update-password-button {
  width: 100%;

  padding: 15px 20px;

  margin-top: 5px;

  background: #d4af37;

  color: white;

  border: none;

  font-size: 12px;
  font-weight: bold;

  letter-spacing: 2px;

  cursor: pointer;
}

#admin-login-button:hover,
#send-reset-button:hover,
#resend-reset-button:hover,
#update-password-button:hover {
  background: #b8860b;
}


/* FORGOT PASSWORD LINK */

.forgot-password-link,
.admin-login-box a {
  color: #a77b25 !important;

  text-decoration: none !important;

  font-size: 12px;
  font-weight: bold;

  letter-spacing: 1px;

  margin-top: 8px;
}

.forgot-password-link:hover,
.admin-login-box a:hover {
  color: #b8860b !important;
}


/* =========================================
   SELLER DASHBOARD
========================================= */

#admin-dashboard {
  padding: 40px 20px 80px;
  text-align: center;
}


/* PORTAL HEADER */

.admin-portal-header {
  width: 100%;
  max-width: 850px;

  margin: 0 auto 30px;

  padding-bottom: 22px;

  border-bottom: 1px solid #d4af37;
}

.admin-portal-header h2 {
  margin: 0 0 8px;

  color: #a77b25;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 38px;
  font-weight: normal;

  letter-spacing: 4px;
}

.admin-portal-header p {
  margin: 0;

  color: #806839;

  font-size: 10px;
  font-weight: bold;

  letter-spacing: 4px;
}


/* ADMIN MENU */

.admin-dashboard-menu {
  width: 94%;
  max-width: 900px;

  margin: 25px auto 35px;

  display: flex;
  flex-wrap: wrap;

  justify-content: center;

  gap: 10px;
}

.admin-dashboard-menu button {
  padding: 14px 18px;

  background: #d4af37;

  color: white;

  border: 1px solid #d4af37;

  font-size: 11px;
  font-weight: bold;

  letter-spacing: 1px;

  cursor: pointer;
}

.admin-dashboard-menu button:hover {
  background: #b8860b;
  border-color: #b8860b;
}


/* ADMIN TAB CARDS */

.admin-tab {
  display: none;

  width: 94%;
  max-width: 780px;

  margin: 30px auto;

  padding: 30px;

  background: #fffaf1;

  border: 1px solid #c9a85f;

  box-shadow:
    0 8px 28px rgba(84, 63, 24, 0.08);

  text-align: left;
}

.admin-tab h3 {
  margin-top: 0;

  color: #9f7625;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 28px;
  font-weight: normal;

  letter-spacing: 2px;

  text-align: center;
}

.admin-tab h4 {
  color: #80612c;

  font-family: Georgia, "Times New Roman", serif;

  letter-spacing: 1px;
}


/* ADMIN LABELS */

.admin-tab label {
  display: block;

  margin: 16px 0 6px;

  color: #65543c;

  font-size: 11px;
  font-weight: bold;

  letter-spacing: 1px;
}


/* ADMIN INPUTS */

.admin-tab input,
.admin-tab textarea,
.admin-tab select {
  width: 100%;

  padding: 14px;

  background: #fffdf8;

  border: 1px solid #c9aa68;

  color: #3f392f;

  font-size: 15px;
}

.admin-tab textarea {
  min-height: 110px;
}


/* ADMIN BUTTONS */

.admin-tab button {
  padding: 13px 18px;

  margin-top: 10px;

  background: #d4af37;

  color: white;

  border: none;

  font-size: 11px;
  font-weight: bold;

  letter-spacing: 1px;

  cursor: pointer;
}

.admin-tab button:hover {
  background: #b8860b;
}


/* ADMIN PRODUCT / ORDER CARDS */

.admin-product-card,
.admin-order-card,
.admin-customer-card,
.admin-message-card {
  width: 100%;

  margin: 18px auto;

  padding: 20px;

  background: #fffdf8;

  border: 1px solid #ddc99e;

  text-align: left;
}

.admin-product-card img {
  display: block;

  width: 100%;
  max-width: 320px;

  height: 280px;

  margin: 0 auto 20px;

  object-fit: cover;
}


/* LOGOUT */

#admin-logout-button {
  display: block;

  margin: 35px auto 0;

  padding: 14px 30px;

  background: transparent;

  color: #9f7625;

  border: 1px solid #b8860b;

  font-size: 11px;
  font-weight: bold;

  letter-spacing: 2px;

  cursor: pointer;
}


/* =========================================
   MOBILE HAIR LENGTHS SIDE TO SIDE
========================================= */

@media (max-width: 600px) {

  .product-length-options {
    width: 100%;

    display: flex;

    flex-wrap: nowrap;

    gap: 9px;

    overflow-x: auto;

    padding: 5px 2px 12px;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .product-length-options::-webkit-scrollbar {
    display: none;
  }

  .product-length-button {
    flex: 0 0 auto;

    min-width: 105px !important;
    width: auto !important;

    padding: 13px 16px;

    white-space: nowrap;

    border-radius: 24px;

    font-size: 13px;
  }


  /* ADMIN MOBILE */

  #admin-login,
  #forgot-password,
  #reset-password {
    padding: 35px 15px 60px;
  }

  #admin-login h2,
  #forgot-password h2,
  #reset-password h2 {
    font-size: 31px;
    letter-spacing: 3px;
  }

  .admin-login-box {
    width: 96%;

    padding: 28px 20px;
  }

  #admin-dashboard {
    padding: 30px 12px 60px;
  }

  .admin-portal-header h2 {
    font-size: 30px;
  }

  .admin-dashboard-menu {
    width: 100%;

    flex-direction: column;
  }

  .admin-dashboard-menu button {
    width: 100%;
  }

  .admin-tab {
    width: 100%;

    padding: 20px 14px;
  }

}


/* =========================================
   IMPORTANT:
   KEEP LENGTHS SIDE TO SIDE
   EVEN ON VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

  .product-length-button {
    min-width: 100px !important;
    width: auto !important;
  }

}/* =========================
   LUXURY CART DESIGN
========================= */

#cart-items {
  width: 100%;
  max-width: 850px;
  margin: 25px auto;
}

.luxury-cart-item {
  display: flex;
  gap: 18px;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.luxury-cart-image-wrap {
  width: 140px;
  min-width: 140px;
}

.luxury-cart-image {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
}

.luxury-cart-info {
  flex: 1;
  position: relative;
}

.luxury-cart-info h3 {
  margin: 0 0 8px;
  color: #333;
  font-size: 18px;
  line-height: 1.3;
}

.luxury-cart-option {
  display: inline-block;
  background: #f2f2f2;
  color: #777 !important;
  border-radius: 20px;
  padding: 7px 12px;
  margin: 3px 0 10px;
}

.luxury-cart-price {
  color: #b8860b !important;
  font-size: 22px;
  font-weight: bold;
  margin: 6px 0 12px;
}

.luxury-cart-bottom-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.cart-quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 22px;
  overflow: hidden;
}

.cart-quantity-controls button {
  background: white !important;
  color: #333 !important;
  border: none !important;
  width: 42px;
  height: 40px;
  padding: 0 !important;
  font-size: 22px;
}

.cart-quantity-controls span {
  width: 38px;
  text-align: center;
  font-weight: bold;
}

.cart-remove-icon {
  background: white !important;
  color: #333 !important;
  padding: 8px 10px !important;
  border: 1px solid #ddd !important;
  border-radius: 20px 0 0 20px !important;
}

.cart-item-subtotal {
  text-align: right;
  font-weight: bold;
  color: #b8860b !important;
  margin-top: 8px;
}


/* =========================
   FLOATING CART
========================= */

.floating-cart-button {
  position: fixed;
  right: 18px;
  bottom: 85px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #d4af37;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.floating-cart-count {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 50%;
  background: #5c3b6f;
  color: white;
  font-size: 12px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}


/* =========================
   MOBILE CART
========================= */

@media (max-width: 600px) {

  .luxury-cart-item {
    gap: 12px;
    padding: 14px 0;
  }

  .luxury-cart-image-wrap {
    width: 115px;
    min-width: 115px;
  }

  .luxury-cart-image {
    height: 145px;
  }

  .luxury-cart-info h3 {
    font-size: 15px;
  }

  .luxury-cart-price {
    font-size: 19px;
  }

  .cart-quantity-controls button {
    width: 36px;
    height: 36px;
  }

  .cart-quantity-controls span {
    width: 32px;
  }

  .floating-cart-button {
    right: 14px;
    bottom: 75px;
    width: 54px;
    height: 54px;
  }
}/* =========================
   MOBILE LUXURY CART
========================= */

.luxury-cart-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 5px;
  border-bottom: 1px solid #d8c8a0;
  text-align: left;
}

.luxury-cart-image-wrap {
  width: 38%;
  max-width: 150px;
  flex-shrink: 0;
}

.luxury-cart-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 3px;
}

.luxury-cart-info {
  flex: 1;
  min-width: 0;
}

.luxury-cart-info h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #3f392f;
  line-height: 1.25;
}

.luxury-cart-option {
  margin: 5px 0;
  padding: 6px 10px;
  background: #f1eee8;
  border-radius: 18px;
  font-size: 14px;
  display: inline-block;
}

.luxury-cart-price {
  margin: 10px 0;
  font-size: 20px;
  font-weight: bold;
  color: #3f392f;
}

.luxury-cart-controls {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #d6d0c5;
  border-radius: 25px;
  overflow: hidden;
  margin-top: 10px;
}

.luxury-cart-controls button {
  width: 42px;
  height: 38px;
  padding: 0;
  border: none;
  background: white;
  color: #3f392f;
  font-size: 20px;
  cursor: pointer;
}

.luxury-cart-controls span {
  min-width: 35px;
  text-align: center;
  font-weight: bold;
}

.luxury-cart-controls .cart-remove-icon {
  font-size: 15px;
  border-right: 1px solid #ddd;
}

.cart-item-subtotal {
  margin: 10px 0 0;
  font-weight: bold;
  font-size: 16px;
}


/* PHONE */

@media (max-width: 600px) {

  #cart {
    padding-left: 16px;
    padding-right: 16px;
  }

  .luxury-cart-item {
    flex-direction: row;
  }

  .luxury-cart-image-wrap {
    width: 36%;
  }

  .luxury-cart-image {
    height: 155px;
  }

  .luxury-cart-info {
    width: 64%;
  }
}
/* =========================
   CUSTOMER REVIEWS
========================= */

.home-reviews-section {
  width: 100%;
  padding: 55px 20px;
  margin-top: 50px;
  background: #f8f3e9;
  text-align: center;
}

.home-reviews-heading {
  max-width: 700px;
  margin: 0 auto 30px;
}

.home-reviews-small {
  color: #b8860b;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.home-reviews-heading h2 {
  color: #b8860b;
  font-family: Georgia, serif;
  font-size: 30px;
  letter-spacing: 2px;
  margin: 5px 0 12px;
}

.home-reviews-heading p {
  color: #62594c;
}

.featured-reviews-list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.featured-review-card {
  background: #fff;
  border: 1px solid #d4af37;
  padding: 28px 22px;
  border-radius: 6px;
  text-align: left;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.review-stars {
  color: #d4af37;
  font-size: 21px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-customer-name {
  color: #3f392f;
  font-family: Georgia, serif;
  font-size: 18px;
  margin: 0 0 10px;
}

.review-preview {
  color: #62594c;
  line-height: 1.6;
  margin-bottom: 18px;
}

.full-review-button,
.review-actions button,
#submit-review-button {
  background: #d4af37;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
}

.full-review-button:hover,
.review-actions button:hover,
#submit-review-button:hover {
  background: #b8860b;
}

.review-actions {
  margin-top: 30px;
}


/* =========================
   REVIEW POPUPS
========================= */

.review-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  padding: 25px;
  overflow-y: auto;
}

.review-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-modal-content {
  position: relative;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  background: #f8f3e9;
  border: 2px solid #d4af37;
  padding: 35px 25px;
  text-align: left;
}

.review-modal-content h2 {
  color: #b8860b;
  font-family: Georgia, serif;
  text-align: center;
  letter-spacing: 2px;
}

.review-modal-content label {
  display: block;
  margin: 18px 0 7px;
  color: #3f392f;
  font-weight: bold;
}

.review-modal-content input,
.review-modal-content select,
.review-modal-content textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d8c9aa;
  background: #fff;
  font-size: 16px;
}

.review-modal-content textarea {
  resize: vertical;
}

.review-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  color: #b8860b;
  border: none;
  font-size: 32px;
  cursor: pointer;
}

.review-full-feedback {
  color: #4f473d;
  line-height: 1.7;
  white-space: pre-wrap;
}

.review-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.review-photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}


/* =========================
   MOBILE REVIEWS
========================= */

@media (max-width: 768px) {

  .home-reviews-section {
    padding: 40px 15px;
  }

  .home-reviews-heading h2 {
    font-size: 24px;
  }

  .featured-reviews-list {
    grid-template-columns: 1fr;
  }

  .review-modal {
    padding: 12px;
  }

  .review-modal-content {
    padding: 35px 18px 25px;
  }

  .review-photo-grid {
    grid-template-columns: 1fr;
  }

  .review-photo-grid img {
    height: auto;
  }
}
/* =========================
   CART ITEM LUXURY BOX
========================= */

.luxury-cart-item {
  background: rgba(255, 250, 241, 0.90);
  border: 1px solid rgba(196, 161, 91, 0.75);
  padding: 18px;
  margin: 15px auto;
  border-radius: 5px;
  box-shadow: 0 5px 18px rgba(70, 55, 25, 0.08);
}

@media (max-width: 600px) {

  .luxury-cart-item {
    padding: 14px 10px;
  }

}
/* =========================
   SHOP PRODUCT LUXURY CARDS
========================= */

.product,
.product-card {
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(196, 161, 91, 0.75);
  box-shadow: 0 5px 18px rgba(70, 55, 25, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.product h3,
.product-card h3 {
  color: #8b6727;
}

.product p,
.product-card p {
  color: #51483d;
}
/* =========================
   CONTACT PAGE BACKGROUND FIX
========================= */

#contact .page-title-area {
  background: rgba(255, 250, 241, 0.88);
  border: 1px solid rgba(196, 161, 91, 0.65);
  padding: 25px 20px;
  border-radius: 5px;
}

#contact .page-title-area p {
  color: #51483d;
}
/* =========================
   ABOUT PAGE LUXURY BACKGROUND
========================= */

.about-story-content {
  background: rgba(251, 246, 238, 0.92);
  border-left: 1px solid rgba(196, 161, 91, 0.55);
  border-right: 1px solid rgba(196, 161, 91, 0.55);
  box-shadow: 0 5px 20px rgba(70, 55, 25, 0.08);
}

.about-scripture-box {
  background: rgba(255, 250, 242, 0.92);
}
/* =========================
   CHECKOUT LUXURY BOX
========================= */

.checkout-box {
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(196, 161, 91, 0.75);
  box-shadow: 0 6px 20px rgba(70, 55, 25, 0.08);
  border-radius: 5px;
}

.checkout-box input,
.checkout-box textarea {
  background: rgba(255, 253, 248, 0.96);
}

.checkout-box label {
  color: #594e42;
}
.shipping-rate-text {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #b8862b;
  letter-spacing: 0.5px;
}
/* =========================
   CHECKOUT / ORDER METHOD
========================= */

#checkout-form {
  max-width: 620px;
  margin: 30px auto;
  padding: 32px 28px;
  background: rgba(255, 252, 244, 0.96);
  border: 1px solid #c9a24a;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

#checkout-form h2,
#checkout-form h3 {
  margin-top: 0;
  color: #2e2e2e;
}

#checkout-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #3a352d;
}

#fulfillment-method {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 24px;
  border: 1px solid #c9a24a;
  border-radius: 10px;
  background: #fff;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

#fulfillment-method:focus {
  border-color: #9e751d;
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.16);
}


/* =========================
   CHECKOUT SUMMARY
========================= */

.checkout-summary {
  margin-top: 10px;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #eadfca;
  border-radius: 14px;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  font-size: 17px;
  color: #3a352d;
}

.checkout-summary-row span:last-child {
  font-weight: 600;
  text-align: right;
}

.checkout-summary-divider {
  height: 1px;
  background: #e7dcc6;
  margin: 8px 0;
}

.checkout-summary-row.checkout-total {
  padding-top: 15px;
  font-size: 22px;
  font-weight: 800;
  color: #1f1f1f;
}

#checkout-method-price {
  color: #9a741f;
  font-weight: 700;
}


/* =========================
   SECURE PAYMENT TEXT
========================= */

.checkout-secure-text {
  margin: 22px 0 14px;
  text-align: center;
  font-size: 14px;
  color: #777;
}


/* =========================
   CHECKOUT BUTTON
========================= */

#place-order-button {
  width: 100%;
  padding: 17px 20px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    #b78a28,
    #d4af55
  );
  color: white;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.2s ease;
}

#place-order-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(183, 138, 40, 0.25);
}

#place-order-button:active {
  transform: translateY(0);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  #checkout-form {
    margin: 20px 14px;
    padding: 24px 18px;
    border-radius: 14px;
  }

  .checkout-summary {
    padding: 18px 16px;
  }

  .checkout-summary-row {
    font-size: 16px;
  }

  .checkout-summary-row.checkout-total {
    font-size: 20px;
  }

  #fulfillment-method {
    font-size: 16px;
  }

}