/* [project]/src/components/HeroSlider.css [app-client] (css) */
.hero-slider {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 80vh;
  padding: 80px 4%;
  font-family: inherit;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-bg-img {
  object-fit: cover;
  object-position: center;
}

.hero-container {
  z-index: 1;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.hero-col {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-col-left, .hero-col-right {
  flex: 1;
  max-width: 25%;
}

.hero-col-center {
  text-align: center;
  flex: 2;
  padding: 0 40px;
}

.hero-leaf {
  filter: brightness(0) invert();
  opacity: .6;
  margin-bottom: 24px;
}

.hero-title {
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-subtitle {
  color: #ccc;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
}

.hero-subtitle span {
  color: #e5520a;
}

.btn-browse {
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(to right, #f37021, #e5520a);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 4px 15px #e5520a66;
}

.btn-browse:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #e5520a99;
}

.btn-browse .arrow {
  margin-left: 8px;
  transition: transform .3s;
}

.btn-browse:hover .arrow {
  transform: translateX(4px);
}

.hero-product-mask {
  aspect-ratio: 1;
  background-color: var(--mask-bg-color, transparent);
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  display: flex;
  -webkit-mask-image: url("/images/mask-7.svg");
  mask-image: url("/images/mask-7.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-product-img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.float-anim {
  animation: 6s ease-in-out infinite float;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
  }

  .hero-col-left, .hero-col-right {
    order: 2;
    max-width: 70%;
  }

  .hero-col-center {
    order: 1;
    padding: 0;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-slider {
    min-height: auto;
    padding: 40px 4%;
  }

  .hero-container {
    gap: 24px;
  }

  .hero-col-left, .hero-col-right {
    max-width: 100%;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    margin-bottom: 24px;
    font-size: 16px;
  }
}

/* [project]/src/components/MarqueeBar.css [app-client] (css) */
.marquee-container {
  white-space: nowrap;
  letter-spacing: .5px;
  width: 100%;
  padding: 12px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  overflow: hidden;
}

.marquee-content {
  align-items: center;
  width: max-content;
  display: flex;
}

.marquee-content.move-left {
  animation: 30s linear infinite scroll-left;
}

.marquee-content.move-right {
  animation: 30s linear infinite scroll-right;
}

.marquee-item {
  padding-right: 50px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-33.3333%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-content strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .marquee-container {
    padding: 8px 0;
    font-size: 14px;
  }
}

/* [project]/src/components/FeatureOverview.css [app-client] (css) */
.feature-overview {
  background-color: #f6f8fb;
  padding: 80px 4%;
  font-family: inherit;
}

.feature-container {
  text-align: center;
  max-width: 1248px;
  margin: 0 auto;
}

.feature-main-title {
  color: #1a1a1a;
  margin-bottom: 64px;
  font-size: 36px;
  font-weight: 700;
}

.feature-columns {
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  display: flex;
}

.feature-col {
  background: none;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 16px;
}

.feature-icon-wrapper {
  opacity: .8;
  filter: grayscale() brightness(0);
  margin-bottom: 24px;
}

.feature-title {
  color: #1a1a1a;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}

.feature-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-overview {
    padding: 40px 4%;
  }

  .feature-columns {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .feature-col {
    width: 100%;
    max-width: 100%;
  }

  .feature-main-title {
    margin-bottom: 40px;
    font-size: 28px;
  }
}

/* [project]/src/components/ProductGrid.css [app-client] (css) */
.product-grid-section {
  background-color: #fff;
  padding: 80px 4%;
  font-family: inherit;
}

.product-grid-container {
  max-width: 1248px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
}

.title-separator {
  background-color: #f37021;
  width: 60px;
  height: 3px;
  margin: 0 auto;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
  display: grid;
}

.product-card {
  flex-direction: column;
  transition: transform .3s;
  display: flex;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-link {
  text-decoration: none;
  display: block;
  position: relative;
}

.product-image-wrapper {
  aspect-ratio: 1;
  background-color: #f7f9fa;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.product-image {
  object-fit: cover;
  transition: transform .5s;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  opacity: 0;
  background: #1a1a1a66;
  justify-content: center;
  align-items: center;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  inset: 0;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.add-to-cart-btn {
  color: #fff;
  background-color: #f37021;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .3s;
  display: flex;
  transform: translateY(20px);
}

.product-card:hover .add-to-cart-btn {
  transform: translateY(0);
}

.product-info {
  text-align: center;
  padding: 0 10px;
}

.product-category {
  color: #777;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
  font-size: 13px;
  display: block;
}

.product-name-link {
  text-decoration: none;
}

.product-name {
  color: #1a1a1a;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  transition: color .3s;
}

.product-name-link:hover .product-name {
  color: #f37021;
}

.product-rating {
  color: #ffb400;
  margin-bottom: 8px;
  font-size: 14px;
}

.product-price {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

@media (max-width: 768px) {
  .product-grid-section {
    padding: 40px 4%;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-header {
    margin-bottom: 32px;
  }
}

/* [project]/src/components/NewsletterSection.css [app-client] (css) */
.home-newsletter {
  text-align: center;
  background: linear-gradient(135deg, #103178 0%, #1a4494 100%);
  padding: 80px 4%;
}

.home-newsletter-container {
  max-width: 600px;
  margin: 0 auto;
}

.home-newsletter-icon {
  color: #f37021;
  margin-bottom: 20px;
}

.home-newsletter-title {
  color: #fff;
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
}

.home-newsletter-desc {
  color: #ffffffbf;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.6;
}

.home-newsletter-form {
  border-radius: 50px;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 30px #0003;
}

.home-newsletter-input {
  color: #1a1a1a;
  background: #fff;
  border: none;
  outline: none;
  flex: 1;
  padding: 16px 24px;
  font-size: 15px;
}

.home-newsletter-input::placeholder {
  color: #94a3b8;
}

.home-newsletter-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: #f37021;
  border: none;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  transition: background .3s;
}

.home-newsletter-btn:hover {
  background: #e05f10;
}

.home-newsletter-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.home-newsletter-success {
  color: #34d399;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.home-newsletter-error {
  color: #fca5a5;
  margin-top: 12px;
  font-size: 14px;
}

@media (max-width: 560px) {
  .home-newsletter-form {
    border-radius: 12px;
    flex-direction: column;
  }

  .home-newsletter-input {
    border-radius: 12px 12px 0 0;
  }

  .home-newsletter-btn {
    border-radius: 0 0 12px 12px;
  }

  .home-newsletter-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .home-newsletter {
    padding: 40px 4%;
  }

  .home-newsletter-title {
    font-size: 24px;
  }

  .home-newsletter-desc {
    margin-bottom: 24px;
    font-size: 14px;
  }
}

/* [project]/src/components/LatestPosts.css [app-client] (css) */
.latest-posts-section {
  background-color: #f7f9fa;
  padding: 80px 4%;
}

.latest-posts-container {
  max-width: 1248px;
  margin: 0 auto;
}

.latest-posts-header {
  text-align: center;
  margin-bottom: 48px;
}

.latest-posts-title {
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
}

.latest-posts-separator {
  background-color: #f37021;
  width: 60px;
  height: 3px;
  margin: 0 auto;
}

.latest-posts-grid {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  display: grid;
}

.latest-post-card {
  background: #fff;
  border-radius: 8px;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 12px #0000000f;
}

.latest-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px #0000001f;
}

.latest-post-image-wrapper {
  aspect-ratio: 16 / 9;
  background-color: #e9ecef;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.latest-post-image {
  object-fit: cover;
  transition: transform .5s;
}

.latest-post-card:hover .latest-post-image {
  transform: scale(1.05);
}

.latest-post-placeholder {
  color: #ffffff4d;
  background: linear-gradient(135deg, #103178 0%, #1a4494 100%);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.latest-post-body {
  flex-direction: column;
  flex: 1;
  padding: 24px;
  display: flex;
}

.latest-post-date {
  color: #f37021;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

.latest-post-name {
  color: #1a1a1a;
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .3s;
}

.latest-post-card:hover .latest-post-name {
  color: #f37021;
}

.latest-post-summary {
  color: #666;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex: 1;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
}

.latest-post-link {
  color: inherit;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.latest-post-read-more {
  color: #103178;
  text-transform: uppercase;
  letter-spacing: .5px;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: color .3s;
  display: inline-flex;
}

.latest-post-card:hover .latest-post-read-more {
  color: #f37021;
}

@media (max-width: 768px) {
  .latest-posts-section {
    padding: 40px 4%;
  }

  .latest-posts-title {
    font-size: 24px;
  }

  .latest-posts-grid {
    grid-template-columns: 1fr;
  }

  .latest-posts-header {
    margin-bottom: 32px;
  }
}

/*# sourceMappingURL=src_components_84511b21._.css.map*/