/* GLOBAL RESETS & TYPOGRAPHY */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #ede8dc; /* Warm beige background */
  color: #1c1311;
  line-height: 1.4;
}

/* LOGO */
.brand-logo {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: #ffffff;
  font-family: sans-serif;
  line-height: 1;
  cursor: pointer;
}

.brand-logo img {
  width: 100%;
  max-width: 600px;
}

/* HERO HEADER */
.hero-header {
  background-color: #1a0f0d;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.header-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 100%;
}

.tagline {
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 300;
}

.btn-shop-top,
.btn-shop-bottom {
  background-color: #ede8dc;
  color: #1c1311;
  padding: 10px 28px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-shop-top:hover,
.btn-shop-bottom:hover {
  opacity: 0.9;
}

/* MAIN CONTENT */
.main-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 45px;
  color: #1c1311;
}

.section-title strong {
  font-weight: 800;
}

/* LOCATIONS GRID */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

/* STORE CARD (2-COLUMN FLEX LAYOUT) */
.store-card {
  display: flex;
  background-color: #f6f3eb;
  border: 1px solid #1c1311;
  overflow: hidden;
  max-height: 200px;
}

.store-card-full {
  grid-column: span 2;
  width: 50%;
  margin: 0 auto;
}

.store-info {
  flex: 1;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.store-info h2 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 2px;
}

.type-tag {
  font-size: 0.75rem;
  color: #a18342; /* Gold accent */
  font-weight: 700;
  display: block;
}

.store-info address {
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #333333;
  font-weight: 500;
}

.store-info .phone {
  font-size: 0.75rem;
}

.store-info .phone a {
  color: inherit;
  text-decoration: none;
}

.btn-card-shop {
  display: inline-block;
  background-color: #1c1311;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 18px;
  letter-spacing: 1px;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.btn-card-shop:hover {
  background-color: #79605b;
}

.store-img {
  width: 58%;
  flex-shrink: 0;
}

.store-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* REVIEWS CAROUSEL SECTION */
.reviews-card {
  display: flex;
  background-color: #53592c; /* Deep green */
  color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.reviews-content {
  flex: 1;
  padding: 35px 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.reviews-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.btn-next-review {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 5px;
  transition: transform 0.2s ease;
}

.btn-next-review:hover {
  transform: translateX(4px);
}

.reviews-slides {
  position: relative;
  min-height: 180px;
}

.review-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.review-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.stars {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #ffffff;
}

.review-text {
  font-size: 0.8rem;
  line-height: 1.45;
  margin-bottom: 18px;
  opacity: 0.95;
  font-weight: 400;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.reviews-image {
  width: 50%;
  flex-shrink: 0;
}

.reviews-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FOOTER */
.footer {
  background-color: #1a0f0d;
  padding: 30px 20px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .brand-logo {
  font-size: 2.2rem;
}

.footer .brand-logo img {
  max-width: 250px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 850px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .store-card-full {
    grid-column: auto;
    width: 100%;
  }

  .header-actions {
    flex-direction: column;
    gap: 12px;
  }

  .reviews-card {
    flex-direction: column;
  }

  .reviews-image {
    width: 100%;
    height: 240px;
    display: none;
  }
}

@media (max-width: 500px) {
  .store-card {
    flex-direction: column-reverse;
  }

  .store-img {
    width: 100%;
    height: 180px;
  }

  .brand-logo {
    font-size: 2.8rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}