@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --charcoal: #1a1a1a;
  --crisp-white: #ffffff;
  --soft-gray: #f4f4f4;
  --deep-magenta: #c02b66;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--crisp-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--charcoal);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Header */
.header {
  position: fixed;
  top: 25px;
  width: 100%;
  background-color: transparent;
  color: black;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  top: 0;
  padding: 0.5rem 5%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  color: var(--charcoal);
}

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--deep-magenta);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.header-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-icons i {
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header-icons i:hover {
  color: var(--deep-magenta);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn-primary {
  background-color: var(--charcoal);
  color: var(--crisp-white);
  padding: 12px 30px;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 var(--deep-magenta);
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--deep-magenta);
}

.btn-secondary {
  background-color: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 12px 30px;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--charcoal);
  color: var(--crisp-white);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--charcoal);
}

/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  background: repeating-linear-gradient(
    90deg,
    var(--charcoal),
    var(--charcoal) 80px,
    var(--crisp-white) 80px,
    var(--crisp-white) 160px
  );
  padding-top: 0;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 0 0 80px 80px;
  overflow: hidden;
  background-position: center 0;
}

.hero-inner {
  width: 100%;
  height: 100%;
  background-image: url('public/hero-bg.png');
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 14rem 5% 0;
  margin-bottom: 0;
}

.hero-content-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text-left {
  flex: 1;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1.4rem;
  padding-right: 2rem;
  opacity: 0;
  animation: slideInLeft 0.8s ease-out forwards;
}

.hero-text-right {
  flex: 1;
  font-weight: 700;
  color: var(--charcoal);
  text-align: right;
  padding-left: 2rem;
  font-size: 1.4rem;
  opacity: 0;
  animation: slideInRight 0.8s ease-out forwards;
}

.hero-center-graphic {
  flex: 2;
  text-align: center;
  position: relative;
}

.hero-typography {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: slideInTop 0.8s ease-out forwards;
}

.hero-typography h2 {
  font-size: 4.5rem;
  line-height: 0.9;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif; /* Or keep default heading font */
}

.text-red {
  color: var(--deep-magenta);
}

.text-brown {
  color: var(--charcoal);
}

.badge {
  background-color: var(--deep-magenta);
  color: var(--crisp-white);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-10deg);
  position: absolute;
  top: 50px;
  right: -20px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-main-img {
  width: 100%;
  max-width: 500px;
  margin-top: -30px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
  opacity: 0;
  animation: slideInBottom 0.8s ease-out 0.2s forwards;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInTop {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInBottom {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-dark {
  background-color: var(--charcoal);
  color: var(--crisp-white);
  padding: 12px 30px;
  border: 1px solid var(--charcoal);
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 var(--deep-magenta);
}

.btn-dark:hover {
  background-color: var(--crisp-white);
  color: var(--charcoal);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--deep-magenta);
}

/* Section Common */
.section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--deep-magenta);
  margin: 15px auto 0;
}

/* Featured Products */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--crisp-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--charcoal);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid var(--charcoal);
}

.product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--deep-magenta);
}

.product-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-title {
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-price {
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Category Grid */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.featured-section {
  padding: 4rem 5%;
  background-color: transparent;
  position: relative;
  z-index: 2;
}

/* Hero Marquee */
.hero-marquee {
  width: 100%;
  overflow: hidden;
  background-color: var(--deep-magenta);
  padding: 2.4rem 0;
  position: relative;
  z-index: 2;
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: hero-marquee-scroll 24s linear infinite;
}

.hero-marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  flex-shrink: 0;
}

.hero-marquee-text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--crisp-white);
  white-space: nowrap;
}

.hero-marquee-item img {
  height: 88px;
  width: 88px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

@keyframes hero-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .hero-marquee {
    padding: 1.4rem 0;
  }
  .hero-marquee-text {
    font-size: 1.2rem;
  }
  .hero-marquee-item img {
    height: 56px;
    width: 56px;
  }
  .hero-marquee-item {
    gap: 1rem;
    padding: 0 1.25rem;
  }
}

/* Main Striped Wrapper */
.main-striped-bg {
  background: repeating-linear-gradient(
    90deg,
    var(--crisp-white),
    var(--crisp-white) 60px,
    var(--soft-gray) 60px,
    var(--soft-gray) 120px
  );
  position: relative;
  padding-top: 2rem;
}

.featured-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.featured-card {
  background-color: var(--crisp-white);
  padding: 10px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--charcoal);
  box-shadow: 4px 4px 0 var(--charcoal);
  transition: all 0.3s ease;
}

.featured-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--deep-magenta);
}

.featured-img-container {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--charcoal);
}

.featured-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-card:hover .featured-img-container img {
  transform: scale(1.05);
}

.featured-info {
  background-color: var(--charcoal);
  padding: 20px;
  border-radius: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
}

.featured-title {
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--crisp-white);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.featured-price {
  font-family: var(--font-heading);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-new {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.price-old {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: line-through;
}

.btn-view {
  background-color: var(--deep-magenta);
  color: var(--crisp-white);
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 1px solid var(--deep-magenta);
  align-self: flex-start;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background-color: transparent;
  color: var(--deep-magenta);
}

.btn-view-all {
  display: inline-block;
  background-color: var(--charcoal);
  color: var(--crisp-white);
  padding: 12px 30px;
  border-radius: 0;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--charcoal);
  box-shadow: 4px 4px 0 var(--deep-magenta);
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: var(--crisp-white);
  color: var(--charcoal);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--deep-magenta);
}

/* About Section New */
.about-section-new {
  background-color: transparent;
  padding: 4rem 5%;
}

.about-inner-box {
  background: repeating-linear-gradient(
    90deg,
    var(--charcoal),
    var(--charcoal) 60px,
    #111111 60px,
    #111111 120px
  );
  padding: 4rem 5%;
  color: var(--crisp-white);
  border-radius: 0;
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid var(--charcoal);
  box-shadow: 8px 8px 0 var(--deep-magenta);
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.95;
  color: var(--crisp-white);
  margin-bottom: 2.5rem;
  max-width: 900px;
  text-shadow: 2px 2px 0 var(--deep-magenta);
}

.about-content-grid {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.about-image-main {
  flex: 1;
}

.about-image-main img {
  width: 100%;
  border-radius: 0;
  box-shadow: 6px 6px 0 var(--deep-magenta);
  border: 1px solid var(--charcoal);
  display: block;
}

.about-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-text-side p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 500px;
}

.about-image-small {
  width: 60%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--deep-magenta);
  border: 1px solid var(--charcoal);
  margin-top: 1rem;
}

.about-image-small img {
  width: 100%;
  display: block;
}

/* Categories Circle Section */
.categories-circle-section {
  background: transparent;
  position: relative;
  padding: 4rem 5%;
  overflow: hidden;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-top svg {
  width: 100%;
  height: 80px;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-bottom svg {
  width: 100%;
  height: 80px;
}

.cat-content-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cat-arch-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.arch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
}

.arch-item:hover {
  transform: translateY(-10px);
}

.arch-outer {
  margin-top: 220px;
}

.arch-inner {
  margin-top: 0;
}

.arch-img-wrapper {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 5px solid white;
}

.arch-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.arch-item:hover .arch-img-wrapper img {
  transform: scale(1.1);
}

.arch-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  background-color: var(--crisp-white);
  padding: 10px 30px;
  border-radius: 30px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
  box-shadow: 4px 4px 0 var(--charcoal);
  border: 1px solid var(--charcoal);
}

.cat-center-image {
  width: 600px;
  max-width: 90%;
  height: auto;
  z-index: 5;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -240px auto 0;
}

.cat-center-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.3));
  transition: transform 0.4s ease;
}

.cat-center-image:hover img {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .cat-arch-container {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .arch-outer, .arch-inner {
    margin-top: 0;
  }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-image-main {
  flex: 1;
}

.about-image-main img {
  width: 100%;
  border-radius: 0;
  box-shadow: 6px 6px 0 var(--deep-magenta);
  border: 1px solid var(--charcoal);
  display: block;
}

.about-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-text-side p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 500px;
}

.about-image-small {
  width: 60%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--deep-magenta);
  border: 1px solid var(--charcoal);
  margin-top: 1rem;
}

.about-image-small img {
  width: 100%;
  display: block;
}

/* Categories Circle Section */
.categories-circle-section {
  background: transparent;
  position: relative;
  padding: 2rem 5% 10rem;
  overflow: hidden;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-top svg {
  width: 100%;
  height: 80px;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-bottom svg {
  width: 100%;
  height: 80px;
}

.cat-content-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cat-arch-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
}

.arch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
}

.arch-item:hover {
  transform: translateY(-10px);
}

.arch-outer {
  margin-top: 220px;
}

.arch-inner {
  margin-top: 0;
}

.arch-img-wrapper {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 5px solid white;
}

.arch-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.arch-item:hover .arch-img-wrapper img {
  transform: scale(1.1);
}

.arch-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  background-color: var(--crisp-white);
  padding: 10px 30px;
  border-radius: 30px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
  box-shadow: 4px 4px 0 var(--charcoal);
  border: 1px solid var(--charcoal);
}

.cat-center-image {
  width: 600px;
  max-width: 90%;
  height: auto;
  z-index: 5;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -240px auto 0;
}

.cat-center-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.3));
  transition: transform 0.4s ease;
}

.cat-center-image:hover img {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .cat-arch-container {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .arch-outer, .arch-inner {
    margin-top: 0;
  }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--crisp-white);
  padding: 2.5rem;
  border-radius: 0;
  text-align: center;
  box-shadow: 6px 6px 0 var(--charcoal);
  border: 1px solid var(--charcoal);
  position: relative;
}

.stars {
  color: var(--deep-magenta);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.customer-name {
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Gallery */
.gallery-section {
  background-color: var(--soft-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--crisp-white);
  border: 1px solid var(--charcoal);
  box-shadow: 4px 4px 0 var(--charcoal);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--deep-magenta);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background-color: var(--charcoal);
  color: var(--crisp-white);
  padding: 4rem 5% 2rem;
  position: relative;
  overflow: hidden;
}

.footer-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.footer-top p {
  max-width: 420px;
}

.footer-marquee {
  position: relative;
  left: -10%;
  width: 120%;
  overflow: hidden;
  transform: rotate(-3deg);
  margin: 1rem 0 -0.5rem;
  z-index: 2;
}

.footer-marquee-track {
  display: flex;
  width: max-content;
  animation: footer-marquee-scroll 16s linear infinite;
}

.footer-marquee-track span {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 1.25rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--deep-magenta);
  text-stroke: 2px var(--deep-magenta);
}

@keyframes footer-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .footer-marquee-track span {
    font-size: 2.2rem;
  }
}

.footer-decor {
  position: absolute;
  width: 180px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}
/* decor-1/3 clear the fixed-height marquee + copyright strip at the bottom of
   the footer (bottom offset > that strip's height) so they never sit behind it.
   decor-2/4 sit in the fixed top-padding gutter, above the column text. */
.footer-decor-1 { width: 260px; bottom: 230px; left: -70px; }
.footer-decor-3 { width: 260px; bottom: 230px; right: -70px; }
.footer-decor-4 { width: 190px; top: -70px; left: 4%; }
.footer-decor-2 { width: 160px; top: -75px; right: 5%; }

@media (max-width: 1100px) {
  .footer-decor-1, .footer-decor-3 { width: 190px; }
  .footer-decor-2, .footer-decor-4 { display: none; }
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 3.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.footer-content .footer-col {
  flex: 1 1 190px;
  max-width: 230px;
  text-align: center;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--crisp-white);
  border-radius: 12px;
  padding: 10px 20px;
  margin-bottom: 1.5rem;
}

.footer-logo-badge img {
  height: 30px;
  width: auto;
  display: block;
}

.footer-social {
  display: flex;
  gap: 15px;
  font-size: 1.4rem;
  margin-top: 1.25rem;
}

.footer-col h3 {
  color: var(--deep-magenta);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a:hover {
  color: var(--deep-magenta);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--crisp-white);
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  /* Header: account icon pinned left, logo centered, cart + hamburger grouped right */
  .header {
    top: 30px;
    justify-content: flex-end;
    gap: 1rem;
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .header-icons a[title="Login"] {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero {
    height: auto;
    background: repeating-linear-gradient(
      90deg,
      var(--charcoal),
      var(--charcoal) 30px,
      var(--crisp-white) 30px,
      var(--crisp-white) 60px
    );
  }

  .hero-inner {
    padding: 8rem 1rem 3rem;
    background-size: cover;
  }

  .hero-content-new {
    flex-direction: column;
    text-align: center;
  }

  /* Reorder: heading+image+badge, then intro text, then tagline/CTA */
  .hero-center-graphic {
    order: 1;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-typography {
    order: 1;
  }

  .hero-main-img {
    order: 2;
    margin-top: 0.75rem;
  }

  .hero-text-left {
    order: 2;
    flex: none;
  }

  .hero-text-right {
    order: 3;
    flex: none;
  }

  .hero-text-left, .hero-text-right {
    text-align: center;
    padding: 1rem 0;
  }

  .hero-text-left p {
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 auto;
  }

  .hero-typography h2 {
    font-size: 2.5rem;
  }

  .badge {
    order: 3;
    position: static;
    margin: 1rem auto 0;
  }

  .story-container {
    flex-direction: column;
  }

  .story-title::after {
    margin-left: 0;
  }

  .footer-decor {
    display: none;
  }

  .section-title {
    font-size: 2.3rem;
    margin-bottom: 2rem;
  }

  .section, .featured-section {
    padding: 3rem 5%;
  }

  .header {
    padding: 1rem 5%;
  }

  /* Featured Products */
  .featured-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* About */
  .about-section-new {
    padding: 2.5rem 5%;
  }

  .about-inner-box {
    padding: 2.5rem 6%;
  }

  .about-hero-title {
    font-size: 2.6rem;
    margin-bottom: 1.75rem;
  }

  .about-content-grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .about-image-small {
    width: 100%;
  }

  /* Categories */
  .categories-circle-section {
    padding: 2rem 5% 3rem;
  }

  .cat-arch-container {
    row-gap: 2.5rem;
  }

  .arch-item {
    width: 130px;
  }

  .arch-img-wrapper {
    width: 130px;
    height: 130px;
    border-width: 3px;
  }

  .arch-label {
    padding: 6px 16px;
    font-size: 0.7rem;
  }

  .cat-center-image {
    margin-top: -60px;
    max-width: 75%;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Footer */
  .footer-content {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-typography h2 {
    font-size: 1.9rem;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .featured-grid-new {
    grid-template-columns: 1fr;
  }

  .arch-item {
    width: 105px;
  }

  .arch-img-wrapper {
    width: 105px;
    height: 105px;
  }

  .cat-center-image {
    margin-top: -35px;
    max-width: 85%;
  }
}

/* Custom Explorer Tooltip */
.explore-tooltip {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--deep-magenta);
  color: var(--crisp-white);
  padding: 8px 16px;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none; /* Crucial so it doesn't block hover events */
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  box-shadow: 4px 4px 0 var(--charcoal);
  border: 1px solid var(--charcoal);
}

.explore-tooltip.visible {
  opacity: 1;
  transform: scale(1);
}
