/* 1. Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fcf8f5;
  color: #1a1a1a;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}
h2 {
  color: #072e51;
}
p {
  color: #fcf8f5;
}

/* 2. Hero Header Container */
.hero-header {
  position: relative;
  width: 100%;
  height: 85vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("./img/shop-exterior.webp") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #fcf8f5;
  overflow: hidden;
}

.mobile-header-overlay {
  display: none;
}

/* 3. The "#FCF8F5 Shutter" Fade Effect */
.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fcf8f5;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

/* Trigger the fade on hover */
.hero-header:has(.hover-trigger-area:hover)::before {
  opacity: 1;
}

/* 4. Hover Trigger Container */
.hover-trigger-area {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* 5. Social Icons (Top Right - Minimalist) */
.social-links {
  position: absolute;
  top: 20px;
  right: 25px;
  display: flex;
  gap: 20px;
  z-index: 20;
}

.social-icon {
  background: none;
  border: none;
  color: #fcf8f5;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.4s ease;
}

/* 6. Brand Logo */
.brand-container {
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo {
  height: 180px;
  width: auto;
  mix-blend-mode: difference;
  pointer-events: none;
  object-fit: contain;
}

/* 7. Full Width Navbar (Ends at 50% line) */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 50px;
  background: transparent;
  position: absolute;
  bottom: 0;
  transition: 0.4s ease;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: #fcf8f5;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: "Space Grotesk", sans-serif; /* Sub-title Font */
  text-decoration: none;
  color: #fcf8f5;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  transition: 0.4s ease;
}

/* Underline Animation */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fcf8f5;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active::after {
  width: 100%;
  transform: scaleX(1);
  background-color: #e00b65; /* Pink underline */
}

/* 8. HOVER STATE: COLOR FLIPS */
.hover-trigger-area:hover .nav-links a,
.hover-trigger-area:hover .social-icon,
.hover-trigger-area:hover .search-btn,
.hover-trigger-area:hover .cart-wrapper {
  color: #072e51;
}

.hover-trigger-area:hover .social-icon:hover {
  color: #e00b65;
}

.hover-trigger-area:hover .nav-links a::after {
  background-color: #e00b65;
}

.hover-trigger-area:hover .cart-count {
  background: #e00b65;
  color: #fcf8f5;
}

/* 9. Hero CTA Buttons (In the bottom half) */
.hero-ctas {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  z-index: 5;
}

.hero-ctas a {
  text-decoration: none;
}

button[class^="btn-"] {
  padding: 12px 35px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.4s;
}

.btn-primary {
  background: #fcf8f5;
  color: #e00b65;
  border: 1px solid #fcf8f5;
}
.btn-primary:hover {
  background: #e00b65;
  color: #fcf8f5;
  border: 1px solid #e00b65;
}

.btn-secondary {
  background: transparent;
  color: #fcf8f5;
  border: 1px solid #fcf8f5;
}
.btn-secondary:hover {
  background: #fcf8f5;
  color: #072e51;
}

/* Icons Styles */
.nav-left,
.nav-right {
  z-index: 10;
}
.search-btn,
.cart-wrapper,
.cart-count {
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.4s;
  color: #fcf8f5;
  display: none !important;
}
.search-btn {
  background: none;
  border: none;
}
.cart-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: #e00b65;
  color: #fcf8f5;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
}
.hero-text {
  text-align: center;
  margin-top: 20px;
  z-index: 5;
}

.welcome-msg {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #fcf8f5;
}

.catchy-phrase {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fcf8f5;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

/************ Brand Intro Section ***********/
.brand-intro-section {
  background-color: #fcf8f5;
  padding: 40px 0;
  margin: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #e00b65;
}

.about-container {
  max-width: 650px;
  text-align: center;
  margin-bottom: 40px;
}

.about-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 10px;
  line-height: 1;
  color: #072e51;
}

.about-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #1a1a1a;
}

/************ Slider Logic ***********/
.brand-slider {
  --brand-track-width: 280px;
  --brand-track-padding: 40px;
  --brand-logo-width: 200px;
  --brand-logo-height: 113px;
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;

  overflow: hidden;
  padding-bottom: 20px;
  display: flex;
}

.slider-track {
  display: flex;
  width: calc(var(--brand-track-width) * 14);
  animation: scroll 25s linear infinite;
}

.brand-item {
  width: var(--brand-track-width);
  padding: 0 var(--brand-track-padding);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.brand-item img {
  max-width: var(--brand-logo-width);
  height: var(--brand-logo-height);
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(var(--brand-track-width) * -7));
  }
}

/************ Product Carousel Section ***********/
.product-carousel-section {
  padding: 60px 0;
  margin: 0 40px;
  border-bottom: 1px solid #e00b65;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.carousel-controls {
  display: flex;
  gap: 15px;
}

.control-btn {
  background: none;
  border: 1px solid #072e51;
  color: #072e51;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
}

.control-btn:hover {
  background-color: #072e51;
  color: #fcf8f5;
}

/************ The Draggable Container ***********/
.carousel-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 20px;
  -webkit-user-drag: none;

  /* FIX: Start at 40px, but scroll to edges */
  width: calc(100% + 80px);
  margin-left: -40px;
  padding-left: 40px; /* This aligns the first card with your 40px grid */
  padding-right: 40px; /* Space at the end of the scroll */

  cursor: pointer; /* Shows user they can drag */
  user-select: none; /* Prevents selecting text while dragging */
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-container::-webkit-scrollbar {
  display: none; /* Hides scrollbar on Chrome/Safari */
}

/************ The Product Card ***********/
.product-card {
  flex: 0 0 calc(25% - 15px); /* Shows exactly 4 cards (with gap) */
  min-width: 280px;
  background: white;
  padding: 15px;
  scroll-snap-align: start;
  border: 1px solid transparent; /* Prepared for hover */
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border: 1px solid #e00b65; /* Your Thin Pink Line */
}

.product-img {
  width: 100%;
  height: 300px;
  background-color: #fcf8f5;
  margin-bottom: 15px;
  overflow: hidden;
  pointer-events: none;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-info {
  text-align: left;
}

.p-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #e00b65; /* Pink brand name */
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.p-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #072e51;
  margin-bottom: 10px;
}

.p-price {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
}

.price-old,
.price-sale {
  display: block;
}

.price-old {
  color: #666;
  font-size: 0.92em;
  text-decoration: line-through;
  text-decoration-color: #e00b65;
  text-decoration-thickness: 1px;
}

.price-sale {
  color: #e00b65;
  margin-top: 4px;
}

/* Shop More Card Styling */
.shop-more-card {
  position: relative;
  justify-content: center;
  align-items: center;
  background: #072e51;
}

.shop-more-card:hover {
  background-color: #fcf8f5;
  border: 1px solid #072e51;
}

.shop-more-card:hover .shop-more-link {
  color: #072e51;
}

.shop-more-link {
  text-decoration: none;
  color: #fcf8f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.shop-more-link:hover {
  color: #072e51;
}

.shop-more-link i {
  font-size: 2rem;
}

.shop-more-link span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
}

/************ Main About Section ***********/
.main-about-section {
  width: 100%;
  height: 100vh; /* Full screen height */
  background-color: #e00b65; /* Brand Pink */
  display: flex;
  overflow: hidden;
}

/* Left Side - 50% */
/************ The Stepped Stack Layout ***********/
.about-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /* We use a slightly larger padding to account for the "steps" stretching out */
  padding-right: 80px;
  padding-bottom: 80px;
}

.card-deck {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
}

.deck-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 8px solid #fcf8f5;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease; /* Only opacity changes */
  overflow: hidden;
  cursor: pointer;
  background: #fcf8f5;
}

.deck-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* STEPPED POSITIONS 
   Card 1 is the top-left-most card.
   Each following card moves Down (top) and Right (left).
*/

.card-1 {
  z-index: 3;
  top: 0;
  left: 0;
  opacity: 1; /* Main card starts fully visible */
}

.card-2 {
  z-index: 2;
  top: 40px; /* Step Down */
  left: 40px; /* Step Right */
  opacity: 0.8;
}

.card-3 {
  z-index: 1;
  top: 80px; /* Step Down further */
  left: 80px; /* Step Right further */
  opacity: 0.7;
}

/************ Interaction Logic ***********/

/* When hovering the whole deck, dim all cards slightly */
.card-deck:hover .deck-card {
  opacity: 0.1;
}

/* When hovering a specific "step", bring it to full focus */
.deck-card:hover {
  opacity: 1 !important;
  /* Optional: we don't move the card, but we make the shadow deeper 
     so it feels like it's "lifting" towards the user */
  box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.4);
}

/* Right Side - 50% */
.about-right {
  flex: 1;
  display: flex;
  flex-direction: column; /* Vertical split */
  background-color: #fcf8f5; /* White background for text readability */
}

/* Top Half of Right Side */
.right-top {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #fcf8f5;
  padding: 40px;
}

.about-section-logo {
  max-width: 250px;
  height: auto;
  /* mix-blend-mode: difference; Optional: if you want the logo to react to the white bg */
}

/* Bottom Half of Right Side */
.right-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  text-align: left;
}

.about-section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 50px;
  color: #072e51; /* Navy Blue */
  margin-bottom: 20px;
  line-height: 0.9;
}

.about-section-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #1a1a1a;
}

/************ Map Immersive Section ***********/
.map-immersive-section {
  padding: 60px 40px;
  position: relative;
  width: 100%;
  height: 92vh; /* Deep enough to feel immersive */
  background-color: #fcf8f5;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 100%;
  border: 1px solid #e00b65;
}

/* Floating Info Card */
.map-card {
  position: absolute;
  top: 60px;
  left: 40px; /* Aligned with your site's 40px margin */
  transform: none;
  background-color: #fcf8f5;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  box-shadow: 20px 20px 0px #e00b65; /* Pink offset shadow for that street style */
  z-index: 10;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #e00b65;
  margin-bottom: 15px;
}

/* Pulse Animation for the status */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #e00b65;
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e00b65;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.map-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  color: #072e51;
  line-height: 1;
  margin-bottom: 15px;
}

.map-address {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 0;
}

.map-meta {
  margin-bottom: 30px;
  border-top: 1px solid #fcf8f5;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.meta-item i {
  color: #072e51;
}

.map-directions-btn {
  display: block;
  text-align: center;
  padding: 15px;
  background-color: #072e51;
  color: #fcf8f5;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.map-directions-btn:hover {
  background-color: #e00b65;
}

.map-main-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.img-col {
  flex: 0 0 200px;
  margin-top: 5px;
}

.img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/************ Contact Section ***********/
.contact-section {
  display: flex;
  width: 100%;
  min-height: 60vh;
  background-color: #fcf8f5;
}

.contact-left,
.contact-right {
  flex: 1;
  padding: 80px 40px;
}

/* Left Side - Minimalist Form */
.contact-left {
  border-right: 1px solid #fcf8f5;
}

.contact-form {
  margin-top: 40px;
  max-width: 500px;
}

.form-group {
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 1px solid #072e51; /* Navy underline */
  font-family: "Inter", sans-serif;
  font-size: 14px;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #e00b65; /* Pink on focus */
}

.btn-submit {
  color: #fcf8f5;
  border: 1px solid #072e51;
  background-color: #072e51;
}

.btn-submit:hover {
  background-color: #e00b65;
  color: #fcf8f5;
  border: 1px solid #e00b65;
}

/* Right Side - Bold Socials */
.contact-right {
  background-color: #072e51; /* Navy background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #fcf8f5;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.social-item i {
  color: #072e51;
  width: 40px;
  height: 40px;
  background-color: #fcf8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-item:hover i {
  color: #e00b65;
}

.social-item span {
  position: relative;
  color: #fcf8f5;
  transition: 0.3s ease;
}

.social-item span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e00b65;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.social-item:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

/************ Main Footer ***********/
.main-footer {
  margin: 0 40px;
  margin-top: 60px; /* Spacing from Contact section */
  padding: 60px 0 30px 0;
  border-top: 1px solid #e00b65; /* Top thin pink border */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-tagline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  color: #072e51;
  line-height: 1.6;
  letter-spacing: 1px;
}

.footer-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #072e51;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #666;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e00b65;
}

.newsletter-text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.footer-social-mini {
  display: flex;
  gap: 20px;
  font-size: 18px;
}

.footer-social-mini a {
  color: #072e51;
  transition: color 0.3s ease;
}

.footer-social-mini a:hover {
  color: #e00b65;
}

/* Bottom Copyright Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #fcf8f5;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-bottom p {
  color: #666;
}
.footer-bottom a {
  color: #072e51;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}

.footer-bottom a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e00b65;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer-bottom a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-logo {
  width: auto;
  max-width: 180px;
  height: auto;
  display: block;
  margin-bottom: 15px;
  object-fit: contain;
}

/***************************************/
/*********************************/
/********* shop.html ********/

/* Force the Header into White/Blue state for Shop Page */
.shop-header-state {
  background: #fcf8f5 !important;
}

.shop-header-state .nav-links a,
.shop-header-state .social-icon i,
.shop-header-state .search-btn i,
.shop-header-state .cart-wrapper i {
  color: #072e51 !important; /* Your Brand Blue */
  transition: 0.3s ease;
}

.shop-header-state .nav-links a.active {
  color: #e00b65 !important;
}

.shop-header-state .social-icon:hover i {
  color: #e00b65 !important;
}

/* Keep the Shop underline visible */
.shop-header-state .nav-links a.active::after {
  width: 100%;
  transform: scaleX(1);
  background-color: #e00b65; /* Pink underline */
}

/* Style for the "Products" Title */
.shop-hero-title {
  text-align: center;
  padding: 60px 0 20px 0;
  background-color: #fcf8f5; /* Matches header */
}

.shop-hero-title h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  color: #072e51;
  letter-spacing: 4px;
  margin: 0;
}

/************ Shop Products Section ***********/

/* 1. Main Layout Split (1/4 Sidebar, 3/4 Products) */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin: 40px;
  margin-top: 40px;
  min-height: 80vh;
  gap: 40px;
  align-items: start;
  min-height: 1092px;
}

/* Sidebar Styling */
.shop-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: #072e51;
  margin-bottom: 30px;
  border-bottom: 2px solid #e00b65;
  display: inline-block;
}

.category-list {
  list-style: none;
  padding: 0;
}

.cat-item {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #072e51;
  padding: 15px 0;
  cursor: pointer;
  border-bottom: 1px solid #fcf8f5;
  transition: 0.4s ease;
  position: relative;
}

.cat-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e00b65;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.cat-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cat-item:hover {
  color: #072e51;
}

.cat-item.active {
  color: #072e51;
}

.cat-item.active::after {
  transform: scaleX(1);
}

/* 2. Product Grid Container */
.shop-content {
  width: 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  align-items: start; /* Prevents rows from stretching vertically */
}

/* 3. Shop Card Styling & Animations */
.shop-content .product-card {
  width: 100%;
  padding: 10px;
  background: white;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;

  /* Focus only on Opacity and Visibility for no displacement */
  transition:
    opacity 0.4s ease,
    border 0.4s ease,
    visibility 0.4s;

  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: hidden;
}

.shop-content .product-card:hover {
  border: 1px solid #e00b65;
}

/* Shop Image Scale Up */
.shop-content .product-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: #fcf8f5;
  margin-bottom: 15px;
  overflow: hidden;
}

.shop-content .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

/* Filtering helper class - helps the JS know the state */
.shop-content .product-card.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Instead of display:none, we collapse the card so it doesn't take space */
  display: none !important;
}

@media (max-width: 1024px) {
  .shop-hero-title h1 {
    font-size: 68px;
  }

  .shop-hero-title {
    padding: 32px 0 10px 0;
  }

  .shop-layout {
    grid-template-columns: 1fr;
    margin: 32px;
    margin-top: 20px;
    gap: 18px;
    min-height: auto;
  }

  .shop-sidebar {
    position: sticky;
    top: 0;
    display: block;
    padding: 12px 0;
    background-color: #fcf8f5;
    z-index: 20;
    overflow: hidden;
  }

  .sidebar-title {
    display: inline-block;
    margin-bottom: 14px;
  }

  .category-list {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0 8px;
    min-width: 0;
    white-space: nowrap;
    cursor: grab;
    user-select: none;
  }

  .category-list.is-dragging {
    cursor: grabbing;
  }

  .category-list::-webkit-scrollbar {
    display: none;
  }

  .cat-item {
    flex: 0 0 auto;
    padding: 10px 16px;
    border: 1px solid rgba(7, 46, 81, 0.14);
    border-bottom: 1px solid rgba(7, 46, 81, 0.14);
    background: #fff;
    user-select: none;
  }

  .cat-item::after {
    display: none;
  }

  .cat-item.active {
    color: #fcf8f5;
    background-color: #072e51;
    border-color: #072e51;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .shop-hero-title h1 {
    font-size: 58px;
  }

  .shop-hero-title {
    padding: 28px 0 8px 0;
  }

  .shop-layout {
    margin: 20px;
    margin-top: 14px;
    gap: 14px;
  }

  .shop-sidebar {
    top: 0;
    padding: 10px 0;
  }

  .sidebar-title {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .category-list {
    gap: 10px;
    padding-bottom: 6px;
  }

  .cat-item {
    padding: 9px 14px;
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 670px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }
}

/*****************************************/
/*****************************************/
/***********responsive yooooo*****************/
/*****************************************/
/*****************************************/

/******** main responsive*/
/*************************/

@media (max-width: 1024px) {
  .brand-intro-section {
    padding: 38px 0;
    margin-left: 32px;
    margin-right: 32px;
  }

  .about-container {
    max-width: 600px;
    margin-bottom: 32px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-text {
    font-size: 17px;
  }

  .brand-slider {
    --brand-track-width: 244px;
    --brand-track-padding: 28px;
    --brand-logo-width: 172px;
    --brand-logo-height: 98px;
    width: calc(100% + 64px);
    margin-left: -32px;
    margin-right: -32px;
  }

  .product-carousel-section {
    padding: 38px 0;
    margin-left: 32px;
    margin-right: 32px;
  }

  .main-footer {
    margin-top: 38px;
    padding: 38px 0;
  }

  .shop-hero-title {
    padding: 38px 0;
  }

  .carousel-container {
    width: calc(100% + 64px);
    margin-left: -32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .product-card {
    flex: 0 0 clamp(220px, 27vw, 260px);
    min-width: clamp(220px, 27vw, 260px);
  }

  .product-img {
    height: clamp(220px, 28vw, 270px);
  }

  .map-immersive-section {
    padding: 38px 32px;
  }

  .contact-left,
  .contact-right {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .welcome-msg {
    font-size: 80px;
  }
  .catchy-phrase {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .brand-intro-section,
  .product-carousel-section,
  .main-footer {
    margin-left: 20px;
    margin-right: 20px;
  }

  .map-immersive-section {
    padding: 25px 20px;
  }

  .brand-slider {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .carousel-container {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .carousel-controls {
    gap: 12px;
  }

  .control-btn {
    width: 40px;
    height: 40px;
  }

  .product-card {
    flex: 0 0 clamp(168px, 41vw, 238px);
    min-width: clamp(168px, 41vw, 238px);
    padding: 12px;
  }

  .product-img {
    height: clamp(180px, 34vw, 230px);
    margin-bottom: 12px;
  }

  .p-brand {
    font-size: 11px;
  }

  .p-name {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .p-price {
    font-size: 15px;
  }

  .map-card {
    left: 20px;
    width: calc(100% - 40px);
    max-width: none;
    padding: 24px;
  }

  .brand-intro-section {
    padding: 28px 0;
  }

  .product-carousel-section {
    padding: 44px 0;
  }

  .about-container {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.45;
  }

  .contact-section {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    min-width: 0;
    padding: 40px 20px;
  }

  .contact-left {
    border-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-left .about-title {
    width: 100%;
    text-align: left;
  }

  .contact-form {
    width: 100%;
  }

  .btn-submit {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
  }

  .brand-col {
    grid-column: 1 / -1;
  }

  .links-col {
    justify-self: start;
  }

  .contact-col {
    justify-self: end;
    text-align: center;
  }

  .contact-col .footer-social-mini {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom p {
    overflow-wrap: anywhere;
  }

  .main-footer {
    padding: 44px 0 24px 0;
  }

  .shop-hero-title {
    padding: 44px 0 16px 0;
  }

  .social-links-container {
    width: 100%;
  }

  .social-item {
    width: 100%;
    gap: 16px;
    overflow-wrap: anywhere;
  }

  .brand-slider {
    --brand-track-width: 210px;
    --brand-track-padding: 20px;
    --brand-logo-width: 146px;
    --brand-logo-height: 84px;
  }

  .hero-header {
    height: 68vh;
    min-height: 560px;
    justify-content: flex-start;
    padding: 18px 18px 36px;
  }

  .hero-header::before {
    display: none;
  }

  .hover-trigger-area {
    height: auto;
    min-height: 130px;
    justify-content: flex-start;
    padding-top: 6px;
    z-index: 10;
  }

  .mobile-header-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: #fcf8f5;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 8;
    pointer-events: none;
  }

  .hero-header.header-menu-open .mobile-header-overlay {
    opacity: 1;
  }

  .social-links {
    top: 14px;
    right: 18px;
    gap: 16px;
    z-index: 30;
  }

  .social-icon {
    font-size: 1.05rem;
  }

  .hero-header.header-menu-open .social-icon {
    color: #072e51;
  }

  .hero-header.header-menu-open .social-icon:hover {
    color: #e00b65;
  }

  .hero-header.header-menu-open .social-icon:hover i {
    color: #e00b65;
  }

  .brand-container {
    width: 100%;
    margin-bottom: 0;
    padding-top: 4px;
    position: relative;
    z-index: 12;
    pointer-events: none;
  }

  .brand-logo {
    height: 100px;
  }

  .main-nav {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: auto;
    padding: 0 18px;
    align-items: flex-start;
    z-index: 20;
  }

  .nav-left {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 40;
  }

  .menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 48px;
    position: relative;
    z-index: 41;
  }

  .menu-toggle span {
    width: 20px;
    background-color: #fcf8f5;
  }

  .nav-links {
    position: absolute;
    top: 126px;
    left: 36px;
    transform: translateY(8px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: calc(100% - 72px);
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
    z-index: 12;
  }

  .main-nav.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #072e51;
  }

  .main-nav.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .main-nav.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #072e51;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(224, 11, 101, 0.45);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 17px;
    color: #072e51;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      color 0.3s ease;
  }

  .main-nav.nav-open .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a::after,
  .nav-links a.active::after {
    display: none;
  }

  .nav-links a.active {
    color: #e00b65;
  }

  .hover-trigger-area:hover .nav-links a,
  .hover-trigger-area:hover .social-icon,
  .hover-trigger-area:hover .search-btn,
  .hover-trigger-area:hover .cart-wrapper {
    color: inherit;
  }

  .hero-header.header-menu-open .hover-trigger-area:hover .social-icon,
  .hero-header.header-menu-open .hover-trigger-area:hover .nav-links a {
    color: #072e51;
  }

  .hero-header.header-menu-open .hover-trigger-area:hover .nav-links a.active {
    color: #e00b65;
  }

  .hero-text {
    margin-top: 78px;
    max-width: 520px;
  }

  .welcome-msg {
    font-size: 60px;
    line-height: 0.95;
    margin-bottom: 12px;
  }

  .catchy-phrase {
    font-size: 21px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .hero-ctas {
    margin-top: 8px;
  }

  .hero-ctas a {
    display: inline-flex;
  }

  .shop-header-state .menu-toggle span {
    background-color: #072e51;
  }

  .hero-header.shop-header-state {
    height: 20vh !important;
    min-height: 350px !important;
  }
}

@media (max-width: 560px) {
  .brand-intro-section {
    padding: 24px 0;
  }

  .product-carousel-section {
    padding: 36px 0;
  }

  .main-footer {
    padding: 36px 0 20px 0;
  }

  .shop-hero-title {
    padding: 36px 0 14px 0;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .product-card {
    flex: 0 0 clamp(158px, 42vw, 196px);
    min-width: clamp(158px, 42vw, 196px);
  }

  .product-img {
    height: clamp(168px, 44vw, 205px);
  }

  .p-name {
    font-size: 15px;
  }

  .p-price {
    font-size: 14px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }

  .brand-slider {
    --brand-track-width: 184px;
    --brand-track-padding: 16px;
    --brand-logo-width: 128px;
    --brand-logo-height: 72px;
  }

  .hero-header {
    height: 62vh;
    min-height: 500px;
  }

  .hero-text {
    margin-top: 62px;
  }

  .welcome-msg {
    font-size: 44px;
  }

  .catchy-phrase {
    font-size: 19px;
    padding: 0 8px;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-ctas a,
  .hero-ctas button {
    width: 100%;
    max-width: 260px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-social-mini {
    gap: 16px;
  }
}

@media (max-width: 550px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-top: 20px;
  }
}

@media (max-width: 428px) {
  .shop-hero-title h1 {
    font-size: 46px;
  }

  .shop-hero-title {
    padding: 25px 0 6px 0;
  }

  .category-list {
    gap: 8px;
  }

  .cat-item {
    padding: 8px 12px;
    font-size: 12px;
  }

  .brand-intro-section,
  .product-carousel-section,
  .main-footer,
  .shop-hero-title {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .contact-left,
  .contact-right {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .main-footer {
    margin-top: 25px;
  }

  .social-links-container {
    gap: 18px;
  }

  .social-item {
    gap: 14px;
    font-size: 16px;
  }

  .social-item i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .carousel-controls {
    display: none;
  }

  .footer-bottom {
    gap: 8px;
    padding-top: 16px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .carousel-container {
    gap: 14px;
  }

  .product-card {
    flex: 0 0 clamp(136px, 42vw, 162px);
    min-width: clamp(136px, 42vw, 162px);
    padding: 10px;
  }

  .product-img {
    height: clamp(148px, 44vw, 176px);
  }

  .p-brand {
    font-size: 10px;
  }

  .p-name {
    font-size: 14px;
  }

  .p-price {
    font-size: 13px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 14px;
  }

  .brand-slider {
    --brand-track-width: 168px;
    --brand-track-padding: 14px;
    --brand-logo-width: 116px;
    --brand-logo-height: 66px;
  }

  .welcome-msg {
    font-size: 38px;
  }

  .catchy-phrase {
    font-size: 17px;
    line-height: 1.25;
  }

}

@media (max-width: 383px) {
  .carousel-container {
    gap: 12px;
  }

  .product-card {
    flex: 0 0 clamp(128px, 41vw, 148px);
    min-width: clamp(128px, 41vw, 148px);
  }

  .product-img {
    height: clamp(138px, 43vw, 164px);
  }

  .welcome-msg {
    font-size: 34px;
  }

  .catchy-phrase {
    font-size: 15px;
  }
}

/*****************************************/
/*********** About Section Responsive **********/
/*****************************************/

@media (max-width: 1024px) {
  .main-about-section {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .about-left,
  .about-right {
    flex: none;
    width: 100%;
  }

  .about-left {
    padding: 56px 32px;
    padding-right: 80px; /* Space for the card offset */
    min-height: 520px;
  }

  .right-top {
    padding: 28px 32px;
  }

  .right-bottom {
    padding: 40px 32px;
  }

  .about-section-title {
    font-size: 42px;
  }

  .about-section-text {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .about-left {
    padding: 48px 20px;
    padding-right: 60px;
    min-height: 480px;
  }

  .right-bottom {
    padding: 32px 20px;
  }

  .about-section-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .about-section-text {
    font-size: 16px;
  }

  .about-section-logo {
    max-width: 200px;
  }
}

@media (max-width: 560px) {
  .card-deck {
    max-width: 260px;
  }

  /* Shrinking the "steps" to keep them on screen */
  .card-2 {
    top: 30px;
    left: 30px;
  }

  .card-3 {
    top: 60px;
    left: 60px;
  }

  .about-left {
    min-height: 440px;
    padding-bottom: 80px;
  }

  .about-section-title {
    font-size: 30px;
  }
}

@media (max-width: 428px) {
  .card-deck {
    max-width: 220px;
  }

  .card-2 {
    top: 25px;
    left: 25px;
  }

  .card-3 {
    top: 50px;
    left: 50px;
  }

  .about-left {
    min-height: 400px;
    padding-right: 50px;
  }

  .about-section-title {
    font-size: 26px;
  }

  .about-section-text {
    font-size: 15px;
  }

  .about-section-logo {
    max-width: 160px;
  }
}

@media (max-width: 383px) {
  .card-deck {
    max-width: 190px;
  }

  .about-left {
    min-height: 360px;
    padding-bottom: 70px;
  }

  .about-section-title {
    font-size: 24px;
  }

  .about-section-text {
    font-size: 14px;
  }
}

/*****************************************/
/*********** Map Immersive Section Responsive **********/

@media (max-width: 1024px) {
  .map-immersive-section {
    display: flex;
    flex-direction: column;
    /* Centers the card and map horizontally */
    align-items: center;
    height: auto;
    /* Tablet edge rule: 32px */
    gap: 40px;
    overflow: visible;
    box-sizing: border-box;
    width: 100%;
  }

  .map-card {
    order: 1; /* Forces card to top */
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    /* Prevents card from stretching too wide on tablet */
    max-width: 520px;
    box-shadow: 15px 15px 0px #e00b65;
    padding: 30px;
    z-index: 5;
  }

  .map-container {
    order: 2; /* Forces map to bottom */
    max-width: 100%;
    /* Tablet Ratio: Slightly wider than square */
    aspect-ratio: 16 / 10;
    min-height: 400px;
    border: 1px solid #e00b65;
  }

  .map-main-info {
    display: flex !important;
    flex-direction: row; /* Keeps side-by-side until 470px */
    justify-content: space-between;
    gap: 20px;
  }

  .img-col {
    flex: 0 0 180px;
    aspect-ratio: 4 / 3; /* Matches your 500x375 image ratio */
    overflow: hidden;
  }

  .img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .map-immersive-section {
    gap: 32px;
  }

  .map-container {
    /* Vertical ratio for mobile to see street grid better */
    aspect-ratio: 3 / 4;
    min-height: 450px;
  }

  .img-col {
    flex: 0 0 140px; /* Shrinks image slightly to keep text room */
  }

  .map-card-title {
    font-size: 30px;
  }
}

/* THE STACK POINT: 470px */
@media (max-width: 470px) {
  .map-main-info {
    flex-direction: column !important; /* Stacks title and image */
    gap: 15px;
  }

  .img-col {
    order: 2; /* Image below the title/text */
    width: 100%;
    flex: none;
    aspect-ratio: 4 / 3;
    margin-top: 5px;
  }

  .map-container {
    /* Tall immersive ratio for small phones */
    aspect-ratio: 2 / 3;
    min-height: 400px;
  }

  .map-card-title {
    font-size: 26px;
  }
}

@media (max-width: 383px) {
  .map-immersive-section {
    gap: 24px;
  }

  .map-card {
    padding: 20px;
    box-shadow: 10px 10px 0px #e00b65;
  }

  .map-card-title {
    font-size: 22px;
  }
}
