
/* ==========================================================================
   GLOBAL STYLES & UTILITIES
   ========================================================================== */
.fd-hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.fd-hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Container */
.fd-container {
  width: 100%;
  max-width: var(--fd-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--fd-margin-mobile);
  padding-right: var(--fd-margin-mobile);
}
@media (min-width: 768px) {
  .fd-container {
    padding-left: var(--fd-margin-desktop);
    padding-right: var(--fd-margin-desktop);
  }
}

/* Shared Typography Classes */
.fd-font-label-caps {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}
.fd-font-headline-xl {
  font-family: "Noto Serif", serif;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.fd-font-headline-lg {
  font-family: "Noto Serif", serif;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
}
.fd-font-headline-md {
  font-family: "Noto Serif", serif;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}
.fd-font-body-lg {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}
.fd-font-body-md {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
.fd-font-body-sm {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.fd-font-button-text {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

/* ==========================================================================
   HEADER COMPONENT
   ========================================================================== */
.fd-header {
  position: relative;
  width: 100%;
  height: 870px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fd-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fd-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fd-header__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.fd-header__content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}
.fd-header__card {
  max-width: 42rem; /* max-w-2xl */
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  padding: 2.5rem; /* p-10 */
  border-radius: var(--fd-radius-brand);
  box-shadow: 0px 10px 30px rgba(27, 39, 51, 0.04);
}
@media (min-width: 768px) {
  .fd-header__card {
    padding: 4rem; /* md:p-16 */
  }
}
.fd-header__badge {
  color: var(--fd-color-moss-accent);
  margin-bottom: 1rem;
  display: block;
}
.fd-header__title {
  color: var(--fd-color-forest-deep);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.fd-header__desc {
  color: var(--fd-color-on-surface-variant);
  margin-bottom: 2rem;
  max-width: 32rem; /* max-w-lg */
}
.fd-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.fd-header__btn-primary {
  background-color: var(--fd-color-forest-deep);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: var(--fd-radius-brand);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.fd-header__btn-primary:hover {
  background-color: var(--fd-color-moss-accent);
}
.fd-header__btn-secondary {
  border: 1px solid var(--fd-color-forest-deep);
  background-color: transparent;
  color: var(--fd-color-forest-deep);
  padding: 1rem 2rem;
  border-radius: var(--fd-radius-brand);
  cursor: pointer;
  transition: all 0.3s ease;
}
.fd-header__btn-secondary:hover {
  background-color: var(--fd-color-forest-deep);
  color: #ffffff;
}

/* ==========================================================================
   FEATURED CATEGORIES SECTION
   ========================================================================== */
.fd-categories {
  padding-top: var(--fd-stack-lg);
  padding-bottom: var(--fd-stack-lg);
}
.fd-categories__header {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--fd-stack-md);
  gap: 1rem;
}
@media (min-width: 768px) {
  .fd-categories__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.fd-categories__badge {
  color: var(--fd-color-moss-accent);
  margin-bottom: 0.5rem;
  display: block;
}
.fd-categories__title {
  color: var(--fd-color-forest-deep);
}
.fd-categories__link {
  color: var(--fd-color-forest-deep);
  border-bottom: 2px solid var(--fd-color-forest-deep);
  padding-bottom: 0.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.fd-categories__link:hover {
  color: var(--fd-color-moss-accent);
  border-color: var(--fd-color-moss-accent);
}
.fd-categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fd-gutter);
}
@media (min-width: 768px) {
  .fd-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Item */
.fd-category-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--fd-radius-brand);
  cursor: pointer;
}
.fd-category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.fd-category-card:hover .fd-category-card__img {
  transform: scale(1.1);
}
.fd-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 30, 38, 0.6) 0%, rgba(22, 30, 38, 0) 100%);
}
.fd-category-card__content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
.fd-category-card__title {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.fd-category-card__desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.fd-category-card__btn {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: var(--fd-radius-brand);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}
.fd-category-card:hover .fd-category-card__btn {
  background-color: #ffffff;
  color: var(--fd-color-forest-deep);
}

/* ==========================================================================
   BEST SELLERS SECTION
   ========================================================================== */
.fd-bestsellers {
  background-color: var(--fd-color-surface-container-low);
  padding-top: var(--fd-stack-lg);
  padding-bottom: var(--fd-stack-lg);
}
.fd-bestsellers__header {
  text-align: center;
  margin-bottom: var(--fd-stack-md);
}
.fd-bestsellers__badge {
  color: var(--fd-color-moss-accent);
  margin-bottom: 0.5rem;
  display: block;
}
.fd-bestsellers__title {
  color: var(--fd-color-forest-deep);
}
.fd-bestsellers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fd-gutter);
}
@media (min-width: 640px) {
  .fd-bestsellers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .fd-bestsellers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.fd-product-card {
  background-color: #ffffff;
  border-radius: var(--fd-radius-brand);
  padding: 1rem;
  box-shadow: 0px 10px 30px rgba(27, 39, 51, 0.04);
  transition: transform 0.3s ease;
}
.fd-product-card:hover {
  transform: translateY(-8px);
}
.fd-product-card__image-holder {
  position: relative;
  height: 18rem; /* h-72 */
  width: 100%;
  overflow: hidden;
  border-radius: var(--fd-radius-brand);
  margin-bottom: 1rem;
  background-color: var(--fd-color-sage-wash);
}
.fd-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fd-product-card:hover .fd-product-card__img {
  transform: scale(1.05);
}
.fd-product-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--fd-color-forest-deep);
  color: #ffffff;
  font-size: 10px;
  padding: 0.25rem 0.75rem;
  border-radius: var(--fd-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fd-product-card__tag--new {
  background-color: var(--fd-color-on-tertiary-container);
}
.fd-product-card__wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  color: var(--fd-color-forest-deep);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.fd-product-card__wishlist:hover {
  background-color: var(--fd-color-forest-deep);
  color: #ffffff;
}
.fd-product-card__details {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.fd-product-card__name {
  color: var(--fd-color-forest-deep);
  margin-bottom: 0.25rem;
}
.fd-product-card__badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.fd-product-card__badge-item {
  background-color: var(--fd-color-sage-wash);
  color: var(--fd-color-secondary);
  font-size: 10px;
  padding: 0.125rem 0.5rem;
  border-radius: var(--fd-radius-full);
}
.fd-product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fd-product-card__price {
  color: var(--fd-color-forest-deep);
  font-weight: bold;
  margin: 0;
}
.fd-product-card__cart-btn {
  background: none;
  border: none;
  color: var(--fd-color-forest-deep);
  cursor: pointer;
  transition: color 0.3s;
}
.fd-product-card__cart-btn:hover {
  color: var(--fd-color-moss-accent);
}

/* ==========================================================================
   ABOUT US SNIPPET (BENTO STYLE)
   ========================================================================= */
.fd-about {
  padding-top: var(--fd-stack-lg);
  padding-bottom: var(--fd-stack-lg);
}
.fd-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fd-gutter);
}
@media (min-width: 768px) {
  .fd-about__grid {
    grid-template-columns: repeat(12, 1fr);
  }
}
.fd-about__content-card {
  background-color: var(--fd-color-forest-deep);
  border-radius: var(--fd-radius-brand);
  padding: 3rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .fd-about__content-card {
    grid-column: span 7;
  }
}
.fd-about__badge {
  color: var(--fd-color-secondary-fixed-dim);
  margin-bottom: 1rem;
  display: block;
}
.fd-about__title {
  margin-bottom: 1.5rem;
}
.fd-about__desc {
  color: var(--fd-color-primary-fixed-dim);
  margin-bottom: 2rem;
}
.fd-about__stats {
  display: flex;
  gap: 2rem;
}
.fd-about__stat-label {
  opacity: 0.6;
}
.fd-about__image-card {
  border-radius: var(--fd-radius-brand);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}
@media (min-width: 768px) {
  .fd-about__image-card {
    grid-column: span 5;
  }
}
.fd-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   INSTAGRAM FEED SECTION
   ========================================================================== */
.fd-instagram {
  overflow: hidden;
}

.fd-instagram__header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fd-instagram__title {
  color: var(--fd-color-forest-deep);
}
.fd-instagram__follow-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--fd-color-forest-deep);
  cursor: pointer;
}