* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", sans-serif;
  background-color: #f9f6f2;
  color: #2e2e2e;
  line-height: 1.6;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f9f6f2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#main-content {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.site-header {
  background: #f9f6f2;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #7a5c3a;
}

.main-nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: #7a5c3a;
  font-weight: 550;
  padding: 10px;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav a:hover {
  background-color: #5e452b;
  color: white;
}

.header-icons {
  display: flex;
  align-items: center;
}

.header-icons input[type="text"] {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.header-icons a {
  margin-left: 1rem;
  color: #7a5c3a;
  text-decoration: none;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  margin-left: 1rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0px;
    right: -100%;
    width: 40%;
    height: 100vh;
    background: #f9f6f2;
    transition: right 0.3s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }

  .main-nav.open {
    right: 0;
  }

  .header-icons input[type="text"] {
    display: none;
  }

  .hamburger {
    display: block;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 900;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-background.fade-bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.bg-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 1s ease-in-out;
}

.headline {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.subheadline {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.description {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #e2e2e2;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn.primary {
  background-color: #7a5c3a;
  color: white;
}

.btn.primary:hover {
  background-color: #5e452b;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.contact-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #7a5c3a;
  color: white;
  font-size: 1.8rem;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-btn svg {
  display: block;
}

.contact-btn.hide {
  transform: translateY(100px);
  opacity: 0;
}

.contact-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .headline {
    font-size: 2rem;
  }

  .subheadline {
    font-size: 1.2rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .hero {
    height: 90vh;
  }

  .contact-btn {
    display: none;
  }
}

.new-arrivals {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f9f6f2;
  position: relative;
}

.new-arrivals h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #7a5c3a;
}

.section-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.arrival-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrival-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
  flex-grow: 1;
}

.arrival-grid::-webkit-scrollbar {
  display: none;
}

.arrival-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-width: 240px;
  flex-shrink: 0;
}

.arrival-card:hover {
  transform: translateY(-6px);
}

.arrival-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #7a5c3a;
  color: #fff;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

.arrival-card h3 {
  font-size: 1.1rem;
  color: #2e2e2e;
  margin: 1rem 0 0.5rem;
}

.arrival-card p {
  font-size: 1rem;
  color: #7a5c3a;
  margin-bottom: 1rem;
}

.scroll-btn {
  background-color: rgba(122, 92, 58, 0.8);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  user-select: none;
  flex-shrink: 0;
}

.scroll-btn:hover {
  background-color: #7a5c3a;
  box-shadow: 0 0 8px rgba(122, 92, 58, 0.7);
}

.scroll-btn.left {
  margin-right: 0.5rem;
}

.scroll-btn.right {
  margin-left: 0.5rem;
}

.card-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.card-buttons button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.btn-buy {
  background-color: #7a5c3a;
  color: #fff;
}

.btn-buy:hover {
  background-color: #5e452b;
  transform: scale(1.05);
}

.btn-cart {
  background-color: #f3f3f3;
  color: #7a5c3a;
  border: 1px solid #7a5c3a;
}

.btn-cart:hover {
  background-color: #e7e1da;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .card-buttons {
    flex-direction: column;
    align-items: center;
  }

  .card-buttons button {
    width: 100%;
    max-width: 160px;
  }
}

.categories {
  padding: 2rem 2rem;
  background-color: #f9f6f2;
  text-align: center;
}

.categories h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: #7a5c3a;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.category-card span {
  background-color: rgba(122, 92, 58, 0.8);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  width: 100%;
  text-align: center;
  font-weight: 500;
}

.category-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.promo-banner {
  background-color: #7a5c3a;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.8rem 0;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promo-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

.promo-banner p {
  display: inline-block;
  padding-right: 100%;
}

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

.single-product-banner {
  background-image: url("img/johnny-briggs-Asheyr3zRLE-unsplash.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
  border-radius: 0px;
  overflow: hidden;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.banner-content {
  color: #fff;
  text-align: center;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.banner-btn {
  background-color: #7a5c3a;
  color: #fff;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.banner-btn:hover {
  background-color: #5d4428;
}

.visit-store {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f9f6f2;
}

.visit-store h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #7a5c3a;
}

.visit-store .section-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.store-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
  flex-grow: 1;
}

.store-grid::-webkit-scrollbar {
  display: none;
}

.store-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-width: 260px;
  flex-shrink: 0;
}

.store-card:hover {
  transform: translateY(-6px);
}

.store-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.store-info {
  padding: 1rem;
  text-align: left;
}

.store-info h3 {
  font-size: 1.1rem;
  color: #2e2e2e;
  margin-bottom: 0.5rem;
}

.store-info p {
  font-size: 0.95rem;
  color: #7a5c3a;
}

.contact-section {
  padding: 4rem 2rem;
  background-color: #f9f6f2;
  font-family: "Helvetica Neue", sans-serif;
  color: #2e2e2e;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  box-sizing: border-box;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #7a5c3a;
}

.contact-info p {
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  word-break: break-word;
}

.info-item .icon {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: #7a5c3a;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fafafa;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #7a5c3a;
  outline: none;
}

.submit-btn {
  background-color: #7a5c3a;
  color: #fff;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #5e452b;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .contact-info h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .contact-info p {
    font-size: 0.95rem;
    text-align: center;
  }

  .info-item {
    justify-content: center;
    font-size: 0.95rem;
    text-align: center;
  }

  .contact-form {
    width: 100%;
  }

  .submit-btn {
    width: 100%;
  }
}

.highlights-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #f9f6f2;
  border-top: 1px solid #ddd;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
}

.highlight-item {
  margin: 0.5rem 1rem;
  color: #2e2e2e;
}

.highlight-item strong {
  color: #7a5c3a;
  font-size: 1.1rem;
  display: block;
}

.brand-promotion {
  overflow: hidden;
  background: #f9f6f2;
  padding: 2rem 0;
  border-top: 1px solid #e0dcd6;
  border-bottom: 1px solid #e0dcd6;
}

.brand-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.brand-item {
  flex: 0 0 auto;
  margin: 0 2rem;
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: transform 0.3s, opacity 0.3s;
}

.brand-item img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.site-footer {
  background-color: #2e2e2e;
  color: #f9f6f2;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

.footer-links ul,
.footer-support ul {
  list-style: none;
  padding: 0;
}

.footer-links h4,
.footer-support h4,
.footer-news h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links a,
.footer-support a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-support a:hover {
  color: #fff;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  padding: 0.6rem;
  border-radius: 6px;
  border: none;
  flex: 1;
  font-size: 0.95rem;
}

.newsletter-form button {
  padding: 0.6rem 0.1rem;
  border: none;
  background-color: #7a5c3a;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #5e452b;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.payment-methods img {
  height: 28px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}
