/* =========================
   RESET & BASE STYLES
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f8f8;
  color: #333;
  min-height: 100vh;
  line-height: 1.5;
  font-size: 16px;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
.site-header {
  background: #fff;
  box-shadow: 0 3px 18px #0001;
  margin-bottom: 2rem;
}
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3vw;
  border-bottom: 1px solid #e9e9e9;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.logo {
  height: 46px;
  width: 46px;
  object-fit: contain;
}
.brand-text {
  font-size: 2.1rem;
  font-weight: 700;
  color: #449;
  letter-spacing: 2px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.main-nav a {
  color: #263238;
  font-weight: 500;
  margin: 0 1rem;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s, border-bottom 0.2s;
}
.main-nav a:hover {
  color: #4b948b;
  border-bottom: 2px solid #4b948b;
}

/* =========================
   HERO/SLIDESHOW CAROUSEL (FULL LANDSCAPE)
   ========================= */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.78);
  color: #222;
  font-size: 2.2rem;
  cursor: pointer;
  box-shadow: 0 3px 12px #0002;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, opacity 0.18s;
}
.carousel-btn:hover {
  opacity: 1;
  background: #e6e6e6;
}
.left-btn  { left: 18px; }
.right-btn { right: 18px; }

.carousel {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 44vw;
  min-height: 240px;
  max-height: 540px;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slides {
  width: 100vw;
  height: 100%;
  position: relative;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s cubic-bezier(0.77,0,0.175,1);
  width: 100vw;
  height: 100%;
  display: flex;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}
.carousel-slide img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.6rem;
  background: rgba(255,255,255,0.81);
  color: #222;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  cursor: pointer;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px #0003;
  opacity: 0.85;
  transition: background 0.2s, opacity 0.2s;
}
.carousel-arrow.left { left: 28px; }
.carousel-arrow.right { right: 28px; }
.carousel-arrow:hover { background: #eee; opacity: 1; }

.carousel-dots {
  position: absolute;
  bottom: 26px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}
.carousel-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255, 0.65);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.15s, transform 0.17s;
  box-shadow: 0 2px 8px #0002;
}
.carousel-dot.active {
  background: #4b948b;
  transform: scale(1.25);
  border-color: #4b948b;
}

@media (max-width: 800px) {
  .carousel, .carousel-slides, .carousel-slide img { height: 36vw !important; min-height: 120px; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 1.6rem; }
  .carousel-dots { bottom: 16px; }
}

@media (max-width: 500px) {
  .carousel { height: 40vw !important; min-height: 90px; }
  .carousel-arrow { width: 32px; height: 32px; font-size: 1.2rem; }
  .carousel-dots { bottom: 7px;}
}

.carousel-slides {
  position: relative;
  width: 100vw;
  height: 44vw;
  max-height: 540px;
  min-height: 240px;
  overflow: hidden;
}

.carousel-image-full {
  position: absolute;
  left: 0; top: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.6s cubic-bezier(0.7,0,0.3,1);
  pointer-events: none;
}

.carousel-image-full.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}


/* =========================
   MAIN CATEGORIES SECTION
   ========================= */
.categories-title {
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
  font-size: 2rem;
  color: #ad8624;
  letter-spacing: 1px;
  font-weight: 700;
}

.category-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.category-card {
  background: none;
  border-radius: 11px;
  box-shadow: none;
  width: 270px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.18s;
  padding-bottom: 1rem;
  /* You can add a subtle hover effect if you want */
}

.category-card:hover {
  transform: translateY(-7px) scale(1.045);
  box-shadow: 0 4px 16px #0001;
  background: #fffef7;
}

.category-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 11px 11px 0 0;
}

.category-card h3 {
  margin: 1.1rem 0 0.7rem 0;
  font-size: 1.20rem;
  color: #4b3c17;
  font-weight: 600;
}
.category-card p {
  font-size: 1rem;
  color: #444;
  padding: 0 1rem;
}

/* Responsive for smaller devices */
@media (max-width: 900px) {
  .category-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
  }
  .category-card { width: 95vw; max-width: 350px; }
}

/* =========================
   Vision
   ========================= */

.company-vision {
  background: #f5f5f7;
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 16px;
  margin: 2.5rem auto;
  max-width: 1200px;
  box-shadow: 0 3px 16px #e1e1e1;
}
.vision-layout {
  display: flex;
  align-items: stretch;
  gap: 2.8rem;
  flex-wrap: wrap;
}
.vision-panel {
  background: #fff;
  border-radius: 14px;
  flex: 1 1 380px;
  padding: 2.5rem 2rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  box-shadow: 0 2px 12px #e7e6e0;
  max-width: 530px;
  position: relative;
}
.vision-owner {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.1rem;
  border: 2px solid #ffe0a2;
  box-shadow: 0 1px 8px #f1d07855;
  align-self: flex-start;
}
.vision-content h3 {
  margin-bottom: 1.1rem;
  color: #ad8624;
  font-size: 2rem;
  font-weight: 700;
}
.vision-content p {
  color: #4a3e20;
  font-size: 1.09rem;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}
.vision-btn {
  background: #ffb300;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 24px;
  font-weight: 600;
  padding: 0.7rem 2.1rem;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px #fff3;
  transition: background 0.18s;
}
.vision-btn:hover {
  background: #c0982b;
  color: #fffbe9;
}
.vision-image {
  flex: 1 1 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
}
.vision-image img {
  width: 100%;
  height: 100%;
  min-width: 300px;
  max-width: 500px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 16px #ebebeb;
}
@media (max-width: 900px) {
  .vision-layout {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .vision-image img {
    min-width: 0;
    max-width: 99vw;
    height: 220px;
  }
}


/* =========================
   WHY US SECTION
   ========================= */
.why-us {
  margin: 2.5rem auto;
  max-width: 750px;
  padding: 2.2rem 2rem;
  background: linear-gradient(125deg, #fffbea 85%, #e9f6ff 100%);
  border-radius: 16px;
  box-shadow: 0 4px 18px #e2e2e2;
  border: 1px solid #f4ecd8;
  position: relative;
}

.why-us:before {
  content: "✨";
  position: absolute;
  font-size: 2.2rem;
  top: 22px;
  left: 24px;
  opacity: 0.4;
  pointer-events: none;
}

.why-us h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ad8624;
  margin-bottom: 1.4rem;
  letter-spacing: 1px;
}

.why-us ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.why-us ul li {
  font-size: 1.08rem;
  padding-left: 2.1em;
  position: relative;
  color: #423214;
  font-weight: 500;
  line-height: 1.5;
}

.why-us ul li:nth-child(1)::before { content: "🪔"; }
.why-us ul li:nth-child(2)::before { content: "🧵"; }
.why-us ul li:nth-child(3)::before { content: "👗"; }
.why-us ul li:nth-child(4)::before { content: "✔️"; }
.why-us ul li:nth-child(5)::before { content: "🎁"; }
.why-us ul li:nth-child(6)::before { content: "🚚"; }
.why-us ul li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1.2em;
}

@media (max-width: 680px) {
  .why-us {
    padding: 1.2rem 0.5rem;
  }
  .why-us ul {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 98vw;
  }
  .why-us h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}


/* =========================
   ABOUT US   
   ========================= */
.about-us {
  margin: 2.5rem 0;
  width: 100%;
}
.about-us h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ad8624;
  margin-bottom: 1.1rem;
}
.about-content.with-dual-owners {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2vw;
}
.owner-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  max-width: 180px;
}
.owner-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.6rem;
  box-shadow: 0 2px 10px #0001;
  border: 2.5px solid #ffe0a2;
  background: #fcf6e3;
}
.owner-details {
  text-align: center;
}
.owner-name {
  font-size: 1.08rem;
  font-weight: 600;
  color: #36454f;
}
.owner-title {
  font-size: 0.98rem;
  color: #807246;
}
.about-text {
  flex: 1;
  color: #423214;
  font-size: 1.08rem;
  min-width: 220px;
  max-width: 600px;
}
.about-text p {
  margin-bottom: 13px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .about-content.with-dual-owners {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1vw;
  }
  .owner-profile {
    max-width: none; min-width: 0;
    margin-bottom: 0.3rem;
  }
  .about-text { max-width: 98vw; }
  .owner-image { width: 85px; height: 85px; }
}


/* =========================
   FOOTER SECTION
   ========================= */
.footer {
  background: #fafafa;
  color: #222;
  padding: 2.5rem 0 1rem 0;
  font-size: 1rem;
  border-top: 1px solid #eee;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.footer-col ul,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li,
.footer-contact li {
  margin: 0.45rem 0;
}
.footer-col ul li a {
  color: #222;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #b7b7a4;
  text-decoration: underline;
}
.footer-contact li span {
  margin-right: 0.5em;
}
.footer-social {
  margin-top: 1rem;
  font-size: 1.4rem;
}
.footer-social a {
  margin-right: 1rem;
  color: #222;
  text-decoration: none;
  font-family: 'FontAwesome', 'Arial', sans-serif;
  transition: color 0.2s;
  vertical-align: middle;
}
.footer-social a:hover {
  color: #b7b7a4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
  font-size: 0.98rem;
  color: #757575;
  margin-top: 1rem;
}
.footer-bottom a {
  color: #6b705c;
  margin: 0 0.5rem;
  text-decoration: underline;
  font-weight: 500;
}
.footer-brand {
  display: block;
  margin: 0.5rem auto 0 auto;
  color: #bbb;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1200px) {
  .footer-container { gap: 1.5rem; }
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-col { min-width: 0; }
  .header-bar { flex-direction: column; gap: 1.2rem; }
  .main-nav { flex-wrap: wrap; justify-content: center; }
  .main-nav a { margin: 0 0.5rem; }
}
@media (max-width: 800px) {
  .carousel-image-full,
  .carousel-image { width: 98vw; height: 30vw; min-height: 120px; }
  .carousel-landscape { height: 60vw; min-height: 150px; }
  .carousel-btn { width: 42px; height: 42px; font-size: 1.5rem; }
  .header-bar { flex-direction: column; gap: 1.3rem; }
  .main-nav a { margin: 0 0.4rem; }
  .category-grid { flex-direction: column; gap: 1.2rem; }
  .hero { padding: 5rem 1vw 2.2rem 1vw; }
}
@media (max-width: 700px) {
  .carousel-landscape { height: 60vw; min-height: 100px; }
}
@media (max-width: 600px) {
  .why-us ul { columns: 1; }
  .category-card { width: 93vw; }
}

