/* ========== STYLES (identical to previous responsive version) ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  scroll-behavior: smooth;
}
body {
  background: #fafaf8;
  color: #1e1e1e;
  line-height: 1.5;
  opacity: 0;
  animation: pageFadeIn 0.6s ease-out forwards;
}
@keyframes pageFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #eee;
}
::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 20px;
}
.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: #ffffffd9;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #eaeae7;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 1rem 2rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #252523;
}
.logo span {
  font-weight: 300;
  color: #7c7c7a;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-links a {
  text-decoration: none;
  color: #343432;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #000;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: #1e1e1e;
  transition: width 0.25s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.cart-icon {
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 0.15s;
  display: inline;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.cart-icon i {
  font-size: 1.5rem;
}
.cart-icon:hover {
  transform: scale(1.03);
}
#cart-count {
  background: #222;
  color: white;
  border-radius: 40px;
  padding: 0.1rem 0.55rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.page {
  display: none;
  padding: 2rem 5% 4rem;
  width: 100%;
  margin: 0 auto;
  width: 100%;
}
.active-page {
  display: block;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem 4rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 450;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 900px;
}
.hero h1 .light {
  font-weight: 280;
  color: #5f5f5b;
}
.hero p {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  color: #3b3b38;
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
  max-width: 700px;
}
.btn {
  border: 1px solid #232321;
  background: transparent;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #232321;
  display: inline-block;
}
.btn:hover {
  background: #232321;
  color: white;
}

/* TREY Infinite Scroll Section */

.infinite-scroll-section {
  width: 100%;
  left: 0;
  right: 0;
  background: #fafaf8;
  padding: 0 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}

/* Scroll container - hides overflow */
.scroll-container {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.scroll-container:active {
  cursor: grabbing;
}

/* Scroll track - holds the items */
.scroll-track {
  display: flex;
  width: fit-content;
  animation: scrollHorizontal 20s linear infinite;
}

/* Individual scroll items */
.scroll-item {
  position: relative;
  width: 320px;
  height: 400px;
  margin: 0 10px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid #eaeae4;
  transition: all 0.3s ease;
  cursor: crosshair;
}

.scroll-item:hover {
  transform: scale(1.02);
  border-color: #d4d4ce;
  box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.15);
}

/* Images and videos */
.scroll-item img,
.scroll-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.scroll-item:hover img,
.scroll-item:hover video {
  transform: scale(1.05);
}

/* Overlay text */
.scroll-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.scroll-item:hover .scroll-overlay {
  transform: translateY(0);
}

.scroll-overlay span {
  color: #ffffff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 350;
}

/* Animation keyframes */
@keyframes scrollHorizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .infinite-scroll-section {
    padding: 2rem 0;
  }

  .scroll-item {
    width: 260px;
    height: 330px;
    margin: 0 8px;
  }

  .scroll-overlay span {
    font-size: 0.75rem;
  }

  .infinite-scroll-section::before,
  .infinite-scroll-section::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .scroll-item {
    width: 220px;
    height: 280px;
    margin: 0 6px;
  }

  .scroll-overlay {
    padding: 1rem 0.8rem 0.8rem;
  }
}

/*TREY location section  */

/* Map container - takes 50% on desktop, full width on mobile */
.map-container {
  flex: 1;
  min-width: 280px;
  background: #f9f9f6;
  border: 1px solid #eaeae4;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.map-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 20px 35px -18px rgba(0, 0, 0, 0.12);
  border-color: #d4d4ce;
}

/* iframe styling */
.trey-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
  filter: grayscale(0.15) contrast(0.98);
  transition: filter 0.4s ease;
}

.map-container:hover .trey-map-iframe {
  filter: grayscale(0) contrast(1);
}

/* 
   TREY location card 
 */

.trey-location-card {
  width: 60%;
  margin-bottom: 5%;
  position: relative;
  background: transparent;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: #ffffff;
}

/* background image with dark overlay - combined pseudo-elements */
.trey-location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://res.cloudinary.com/dazhskqcc/image/upload/v1774106209/oj9_ygddjd.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 0.4s ease;
}

.trey-location-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

/* hover effects */
.trey-location-card:hover::before {
  transform: scale(1.05);
}

.trey-location-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 45px -20px rgba(0, 0, 0, 0.5);
}

/* content wrapper - sits above overlay */
.location-badge,
.location-title,
.location-divider,
.location-description,
.location-details,
.location-footer {
  position: relative;
  z-index: 2;
}

/* ===== BADGE ===== */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 0.3rem 0;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #c9a46c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ========================================
 TREY location + features combined section
 ======================================== */

#locfeat {
  width: 100%;
  margin: 4rem 0;
}

.trey-location-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: stretch;
}

/* Location card styles (your existing, refined) */
.trey-location-card {
  flex: 1;
  min-width: 280px;
  position: relative;
  background: transparent;
  padding: 3rem 2.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: #ffffff;
}

/* background image with dark overlay */
.trey-location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://res.cloudinary.com/dazhskqcc/image/upload/v1774106209/oj9_ygddjd.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 0.4s ease;
}

.trey-location-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.trey-location-card:hover::before {
  transform: scale(1.05);
}

.trey-location-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 45px -20px rgba(0, 0, 0, 0.5);
}

.location-badge,
.location-title,
.location-divider,
.location-description,
.location-details,
.location-footer {
  position: relative;
  z-index: 2;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #c9a46c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}

.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 400;
}

.location-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.title-accent {
  color: #ffffff;
  font-weight: 450;
}

.title-light {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 280;
  margin-left: 0.5rem;
}

.location-divider {
  width: 48px;
  height: 2px;
  background: #c9a46c;
  margin: 1rem 0 1.5rem 0;
}

.location-description {
  font-size: 1rem;
  font-weight: 320;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 2rem;
}

.location-description b {
  color: #c9a46c;
  font-weight: 500;
}

.location-details {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 330;
}

.detail-row i {
  width: 20px;
  color: #c9a46c;
  font-size: 1rem;
}

.location-footer {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.studio-ethos {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: 330;
}

.ethos-dot {
  width: 5px;
  height: 5px;
  background-color: #c9a46c;
  border-radius: 50%;
  display: inline-block;
}

/* FEATURES GRID  */
.trey-features-grid {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  border: 1px solid #eaeae4;
  border-radius: 10px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.trey-features-grid:hover {
  box-shadow: 0 20px 35px -18px rgba(0, 0, 0, 0.08);
  border-color: #d4d4ce;
}

.features-heading {
  font-size: 1.8rem;
  font-weight: 380;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  line-height: 1.2;
  border-bottom: 2px solid #efefe9;
  padding-bottom: 1rem;
}

.heading-accent {
  color: #252523;
  font-weight: 450;
}

.heading-light {
  color: #9a9a94;
  font-weight: 280;
  margin-left: 0.5rem;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0eb;
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f6;
  border-radius: 0;
  transition: all 0.3s ease;
  perspective: 100px;
}

.feature-icon i {
  font-size: 1.6rem;
  color: #c9a46c;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  backface-visibility: hidden;
}

.feature-item:hover .feature-icon i {
  transform: rotateY(360deg);
}

.feature-item:hover .feature-icon {
  background: #c9a46c10;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  margin-bottom: 0.3rem;
}

.feature-desc {
  font-size: 0.85rem;
  font-weight: 320;
  color: #6f6f69;
  line-height: 1.4;
}

.features-footer {
  margin-top: 1rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #efefe9;
}

.footer-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9a9a94;
  font-weight: 330;
}

/* Responsive */
@media (max-width: 768px) {
  .trey-location-features {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trey-location-card {
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .trey-features-grid {
    padding: 1.8rem;
  }

  .features-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
  }

  .feature-icon i {
    font-size: 1.3rem;
  }

  .feature-title {
    font-size: 0.9rem;
  }

  .feature-desc {
    font-size: 0.8rem;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}

.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 400;
}

/* ===== TITLE ===== */
.location-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.title-accent {
  color: #ffffff;
  font-weight: 450;
}

.title-light {
  color: #ffffff;
  font-weight: 280;
  margin-left: 0.5rem;
}

/* ===== DIVIDER ===== */
.location-divider {
  width: 48px;
  height: 2px;
  background: #c9a46c;
  margin: 1rem 0 1.5rem 0;
}

/* ===== DESCRIPTION ===== */
.location-description {
  font-size: 1rem;
  font-weight: 320;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 2rem;
}

.location-description b {
  color: #c9a46c;
  font-weight: 500;
}

/* ===== DETAILS ROWS ===== */
.location-details {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 330;
}

.detail-row i {
  width: 20px;
  color: #c9a46c;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.location-footer {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.studio-ethos {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: 330;
}

.ethos-dot {
  width: 5px;
  height: 5px;
  background-color: #c9a46c;
  border-radius: 50%;
  display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .trey-location-card {
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .location-description {
    font-size: 0.95rem;
  }

  .detail-row {
    font-size: 0.85rem;
  }
}

@keyframes pulseUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.featured-heading {
  text-align: center;
  margin: 5%;
  font-size: xx-large;
  font-weight: 100;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}
.featured-item {
  background: #f2f2ef;
  padding: 1.5rem;
  transition: transform 0.3s, background 0.2s;
  cursor: pointer;
  border-radius: 0px;
}
.featured-item:hover {
  transform: translateY(-8px);
  background: #eaeae4;
}
.featured-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  filter: grayscale(15%);
  margin-bottom: 1rem;
}

/* Thrift coming soon card  */

.trey-coming-soon {
  background: #f9f9f6;
  border: 1px solid #eaeae4;
  padding: 3rem 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.trey-coming-soon:hover {
  border-color: #d4d4ce;
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.05);
}

/* subtle animated background pattern */
.trey-coming-soon::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(201, 164, 108, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: subtleShift 12s ease-in-out infinite;
}

@keyframes subtleShift {
  0% {
    transform: translate(0%, 0%);
    opacity: 0.5;
  }
  50% {
    transform: translate(5%, 3%);
    opacity: 0.8;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 0.5;
  }
}

/* content container */
.soon-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* badge */
.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 0.4rem 1rem;
  background: rgba(201, 164, 108, 0.08);
  border-radius: 30px;
}

.badge-icon {
  color: #c9a46c;
  font-size: 1rem;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.badge-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6f6f69;
  font-weight: 400;
}

/* main icon */
.soon-icon {
  margin-bottom: 1.5rem;
}

.soon-icon i {
  font-size: 2.8rem;
  color: #c9a46c;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.trey-coming-soon:hover .soon-icon i {
  transform: translateY(-3px);
  opacity: 1;
}

/* title */
.soon-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.title-main {
  color: #252523;
  font-weight: 450;
  display: block;
}

.title-light {
  color: #9a9a94;
  font-weight: 280;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 0.3rem;
}

/* divider */
.soon-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #e2e2db, #c9a46c, #e2e2db);
  margin: 1.5rem auto;
}

/* description */
.soon-description {
  font-size: 1rem;
  font-weight: 320;
  line-height: 1.6;
  color: #4f4f4b;
  margin-bottom: 2rem;
}

/* countdown / coming soon indicator */
.soon-countdown {
  margin: 2rem 0 1.5rem;
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.4rem;
  background: #ffffff;
  border: 1px solid #e2e2db;
}

.countdown-dot {
  width: 8px;
  height: 8px;
  background-color: #c9a46c;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.countdown-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #3b3b38;
  font-weight: 400;
}

/* footer */
.soon-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #efefe9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #6b6b66;
  font-weight: 330;
}

.footer-note i {
  color: #c9a46c;
  font-size: 0.85rem;
}

.footer-dot {
  width: 4px;
  height: 4px;
  background-color: #cbcbc3;
  border-radius: 50%;
}

/* responsive adjustments */
@media (max-width: 768px) {
  .trey-coming-soon {
    padding: 2rem 1.5rem;
  }

  .soon-badge {
    margin-bottom: 1.5rem;
  }

  .soon-description {
    font-size: 0.95rem;
  }

  .footer-note {
    font-size: 0.75rem;
  }
}

.section-title {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  border-bottom: 1px solid #dbdbd5;
  padding-bottom: 0.8rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.product-card {
  background: #ffffff;
  padding: 1.2rem 1.2rem 1.8rem;
  border: 1px solid #efefea;
  transition: all 0.25s;
  cursor: pointer;
  animation: fadeCard 0.6s;
}

/* ========================================
   TREY VIP merchandise 
   ======================================== */

.vip {
  position: relative;
  isolation: isolate;
}

.vip::before {
  content: "vip";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #232321;
  color: #e5e5e0;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 0.25rem 0.7rem;
  text-transform: uppercase;
  z-index: 10;
  font-family: "Inter", monospace;
  transition: all 0.2s ease;
}

.vip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #c9a46c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  z-index: 2;
}

.vip:hover::after {
  transform: scaleX(1);
}

.vip:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.vip {
  border: 1px solid #eaeae4;
  transition: all 0.3s ease;
}

.vip:hover {
  border-color: #d4d4ce;
}

.vip .product-price {
  color: #c9a46c !important;
  font-weight: 450;
  position: relative;
  display: inline-block;
}

.vip h3 {
  position: relative;
  display: inline-block;
}

.vip h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a46c;
  transition: width 0.3s ease;
}

.vip:hover h3::after {
  width: 100%;
}

/* VIP badge alternative  */
.vip .vip-marker {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #c9a46c;
  opacity: 0;
  transform: translateX(5px);
  transition: all 0.25s ease;
  font-weight: 350;
  letter-spacing: 0.3px;
}

.vip:hover .vip-marker {
  opacity: 1;
  transform: translateX(0);
}

.vip .vip-marker i {
  font-size: 0.65rem;
}

.vip img {
  filter: brightness(0.98) contrast(1.02);
  transition: filter 0.4s ease;
}

.vip:hover img {
  filter: brightness(1) contrast(1);
}

.product-card.vip {
  background: #ffffff;
}

.featured-item.vip {
  background: #fefcf8;
}

.featured-item.vip:hover {
  background: #fffdf9;
}

.products-grid .vip {
  position: relative;
}

@keyframes softGlow {
  0% {
    text-shadow: 0 0 0px rgba(201, 164, 108, 0);
  }
  50% {
    text-shadow: 0 0 4px rgba(201, 164, 108, 0.2);
  }
  100% {
    text-shadow: 0 0 0px rgba(201, 164, 108, 0);
  }
}

.vip .product-price {
  animation: softGlow 2s ease-in-out infinite;
}

/*  tooltip on hover */
.vip .vip-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #232321;
  color: #e5e5e0;
  font-size: 0.7rem;
  font-weight: 350;
  padding: 0.35rem 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 100;
  letter-spacing: 0.3px;
  font-family: "Inter", monospace;
}

.vip .vip-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: #232321 transparent transparent transparent;
}

.vip:hover .vip-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vip::before {
    font-size: 0.55rem;
    padding: 0.2rem 0.6rem;
    top: 0.75rem;
    right: 0.75rem;
  }

  .vip .vip-marker {
    bottom: 0.75rem;
    right: 0.75rem;
  }
}

/* Animation for new VIP items */
@keyframes subtleReveal {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.vip {
  animation: subtleReveal 0.4s ease forwards;
}

@keyframes fadeCard {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.product-card:hover {
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.05);
  border-color: #c2c2ba;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}
.product-card:hover img {
  transform: scale(1.02);
}
.product-card h3 {
  font-weight: 450;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 350;
  color: #464641;
}
.detail-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem 3rem;
  align-items: start;
  animation: fadeIn 0.5s;
}
.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main-img {
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  border: 1px solid #e3e3dd;
}
.thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.thumb {
  width: clamp(70px, 15vw, 90px);
  height: auto;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
  border: 1px solid transparent;
}
.thumb:hover,
.thumb.active-thumb {
  opacity: 1;
  border-color: #232321;
}
.detail-info {
  padding: 0.5rem 0;
}
.detail-info h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  word-break: break-word;
}
.detail-id {
  font-size: 1rem;
  color: #6f6f69;
  border-bottom: 1px solid #dddcd6;
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}
.detail-description {
  font-size: 1.1rem;
  font-weight: 300;
  margin: 1.5rem 0;
}
.detail-meta {
  list-style: none;
  margin: 1.5rem 0;
}
.detail-meta li {
  padding: 0.8rem 0;
  border-bottom: 1px dashed #e2e2db;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.meta-label {
  width: 100px;
  font-weight: 400;
  color: #4d4d48;
}
.meta-value {
  font-weight: 350;
  word-break: break-word;
  flex: 1;
}
.add-to-cart-btn {
  width: 100%;
  padding: 1.2rem;
  background: #232321;
  color: white;
  border: none;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
  margin-top: 1.5rem;
}
.add-to-cart-btn:hover {
  background: #3b3b38;
}
.cart-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 800px) {
  .cart-container {
    grid-template-columns: 1fr;
  }
}
.cart-items {
  background: #f9f9f6;
  border: 1px solid #ecece5;
  overflow-x: auto;
  cursor: pointer;
}
.cart-item {
  display: grid;
  grid-template-columns: 50px 1.5fr 0.3fr 0.1fr 70px 30px;
  align-items: center;
  gap: 1rem;
  overflow: auto;
  padding: 1.5rem;
  border-bottom: 1px solid #e3e3db;
  min-width: 500px;
}
@media (max-width: 600px) {
  .cart-item {
    min-width: 440px;
  }
}
.cart-item img {
  width: 100%;
  aspect-ratio: 1/1.2;
  object-fit: cover;
}

.cart-item img:hover {
  transform: scale(1.2);
  border-radius: 20px;
  transition: 0.5s ease-in-out;
}
.cart-item h4 {
  font-weight: 450;
  font-size: 1rem;
}
.cart-item-price {
  font-weight: 350;
}
.cart-item input {
  width: 65px;
  padding: 0.4rem;
  border: 1px solid #cbcbc3;
  background: white;
}
.remove-item {
  color: #a3a39b;
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.2s;
  text-align: center;
}
.remove-item:hover {
  color: #c00;
}
.cart-summary {
  background: #f2f2ef;
  padding: 2rem;
  border: 1px solid #e0e0d8;
  position: sticky;
  top: 120px;
}

/* Cart Summary Styles */
.cart-summary {
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 1.8rem;
  position: sticky;
  top: 100px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  font-size: 1rem;
  color: #3b3b38;
}

.summary-row span:first-child {
  color: #6f6f69;
}

#subtotal-amount,
#total-amount {
  font-weight: 500;
  color: #252523;
}

.total-row {
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.total-row .total-price {
  color: #c9a46c;
  font-size: 1.4rem;
}

.summary-divider {
  height: 1px;
  background: #efefe9;
  margin: 0.5rem 0;
}

/* Shipping Section */
.shipping-section {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
}

.shipping-header {
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed #efefe9;
}

.shipping-options {
  margin-top: 0.8rem;
}

.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  background: #f9f9f6;
  border: 1px solid #efefe9;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0;
}

.shipping-option:hover {
  border-color: #c9a46c;
  background: #fffdf9;
}

.shipping-option input {
  margin-right: 0.8rem;
  accent-color: #c9a46c;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.shipping-option input:checked + .shipping-details {
  /* Styling for checked state */
}

.shipping-option:has(input:checked) {
  border-color: #c9a46c;
  background: #fefcf8;
}

.shipping-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shipping-details strong {
  font-size: 0.9rem;
  color: #252523;
}

.shipping-details small {
  font-size: 0.7rem;
  color: #8a8a84;
}

.shipping-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: #c9a46c;
}

.currency-note {
  font-size: 0.7rem;
  color: #8a8a84;
  margin: 0.8rem 0;
  text-align: center;
}

.secure-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-align: center;
  color: #8a8a84;
}

.secure-note i {
  color: #c9a46c;
  margin-right: 0.3rem;
}

.checkout-btn {
  width: 100%;
  background: #232321;
  border: 1px solid #232321;
  color: white;
  padding: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
}

.checkout-btn:hover {
  background: #3b3b38;
}

.checkout-btn:disabled {
  background: #b5b5ad;
  border-color: #b5b5ad;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .cart-summary {
    position: static;
    margin-top: 1.5rem;
  }

  .shipping-option {
    padding: 0.6rem;
  }

  .shipping-details strong {
    font-size: 0.8rem;
  }
}
.checkout-btn {
  width: 100%;
  background: #232321;
  color: white;
  border: none;
  padding: 1.2rem;
  font-size: 1rem;
  letter-spacing: 2px;
  margin: 1.5rem 0 0;
  transition: 0.2s;
}
.checkout-btn:hover {
  background: #3f3f3b;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1.3;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 0.4s, filter 0.3s;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  filter: grayscale(0);
}
.footer {
  text-align: center;
  color: #7a7a75;
  padding: 2.5rem 5% 2rem;
  border-top: 1px solid #e5e5df;
}
.back-link {
  margin-bottom: 1.5rem;
  display: inline-block;
  cursor: pointer;
  border-bottom: 1px solid #a3a39b;
  font-size: 0.95rem;
}
.loading {
  text-align: center;
  padding: 4rem;
  font-size: 1.2rem;
  color: #5f5f5b;
}
.rating-stars {
  color: #f5b342;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-left: 8px;
}
.brand-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}
.brand-mini img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

/* === TREY newsletter signup — minimal, airy, brand-aligned === */

.newsletter-section {
  background-color: #ffffff; /* crisp white background */
  padding: 4rem 5%;
  border-bottom: 1px solid #eaeae4;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.newsletter-container {
  max-width: 900px;
  margin: 0 auto;
}

.newsletter-content {
  text-align: center;
}

.newsletter-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #252523;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.title-light {
  font-weight: 280;
  color: #6b6b66;
}

.newsletter-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: #4f4f4b;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #e0e0d8;
  display: inline-block;
  padding-bottom: 0.4rem;
}

/* form row — stacks on mobile, inline on larger */
.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

@media (min-width: 500px) {
  .form-row {
    flex-direction: row;
    gap: 0.8rem;
  }
}

.newsletter-input {
  flex: 1;
  background: #f9f9f6;
  border: 1px solid #dbdbd3;
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: #232321;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
  border-radius: 0; /* sharp edges — minimal */
}

.newsletter-input:focus {
  border-color: #232321;
  background: #ffffff;
}

.newsletter-input::placeholder {
  color: #b3b3ab;
  font-weight: 280;
  font-size: 1rem;
}

.newsletter-btn {
  background: #232321;
  border: 1px solid #232321;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-radius: 0;
}

.newsletter-btn:hover {
  background: #3d3d39;
  border-color: #3d3d39;
}

/* subtle footnote */
.form-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  color: #6f6f69;
  font-weight: 320;
  font-size: 0.9rem;
}

.dot-small {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #12d600;
  border-radius: 50%;
}

.footnote-text {
  letter-spacing: 0.2px;
}

/* selection color matches brand */
::selection {
  background: #dbdbd3;
  color: #1c1c1a;
}

/* === TREY contact section — minimalist, warm, professional === */

.contact-section {
  background-color: #f4f4f1; /* soft off-white */
  padding: 5rem 5%;
  border-top: 1px solid #e2e2da;
  border-bottom: 1px solid #e2e2da;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  color: #252523;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.title-light {
  font-weight: 280;
  color: #6b6b66;
}

.contact-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: #4f4f4b;
  border-bottom: 1px solid #d4d4ce;
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* grid layout — stacks on mobile, side by side on larger screens */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 4rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ----- form styles ----- */
.contact-form {
  background: #ffffff;
  padding: 2.5rem;
  border: 1px solid #eaeae4;
  transition: box-shadow 0.2s;
}

.contact-form:hover {
  box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.8rem;
}

.field-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #3b3b37;
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #cfcfc8;
  padding: 0.75rem 0.25rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: #232321;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
}

.form-input:focus {
  border-bottom-color: #232321;
  background: #fcfcf9;
}

.form-input::placeholder {
  color: #b3b3ab;
  font-weight: 280;
  font-size: 0.95rem;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.contact-submit-btn {
  background: #232321;
  border: none;
  color: white;
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 1rem;
  border: 1px solid #232321;
}

.contact-submit-btn:hover {
  background: #3d3d39;
}

/* ----- info side (clean & minimal) ----- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-card {
  border-bottom: 1px solid #dadad2;
  padding-bottom: 1.8rem;
}

.info-heading {
  font-size: 1.2rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2e2e2b;
  margin-bottom: 1.5rem;
}

.info-text {
  font-size: 1.2rem;
  font-weight: 300;
  color: #3e3e3a;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.info-text.address {
  margin-top: 1.2rem;
  font-size: 1rem;
  color: #5b5b56;
}

.studio-note {
  background: #edede9;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #dbdbd3;
}

.studio-note p {
  font-size: 1.1rem;
  font-weight: 330;
  color: #353531;
  line-height: 1.5;
}

.dot-pattern {
  display: block;
  width: 60px;
  height: 20px;
  background-image: radial-gradient(#6b6b64 2px, transparent 2px);
  background-size: 8px 8px;
  opacity: 0.6;
}

/* tiny extra polish */
::selection {
  background: #c9c9c0;
  color: #1c1c1a;
}

/* === TREY size selector - pure CSS, no logic === */
.trey-size-selector {
  margin: 2rem 0 1.5rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.size-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #4a4a46;
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.size-btn {
  min-width: 56px;
  height: 48px;
  padding: 0 1.2rem;
  background: transparent;
  border: 1px solid #d4d4ce;
  font-size: 1rem;
  font-weight: 350;
  color: #2e2e2b;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  border-radius: 0; /* sharp edges — minimal */
}

.size-btn:hover {
  border-color: #232321;
  background: #f2f2ef;
}

.size-btn.selected {
  background: #232321;
  border-color: #232321;
  color: white;
}

.size-btn:focus-visible {
  outline: 2px solid #c9a46c;
  outline-offset: 2px;
}

/* subtle animation */
.size-btn {
  position: relative;
  overflow: hidden;
}

.size-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #232321;
  transition: width 0.2s;
}

.size-btn:hover::after {
  width: 100%;
}

.size-btn.selected::after {
  display: none;
}

.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: #f9f9f6;
  border: 1px solid #eaeae4;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 2px solid #e2e2db;
  border-top-color: #232321;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-spinner p {
  color: #5f5f5b;
  font-size: 0.95rem;
  font-weight: 320;
  letter-spacing: 0.3px;
}

/* Disabled button state */
.add-to-cart-btn.disabled,
.add-to-cart-btn:disabled {
  background: #d4d4ce !important;
  border-color: #d4d4ce !important;
  color: #6f6f69 !important;
  cursor: not-allowed !important;
  opacity: 0.7;
  pointer-events: none;
}

/* Success animation for add-to-cart */
.add-to-cart-btn.success {
  background: #2b5e2b !important;
  border-color: #2b5e2b !important;
  animation: buttonPulse 0.5s ease;
}

@keyframes buttonPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
    background: #3b7a3b;
  }
  100% {
    transform: scale(1);
  }
}

/* Toast notification - minimal TREY style */
.trey-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #232321;
  color: white;
  padding: 1rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 350;
  letter-spacing: 0.3px;
  border-left: 4px solid #c9a46c;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.2s forwards;
  max-width: 320px;
  pointer-events: none;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateX(10px);
  }
}

/* Toast icon and message */
.trey-toast i {
  margin-right: 10px;
  color: #c9a46c;
}

.trey-toast span {
  line-height: 1.5;
}

/* Size selector enhancement */
.size-btn {
  /* your existing styles plus: */
  transition: all 0.2s ease;
}

.size-btn.selected {
  background: #232321;
  border-color: #232321;
  color: white;
  transform: scale(1.02);
}

/* Login reminder in detail page */
.login-reminder-badge {
  background: #f2f2ef;
  border-left: 4px solid #c9a46c;
  padding: 0.8rem 1.2rem;
  margin: 1rem 0 0.5rem;
  font-size: 0.9rem;
  color: #4a4a46;
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-reminder-badge i {
  color: #c9a46c;
  font-size: 1.1rem;
}

.login-reminder-badge a {
  color: #232321;
  text-decoration: underline;
  font-weight: 450;
  margin-left: 5px;
}

/* 
 TREY footer
 */

.trey-footer {
  background: #1a1a18;
  color: #e5e5e0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  margin-top: 4rem;
  border-top: 1px solid #2a2a28;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 5% 2rem;
}

/* Footer grid  */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* Brand column */
.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-weight: 280;
  color: #9a9a94;
}

.footer-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c9a46c;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  font-weight: 320;
  line-height: 1.5;
  color: #b5b5ad;
  margin-bottom: 1.5rem;
}

/* Social links */
.footer-social {
  display: flex;
  gap: 1.2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #2a2a28;
  color: #e5e5e0;
  border-radius: 0;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-link i {
  font-size: 1.1rem;
}

.social-link:hover {
  background: #c9a46c;
  color: #1a1a18;
  transform: translateY(-2px);
}

/* Footer columns */
.footer-column {
  min-width: 140px;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c9a46c;
  margin-bottom: 1.2rem;
  font-weight: 450;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #b5b5ad;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 320;
  transition: color 0.2s ease;
  position: relative;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a46c;
  transition: width 0.2s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Newsletter column */
.footer-newsletter {
  min-width: 240px;
}

.newsletter-text {
  font-size: 0.85rem;
  font-weight: 320;
  color: #b5b5ad;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.newsletter-form-footer {
  display: flex;
  border-bottom: 1px solid #3a3a38;
  transition: border-color 0.2s;
}

.newsletter-form-footer:hover {
  border-bottom-color: #c9a46c;
}

.newsletter-form-footer input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 0;
  font-size: 0.9rem;
  color: #ffffff;
  font-family: inherit;
  outline: none;
}

.newsletter-form-footer input::placeholder {
  color: #6a6a64;
}

.newsletter-form-footer button {
  background: transparent;
  border: none;
  color: #c9a46c;
  cursor: pointer;
  padding: 0.8rem 0.5rem;
  transition: transform 0.2s ease;
}

.newsletter-form-footer button:hover {
  transform: translateX(4px);
}

.newsletter-note {
  font-size: 0.7rem;
  color: #6a6a64;
  margin-top: 0.8rem;
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2a28;
  font-size: 0.85rem;
  color: #8a8a84;
}

.footer-copyright p {
  font-weight: 320;
  letter-spacing: 0.3px;
}

.footer-payment {
  display: flex;
  gap: 1.2rem;
}

.footer-payment i {
  font-size: 1.4rem;
  color: #8a8a84;
  transition: color 0.2s ease;
}

.footer-payment i:hover {
  color: #c9a46c;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-location i {
  color: #c9a46c;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    padding: 2rem 5% 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .footer-payment {
    justify-content: center;
  }

  .footer-location {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-column {
    text-align: center;
  }

  .footer-links a::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-form-footer {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ========================================
  contact form
 ======================================== */

.trey-contact-section {
  background: #fafaf8;
  padding: 5rem 5%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header styles */
.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a46c;
  background: rgba(201, 164, 108, 0.1);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.contact-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  color: #252523;
  margin-bottom: 1rem;
}

.title-accent {
  color: #c9a46c;
  font-weight: 450;
}

.contact-divider {
  width: 60px;
  height: 2px;
  background: #c9a46c;
  margin: 1.2rem auto;
}

.contact-subtitle {
  font-size: 1rem;
  font-weight: 320;
  color: #6f6f69;
  max-width: 600px;
  margin: 0 auto;
}

/* Form wrapper - 2 column layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 2.5rem;
}

/* Form styles */
.trey-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 0.2rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #4a4a46;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.required {
  color: #c9a46c;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 0.8rem;
  background: #ffffff;
  border: 1px solid #e2e2db;
  font-size: 1rem;
  font-family: inherit;
  color: #232321;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c9a46c;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Focus border effect */
.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a46c;
  transition: width 0.3s ease;
}

.form-group input:focus ~ .focus-border,
.form-group select:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
  width: 100%;
}

/* Checkbox styling */
.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 320;
  color: #4f4f4b;
  text-transform: none;
  letter-spacing: normal;
}

.checkbox-label input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1.5px solid #d4d4ce;
  background: #ffffff;
  position: relative;
  transition: all 0.2s;
}

.checkbox-label input:checked + .checkmark {
  background: #c9a46c;
  border-color: #c9a46c;
}

.checkbox-label input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.85rem;
  color: #5f5f5b;
}

/* Submit button */
.contact-submit {
  background: #232321;
  border: 1px solid #232321;
  color: white;
  padding: 1.1rem 1.8rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  margin-top: 1rem;
}

.contact-submit:hover {
  background: #3b3b38;
  border-color: #3b3b38;
  gap: 16px;
}

.contact-submit i {
  transition: transform 0.2s;
}

.contact-submit:hover i {
  transform: translateX(4px);
}

.form-note {
  font-size: 0.75rem;
  color: #8a8a84;
  margin-top: 0.5rem;
  text-align: center;
}

/* Contact info sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-card {
  padding: 1.5rem;
  background: #f9f9f6;
  border: 1px solid #efefe9;
  transition: all 0.2s ease;
}

.info-card:hover {
  border-color: #e2e2db;
  transform: translateY(-2px);
}

.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e2db;
  margin-bottom: 1rem;
}

.info-icon i {
  font-size: 1.2rem;
  color: #c9a46c;
}

.info-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.info-card a {
  display: block;
  color: #4f4f4b;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 320;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}

.info-card a:hover {
  color: #c9a46c;
}

.info-card p {
  color: #6f6f69;
  font-size: 0.9rem;
  font-weight: 320;
  line-height: 1.5;
}

.info-hours {
  font-size: 0.75rem;
  color: #8a8a84;
  margin-top: 0.3rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.map-link i {
  font-size: 0.7rem;
}

/* Social links in sidebar */
.social-card .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-card .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 1px solid #e2e2db;
  color: #4f4f4b;
  font-size: 1rem;
  transition: all 0.2s;
  margin: 0;
}

.social-card .social-links a:hover {
  background: #c9a46c;
  border-color: #c9a46c;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Response badge */
.response-badge {
  background: linear-gradient(135deg, #f9f9f6 0%, #f5f5f0 100%);
  text-align: center;
}

.badge-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.badge-content i {
  font-size: 1.2rem;
  color: #c9a46c;
}

.badge-content span {
  font-size: 0.8rem;
  color: #4f4f4b;
  line-height: 1.4;
  text-align: left;
}

.badge-content strong {
  color: #252523;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.8rem;
  }

  .contact-info-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .trey-contact-section {
    padding: 3rem 5%;
  }

  .contact-wrapper {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-info-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.8rem;
  }

  .contact-subtitle {
    font-size: 0.9rem;
  }
}

/* ========================================
 TREY shipping information section
 ======================================== */

.trey-shipping-section {
  background: #fafaf8;
  padding: 5rem 5%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.shipping-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header styles */
.shipping-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.shipping-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a46c;
  background: rgba(201, 164, 108, 0.1);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.shipping-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  color: #252523;
  margin-bottom: 1rem;
}

.title-accent {
  color: #c9a46c;
  font-weight: 450;
}

.shipping-divider {
  width: 60px;
  height: 2px;
  background: #c9a46c;
  margin: 1.2rem auto;
}

.shipping-subtitle {
  font-size: 1rem;
  font-weight: 320;
  color: #6f6f69;
  max-width: 650px;
  margin: 0 auto;
}

/* Shipping grid - 4 columns on desktop, responsive */
.shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Individual shipping cards */
.shipping-card {
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 2rem;
  transition: all 0.3s ease;
}

.shipping-card:hover {
  border-color: #d4d4ce;
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f6;
  border: 1px solid #e2e2db;
  margin-bottom: 1.5rem;
}

.card-icon i {
  font-size: 1.5rem;
  color: #c9a46c;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #efefe9;
  padding-bottom: 0.8rem;
}

/* Shipping methods */
.shipping-methods {
  margin-bottom: 1.5rem;
}

.method-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0eb;
}

.method-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.method-badge {
  font-size: 0.9rem;
  font-weight: 500;
  color: #252523;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-time {
  font-size: 0.75rem;
  color: #8a8a84;
}

.method-price {
  font-size: 1rem;
  font-weight: 450;
  color: #c9a46c;
}

.free-shipping {
  background: #f9f9f6;
  padding: 0.8rem;
  text-align: center;
  margin-top: 1rem;
  border: 1px solid #efefe9;
}

.free-shipping i {
  color: #c9a46c;
  margin-right: 0.5rem;
}

.free-shipping span {
  font-size: 0.85rem;
  font-weight: 350;
  color: #3b3b38;
}

/* Delivery zones */
.zones-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.zone-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0eb;
}

.zone-name {
  font-size: 0.95rem;
  font-weight: 400;
  color: #252523;
}

.zone-time {
  font-size: 0.85rem;
  font-weight: 320;
  color: #6f6f69;
}

/* Processing info */
.processing-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 320;
  color: #4f4f4b;
  line-height: 1.4;
}

.info-item i {
  color: #c9a46c;
  font-size: 1rem;
  width: 20px;
}

/* Shipping notes */
.shipping-notes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.shipping-notes li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 320;
  color: #4f4f4b;
}

.shipping-notes li i {
  color: #c9a46c;
  font-size: 1rem;
  width: 20px;
}

.shipping-notes li a {
  color: #c9a46c;
  text-decoration: none;
  border-bottom: 1px dotted #c9a46c;
}

.shipping-notes li a:hover {
  color: #252523;
  border-bottom-color: #252523;
}

.holiday-note {
  background: #f9f9f6;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #6f6f69;
  border-left: 3px solid #c9a46c;
}

.holiday-note i {
  color: #c9a46c;
  font-size: 0.9rem;
}

/* Shipping footer badges */
.shipping-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0 2rem;
  padding: 2rem 0;
  border-top: 1px solid #eaeae4;
  border-bottom: 1px solid #eaeae4;
}

.policy-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4f4f4b;
  font-weight: 400;
}

.policy-badge i {
  color: #c9a46c;
  font-size: 1rem;
}

/* Disclaimer */
.disclaimer {
  text-align: center;
  margin-top: 2rem;
}

.disclaimer p {
  font-size: 0.75rem;
  color: #8a8a84;
  font-weight: 320;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .trey-shipping-section {
    padding: 3rem 5%;
  }

  .shipping-grid {
    gap: 1.5rem;
  }

  .shipping-card {
    padding: 1.5rem;
  }

  .shipping-footer {
    gap: 1.2rem;
    padding: 1.5rem 0;
  }

  .policy-badge {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .shipping-title {
    font-size: 1.8rem;
  }

  .shipping-subtitle {
    font-size: 0.9rem;
  }

  .shipping-footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .method-item {
    flex-direction: column;
    gap: 0.3rem;
  }

  .method-price {
    align-self: flex-start;
  }

  .zone-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}

/* ========================================
 TREY returns section
 ======================================== */

.trey-returns-section {
  background: #fafaf8;
  padding: 5rem 5%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.returns-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header styles */
.returns-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.returns-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a46c;
  background: rgba(201, 164, 108, 0.1);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.returns-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  color: #252523;
  margin-bottom: 1rem;
}

.title-accent {
  color: #c9a46c;
  font-weight: 450;
}

.returns-divider {
  width: 60px;
  height: 2px;
  background: #c9a46c;
  margin: 1.2rem auto;
}

.returns-subtitle {
  font-size: 1rem;
  font-weight: 320;
  color: #6f6f69;
  max-width: 650px;
  margin: 0 auto;
}

/* Returns grid */
.returns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Individual cards */
.returns-card {
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 2rem;
  transition: all 0.3s ease;
}

.returns-card:hover {
  border-color: #d4d4ce;
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f6;
  border: 1px solid #e2e2db;
  margin-bottom: 1.5rem;
}

.card-icon i {
  font-size: 1.5rem;
  color: #c9a46c;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  margin-bottom: 1rem;
}

.card-description {
  font-size: 0.95rem;
  font-weight: 320;
  color: #4f4f4b;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Policy highlights */
.policy-highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  font-weight: 320;
  color: #4f4f4b;
}

.policy-highlight i {
  color: #c9a46c;
  font-size: 1rem;
  width: 20px;
}

/* Exclusions list */
.exclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.exclusions-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 320;
  color: #6f6f69;
}

.exclusions-list li i {
  color: #c9a46c;
  font-size: 0.9rem;
  width: 20px;
}

/* Steps list */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  font-size: 1.2rem;
  font-weight: 500;
  color: #c9a46c;
  background: #f9f9f6;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e2db;
}

.step-content h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #252523;
  margin-bottom: 0.2rem;
}

.step-content p {
  font-size: 0.85rem;
  font-weight: 320;
  color: #6f6f69;
  line-height: 1.4;
}

.step-content a {
  color: #c9a46c;
  text-decoration: none;
}

.step-content a:hover {
  text-decoration: underline;
}

/* Cost details */
.cost-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0eb;
}

.cost-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #252523;
}

.cost-value {
  font-size: 0.9rem;
  font-weight: 320;
  color: #c9a46c;
}

.cost-divider {
  height: 1px;
  background: #efefe9;
  margin: 0.5rem 0;
}

.timing-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #6f6f69;
  padding-top: 0.5rem;
}

.timing-note i {
  color: #c9a46c;
  font-size: 0.9rem;
}

/* Exchange section */
.exchange-section {
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.exchange-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.exchange-header i {
  font-size: 1.5rem;
  color: #c9a46c;
}

.exchange-header h3 {
  font-size: 1.2rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  margin: 0;
}

.exchange-content p {
  font-size: 0.95rem;
  font-weight: 320;
  color: #4f4f4b;
  margin-bottom: 1.2rem;
}

.exchange-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.exchange-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 320;
  color: #6f6f69;
}

.exchange-features li i {
  color: #c9a46c;
  font-size: 0.9rem;
}

.exchange-features li a {
  color: #c9a46c;
  text-decoration: none;
}

.exchange-features li a:hover {
  text-decoration: underline;
}

/* Returns footer */
.returns-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid #eaeae4;
  border-bottom: 1px solid #eaeae4;
  margin-bottom: 2rem;
}

.contact-support {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-support i {
  font-size: 2rem;
  color: #c9a46c;
}

.support-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.support-details strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: #252523;
}

.support-details span {
  font-size: 0.8rem;
  font-weight: 320;
  color: #6f6f69;
}

.support-details a {
  font-size: 0.85rem;
  color: #c9a46c;
  text-decoration: none;
}

.support-details a:hover {
  text-decoration: underline;
}

.support-hours {
  font-size: 0.7rem !important;
  color: #8a8a84 !important;
}

.faq-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.faq-link i {
  font-size: 1rem;
  color: #c9a46c;
}

.faq-link a {
  font-size: 0.9rem;
  color: #4f4f4b;
  text-decoration: none;
  border-bottom: 1px dotted #c9a46c;
}

.faq-link a:hover {
  color: #c9a46c;
}

/* Disclaimer */
.disclaimer {
  text-align: center;
}

.disclaimer p {
  font-size: 0.75rem;
  color: #8a8a84;
  font-weight: 320;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .trey-returns-section {
    padding: 3rem 5%;
  }

  .returns-grid {
    gap: 1.5rem;
  }

  .returns-card {
    padding: 1.5rem;
  }

  .returns-footer {
    flex-direction: column;
    text-align: center;
  }

  .contact-support {
    flex-direction: column;
    text-align: center;
  }

  .exchange-features {
    flex-direction: column;
    gap: 0.8rem;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cost-item {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .returns-title {
    font-size: 1.8rem;
  }

  .returns-subtitle {
    font-size: 0.9rem;
  }

  .exchange-header {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
 TREY order tracking section
 ======================================== */

.trey-tracking-section {
  background: #fafaf8;
  padding: 5rem 5%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.tracking-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header styles */
.tracking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tracking-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a46c;
  background: rgba(201, 164, 108, 0.1);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.tracking-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  color: #252523;
  margin-bottom: 1rem;
}

.title-accent {
  color: #c9a46c;
  font-weight: 450;
}

.tracking-divider {
  width: 60px;
  height: 2px;
  background: #c9a46c;
  margin: 1.2rem auto;
}

.tracking-subtitle {
  font-size: 1rem;
  font-weight: 320;
  color: #6f6f69;
  max-width: 650px;
  margin: 0 auto;
}

/* Tracking form */
.tracking-form-wrapper {
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.trey-tracking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1.5rem;
  align-items: flex-end;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #4a4a46;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.required {
  color: #c9a46c;
  margin-left: 2px;
}

.form-group input {
  width: 100%;
  padding: 0.9rem 0.8rem;
  background: #ffffff;
  border: 1px solid #e2e2db;
  font-size: 1rem;
  font-family: inherit;
  color: #232321;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus {
  border-color: #c9a46c;
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a46c;
  transition: width 0.3s ease;
}

.form-group input:focus ~ .focus-border {
  width: 100%;
}

.submit-group {
  margin-bottom: 0;
}

.tracking-submit {
  background: #232321;
  border: 1px solid #232321;
  color: white;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.tracking-submit:hover {
  background: #3b3b38;
  border-color: #3b3b38;
  gap: 14px;
}

.tracking-submit i {
  transition: transform 0.2s;
}

.tracking-submit:hover i {
  transform: translateX(4px);
}

.form-note {
  font-size: 0.75rem;
  color: #8a8a84;
  margin-top: 1rem;
  text-align: center;
}

.form-note a {
  color: #c9a46c;
  text-decoration: none;
  border-bottom: 1px dotted #c9a46c;
}

.form-note a:hover {
  color: #252523;
}

/* Tracking result */
.tracking-result {
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 2rem;
  margin-bottom: 3rem;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #efefe9;
}

.result-order h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6f6f69;
  margin-bottom: 0.3rem;
}

.result-order p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #252523;
}

.result-status .status-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.status-badge.shipped {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-badge.processing {
  background: #fff3e0;
  color: #ed6c02;
}

.status-badge.delivered {
  background: #e3f2fd;
  color: #1565c0;
}

/* Timeline */
.timeline {
  margin: 2rem 0;
}

.timeline-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -20px;
  width: 2px;
  background: #e2e2db;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background: #f9f9f6;
  border: 1px solid #e2e2db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: white;
}

.timeline-icon.completed {
  background: #c9a46c;
  border-color: #c9a46c;
}

.timeline-icon.completed i {
  color: white;
}

.timeline-icon i {
  color: #c9a46c;
  font-size: 1rem;
}

.timeline-content h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #252523;
  margin-bottom: 0.2rem;
}

.timeline-content p {
  font-size: 0.8rem;
  color: #8a8a84;
}

/* Tracking info grid */
.tracking-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 1.8rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: #d4d4ce;
  transform: translateY(-2px);
}

.card-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f6;
  border: 1px solid #e2e2db;
  margin-bottom: 1.2rem;
}

.card-icon i {
  font-size: 1.3rem;
  color: #c9a46c;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  margin-bottom: 0.8rem;
}

.info-card p {
  font-size: 0.85rem;
  font-weight: 320;
  color: #6f6f69;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.partner-logos {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.partner-logos span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #c9a46c;
  background: rgba(201, 164, 108, 0.1);
  padding: 0.2rem 0.6rem;
}

.times-list,
.updates-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.times-list li,
.updates-list li {
  font-size: 0.85rem;
  font-weight: 320;
  color: #4f4f4b;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.times-list li span {
  font-weight: 450;
  color: #252523;
  min-width: 100px;
}

.updates-list li i {
  color: #c9a46c;
  width: 20px;
  font-size: 0.8rem;
}

.help-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #c9a46c;
  text-decoration: none;
  margin-top: 0.5rem;
}

.help-link:hover {
  gap: 0.6rem;
  color: #252523;
}

/* FAQ section */
.tracking-faq {
  margin-top: 2rem;
}

.faq-title {
  font-size: 1.2rem;
  font-weight: 450;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;
}

.faq-item {
  border: 1px solid #eaeae4;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 450;
  color: #252523;
  text-align: left;
  transition: all 0.2s;
}

.faq-question:hover {
  background: #f9f9f6;
}

.faq-question i {
  color: #c9a46c;
  transition: transform 0.2s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 320;
  color: #6f6f69;
  line-height: 1.5;
  border-top: 1px solid #efefe9;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .trey-tracking-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .submit-group {
    margin-top: 0.5rem;
  }

  .tracking-form-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .trey-tracking-section {
    padding: 3rem 5%;
  }

  .tracking-info-grid {
    gap: 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .result-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .tracking-title {
    font-size: 1.8rem;
  }

  .times-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-step:not(:last-child)::before {
    left: 19px;
    top: 50px;
  }
}

/* ========================================
 TREY size guide section
 ======================================== */

.trey-sizeguide-section {
  background: #fafaf8;
  padding: 5rem 5%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.sizeguide-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header styles */
.sizeguide-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sizeguide-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a46c;
  background: rgba(201, 164, 108, 0.1);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.sizeguide-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  color: #252523;
  margin-bottom: 1rem;
}

.title-accent {
  color: #c9a46c;
  font-weight: 450;
}

.sizeguide-divider {
  width: 60px;
  height: 2px;
  background: #c9a46c;
  margin: 1.2rem auto;
}

.sizeguide-subtitle {
  font-size: 1rem;
  font-weight: 320;
  color: #6f6f69;
  max-width: 650px;
  margin: 0 auto;
}

/* Category tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cat-btn {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid #e2e2db;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4f4f4b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cat-btn:hover {
  border-color: #c9a46c;
  color: #c9a46c;
}

.cat-btn.active {
  background: #232321;
  border-color: #232321;
  color: #ffffff;
}

/* Size chart */
.size-chart {
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 2rem;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chart-header {
  margin-bottom: 1.5rem;
}

.chart-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  margin-bottom: 0.5rem;
}

.chart-note {
  font-size: 0.8rem;
  font-weight: 320;
  color: #8a8a84;
}

.table-responsive {
  overflow-x: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.size-table th,
.size-table td {
  padding: 1rem 0.8rem;
  text-align: center;
  border-bottom: 1px solid #efefe9;
}

.size-table th {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #252523;
  background: #f9f9f6;
}

.size-table td {
  font-weight: 320;
  color: #4f4f4b;
}

.size-table tr:hover td {
  background: #fafaf8;
}

.size-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f9f9f6;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #6f6f69;
}

.size-note i {
  color: #c9a46c;
  font-size: 1rem;
}

/* Accessories grid */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.accessory-card {
  background: #f9f9f6;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}

.accessory-card:hover {
  background: #ffffff;
  border: 1px solid #e2e2db;
}

.accessory-card i {
  font-size: 2rem;
  color: #c9a46c;
  margin-bottom: 1rem;
}

.accessory-card h4 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  margin-bottom: 1.2rem;
}

.size-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #e2e2db;
  font-size: 0.85rem;
}

.size-row span:first-child {
  font-weight: 500;
  color: #252523;
}

.size-row span:last-child {
  color: #6f6f69;
}

.accessory-note {
  font-size: 0.7rem;
  color: #8a8a84;
  margin-top: 1rem;
  text-align: center;
}

/* How to measure guide */
.measure-guide {
  margin: 2.5rem 0;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #eaeae4;
}

.guide-title {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  text-align: center;
  margin-bottom: 2rem;
}

.measure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.measure-item {
  text-align: center;
}

.measure-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: #f9f9f6;
  border: 1px solid #e2e2db;
  display: flex;
  align-items: center;
  justify-content: center;
}

.measure-icon i {
  font-size: 1.5rem;
  color: #c9a46c;
}

.measure-item h4 {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  margin-bottom: 0.5rem;
}

.measure-item p {
  font-size: 0.8rem;
  font-weight: 320;
  color: #6f6f69;
  line-height: 1.4;
}

/* Size tips */
.size-tips {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.8rem;
  background: #ffffff;
  border: 1px solid #eaeae4;
}

.tips-content {
  display: flex;
  gap: 1.2rem;
  flex: 2;
}

.tips-content i {
  font-size: 1.8rem;
  color: #c9a46c;
}

.tips-text h4 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #252523;
  margin-bottom: 0.8rem;
}

.tips-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-text li {
  font-size: 0.85rem;
  font-weight: 320;
  color: #4f4f4b;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.tips-text li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #c9a46c;
}

.help-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #f9f9f6;
  border-left: 3px solid #c9a46c;
  flex: 1;
}

.help-contact i {
  font-size: 1.5rem;
  color: #c9a46c;
}

.help-contact div {
  display: flex;
  flex-direction: column;
}

.help-contact span {
  font-size: 0.75rem;
  color: #8a8a84;
}

.help-contact a {
  font-size: 0.9rem;
  font-weight: 450;
  color: #c9a46c;
  text-decoration: none;
}

.help-contact a:hover {
  text-decoration: underline;
}

/* Disclaimer */
.disclaimer {
  text-align: center;
  margin-top: 2rem;
}

.disclaimer p {
  font-size: 0.7rem;
  color: #8a8a84;
  font-weight: 320;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .trey-sizeguide-section {
    padding: 3rem 5%;
  }

  .size-chart {
    padding: 1.5rem;
  }

  .size-table th,
  .size-table td {
    padding: 0.8rem 0.5rem;
    font-size: 0.8rem;
  }

  .measure-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .size-tips {
    flex-direction: column;
  }

  .tips-content {
    flex-direction: column;
    text-align: center;
  }

  .help-contact {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sizeguide-title {
    font-size: 1.8rem;
  }

  .measure-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .cat-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .accessories-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
 TREY privacy policy section
 ======================================== */

.trey-privacy-section {
  background: #fafaf8;
  padding: 5rem 5%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.privacy-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header styles */
.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.privacy-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a46c;
  background: rgba(201, 164, 108, 0.1);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.privacy-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  color: #252523;
  margin-bottom: 1rem;
}

.title-accent {
  color: #c9a46c;
  font-weight: 450;
}

.privacy-divider {
  width: 60px;
  height: 2px;
  background: #c9a46c;
  margin: 1.2rem auto;
}

.privacy-subtitle {
  font-size: 0.9rem;
  font-weight: 320;
  color: #8a8a84;
}

/* Content layout */
.privacy-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 2.5rem;
}

/* Sidebar navigation */
.privacy-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #4f4f4b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}

.nav-link:hover {
  color: #c9a46c;
  border-left-color: #c9a46c;
  background: #f9f9f6;
}

.nav-link.active {
  color: #c9a46c;
  border-left-color: #c9a46c;
  font-weight: 450;
}

/* Main content */
.privacy-main {
  overflow-x: auto;
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #efefe9;
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h3 {
  font-size: 1.3rem;
  font-weight: 450;
  color: #252523;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.policy-section p {
  font-size: 0.95rem;
  font-weight: 320;
  color: #4f4f4b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.info-card {
  background: #f9f9f6;
  padding: 1.2rem;
  border: 1px solid #efefe9;
  transition: all 0.2s;
}

.info-card:hover {
  border-color: #e2e2db;
}

.info-card i {
  font-size: 1.5rem;
  color: #c9a46c;
  margin-bottom: 0.8rem;
}

.info-card h4 {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #252523;
  margin-bottom: 0.8rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li {
  font-size: 0.8rem;
  font-weight: 320;
  color: #6f6f69;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.info-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #c9a46c;
}

/* Lists */
.usage-list,
.sharing-list,
.cookies-list,
.security-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.usage-list li,
.cookies-list li,
.security-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 320;
  color: #4f4f4b;
}

.usage-list li i,
.cookies-list li i,
.security-list li i {
  color: #c9a46c;
  width: 20px;
}

.sharing-list li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 320;
  color: #4f4f4b;
  border-bottom: 1px solid #efefe9;
}

.sharing-list li strong {
  color: #252523;
  font-weight: 500;
}

/* Highlight box */
.highlight-box {
  background: #f9f9f6;
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-left: 3px solid #c9a46c;
  margin: 1.5rem 0;
}

.highlight-box i {
  color: #c9a46c;
  font-size: 1.2rem;
}

.highlight-box p {
  margin: 0;
  font-size: 0.85rem;
}

/* Rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.right-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: #f9f9f6;
  font-size: 0.85rem;
  font-weight: 320;
  color: #4f4f4b;
}

.right-item i {
  color: #c9a46c;
  font-size: 1rem;
  width: 24px;
}

.rights-note {
  font-size: 0.85rem;
  padding: 1rem;
  background: #f9f9f6;
}

.rights-note a {
  color: #c9a46c;
  text-decoration: none;
  border-bottom: 1px dotted #c9a46c;
}

.rights-note a:hover {
  color: #252523;
}

/* Security note */
.security-note {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  background: #fff9ef;
  border: 1px solid #f0e5d5;
  margin-top: 1rem;
}

.security-note i {
  color: #c9a46c;
  font-size: 1rem;
}

.security-note p {
  margin: 0;
  font-size: 0.8rem;
}

/* Cookie note */
.cookie-note {
  font-size: 0.85rem;
  padding: 1rem;
  background: #f9f9f6;
  margin-top: 1rem;
}

/* Contact section */
.contact-section {
  background: #f9f9f6;
  padding: 2rem;
  margin-top: 1rem;
  border: 1px solid #efefe9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: #ffffff;
  border: 1px solid #e2e2db;
}

.contact-item i {
  color: #c9a46c;
  font-size: 1.2rem;
  width: 24px;
}

.contact-item a {
  color: #c9a46c;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item span {
  font-size: 0.9rem;
  color: #4f4f4b;
}

/* Policy footer */
.policy-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #efefe9;
  text-align: center;
  font-size: 0.8rem;
  color: #8a8a84;
}

/* Responsive */
@media (max-width: 900px) {
  .privacy-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .privacy-sidebar {
    position: static;
    margin-bottom: 1rem;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 1rem;
  }

  .nav-link:hover,
  .nav-link.active {
    border-left-color: transparent;
    border-bottom-color: #c9a46c;
  }
}

@media (max-width: 768px) {
  .trey-privacy-section {
    padding: 3rem 5%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    gap: 0.8rem;
  }

  .policy-section h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .privacy-title {
    font-size: 1.8rem;
  }

  .privacy-content {
    padding: 1.2rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
 TREY terms of service section
 ======================================== */

.trey-terms-section {
  background: #fafaf8;
  padding: 5rem 5%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.terms-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header styles */
.terms-header {
  text-align: center;
  margin-bottom: 3rem;
}

.terms-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a46c;
  background: rgba(201, 164, 108, 0.1);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.terms-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 380;
  letter-spacing: -0.02em;
  color: #252523;
  margin-bottom: 1rem;
}

.title-accent {
  color: #c9a46c;
  font-weight: 450;
}

.terms-divider {
  width: 60px;
  height: 2px;
  background: #c9a46c;
  margin: 1.2rem auto;
}

.terms-subtitle {
  font-size: 0.9rem;
  font-weight: 320;
  color: #8a8a84;
}

/* Content layout */
.terms-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  background: #ffffff;
  border: 1px solid #eaeae4;
  padding: 2.5rem;
}

/* Sidebar navigation */
.terms-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.nav-link {
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #4f4f4b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}

.nav-link:hover {
  color: #c9a46c;
  border-left-color: #c9a46c;
  background: #f9f9f6;
}

.nav-link.active {
  color: #c9a46c;
  border-left-color: #c9a46c;
  font-weight: 450;
}

/* Main content */
.terms-main {
  overflow-x: auto;
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #efefe9;
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h3 {
  font-size: 1.3rem;
  font-weight: 450;
  color: #252523;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.policy-section p {
  font-size: 0.95rem;
  font-weight: 320;
  color: #4f4f4b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Standard list */
.standard-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.standard-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 320;
  color: #4f4f4b;
}

.standard-list li i {
  color: #c9a46c;
  width: 20px;
  margin-top: 0.2rem;
}

/* Info cards */
.info-card {
  background: #f9f9f6;
  padding: 1.2rem;
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
  border-left: 3px solid #c9a46c;
}

.info-card.order-info i {
  font-size: 1.5rem;
  color: #c9a46c;
}

.info-card h4 {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #252523;
  margin-bottom: 0.3rem;
}

.info-card p {
  margin: 0;
  font-size: 0.85rem;
}

/* Pricing list */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.pricing-list li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  font-weight: 320;
  color: #4f4f4b;
  border-bottom: 1px solid #efefe9;
}

.pricing-list li strong {
  color: #252523;
  font-weight: 500;
  display: inline-block;
  min-width: 110px;
}

/* Shipping info grid */
.shipping-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.shipping-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f9f9f6;
}

.shipping-item i {
  font-size: 1.5rem;
  color: #c9a46c;
}

.shipping-item h4 {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #252523;
  margin-bottom: 0.3rem;
}

.shipping-item p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Highlight box */
.highlight-box {
  background: #f9f9f6;
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-left: 3px solid #c9a46c;
  margin: 1.5rem 0;
}

.highlight-box.warning {
  background: #fff9ef;
  border-left-color: #e6a017;
}

.highlight-box i {
  color: #c9a46c;
  font-size: 1.2rem;
}

.highlight-box.warning i {
  color: #e6a017;
}

.highlight-box p {
  margin: 0;
  font-size: 0.85rem;
}

/* Liability note */
.liability-note {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f9f9f6;
  margin: 1rem 0;
}

.liability-note i {
  color: #c9a46c;
  font-size: 1.2rem;
}

.liability-note p {
  margin: 0;
  font-size: 0.85rem;
}

.small-note {
  font-size: 0.8rem !important;
  color: #8a8a84 !important;
  font-style: italic;
}

/* Inline link */
.inline-link {
  color: #c9a46c;
  text-decoration: none;
  border-bottom: 1px dotted #c9a46c;
}

.inline-link:hover {
  color: #252523;
}

/* Contact section */
.contact-section {
  background: #f9f9f6;
  padding: 2rem;
  margin-top: 1rem;
  border: 1px solid #efefe9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: #ffffff;
  border: 1px solid #e2e2db;
}

.contact-item i {
  color: #c9a46c;
  font-size: 1.2rem;
  width: 24px;
}

.contact-item a {
  color: #c9a46c;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item span {
  font-size: 0.9rem;
  color: #4f4f4b;
}

/* Terms footer */
.terms-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #efefe9;
  text-align: center;
  font-size: 0.8rem;
  color: #8a8a84;
}

/* Responsive */
@media (max-width: 900px) {
  .terms-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .terms-sidebar {
    position: static;
    margin-bottom: 1rem;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 1rem;
  }

  .nav-link:hover,
  .nav-link.active {
    border-left-color: transparent;
    border-bottom-color: #c9a46c;
  }
}

@media (max-width: 768px) {
  .trey-terms-section {
    padding: 3rem 5%;
  }

  .shipping-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    gap: 0.8rem;
  }

  .policy-section h3 {
    font-size: 1.2rem;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
  }

  .shipping-item {
    flex-direction: column;
    text-align: center;
  }

  .highlight-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .terms-title {
    font-size: 1.8rem;
  }

  .terms-content {
    padding: 1.2rem;
  }

  .pricing-list li strong {
    display: block;
    margin-bottom: 0.2rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   Newsletter Form - Professional Animations
   ======================================== */

/* Notification container */
.newsletter-notification {
  margin-top: 1rem;
  min-height: 60px;
}

/* Message reveal animation */
.message-reveal {
  padding: 0.8rem 1rem;
  margin: 0.5rem 0;
  border-radius: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  font-size: 0.85rem;
  font-weight: 350;
}

.message-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.message-reveal.fade-out {
  opacity: 0;
  transform: translateY(-5px);
}

/* Success message style */
.message-reveal.success {
  background: #e8f5e9;
  border-left: 3px solid #2e7d32;
  color: #1b5e20;
}

.message-reveal.success .message-icon {
  color: #2e7d32;
}

/* Error message style */
.message-reveal.error {
  background: #ffebee;
  border-left: 3px solid #c62828;
  color: #b71c1c;
}

.message-reveal.error .message-icon {
  color: #c62828;
}

.message-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.message-icon {
  font-size: 1rem;
  font-weight: 600;
  width: 20px;
  text-align: center;
}

.message-text {
  flex: 1;
  line-height: 1.4;
}

/* Mini spinner for button loading state */
.spinner-mini {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Button loading state */
.newsletter-btn.loading {
  opacity: 0.8;
  cursor: wait;
  pointer-events: none;
}

.newsletter-btn.loading span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Input validation styling */
.newsletter-input {
  transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter-input.valid {
  border-color: #2e7d32;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.newsletter-input.invalid {
  border-color: #c62828;
  box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.1);
}

/* Optional: Success checkmark animation */
@keyframes checkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.message-reveal.success .message-icon {
  animation: checkPop 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

/* Optional: Shake animation for error */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}

.message-reveal.error {
  animation: shake 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-message {
  animation: slideDown 0.3s ease;
}

/* Delivery Modal Styles */
.delivery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.delivery-modal-content {
  background: #ffffff;
  max-width: 650px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  border: 1px solid #eaeae4;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delivery-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #efefe9;
}

.delivery-modal-header h3 {
  font-size: 1.3rem;
  font-weight: 380;
  color: #252523;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #8a8a84;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #232321;
}

.form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.delivery-modal .form-group {
  margin-bottom: 1.2rem;
}

.delivery-modal label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #4a4a46;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.delivery-modal input,
.delivery-modal select,
.delivery-modal textarea {
  width: 100%;
  padding: 0.8rem;
  background: #ffffff;
  border: 1px solid #e2e2db;
  font-size: 0.95rem;
  font-family: inherit;
  color: #232321;
  transition: border-color 0.2s;
}

.delivery-modal input:focus,
.delivery-modal select:focus,
.delivery-modal textarea:focus {
  outline: none;
  border-color: #c9a46c;
}

.required {
  color: #c9a46c;
  margin-left: 2px;
}

.delivery-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #efefe9;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #e2e2db;
  color: #4f4f4b;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-secondary:hover {
  border-color: #232321;
  color: #232321;
}

.btn-primary {
  background: #232321;
  border: 1px solid #232321;
  color: white;
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: #3b3b38;
  border-color: #3b3b38;
}

@media (max-width: 600px) {
  .form-row-group {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .delivery-modal-content {
    padding: 1.5rem;
  }
}
