@import "./globle.css";
@import "./components/header.css";
@import "./components/footer.css";

/* ===== NAVBAR ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 0 clamp(20px, 4vw, 50px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  height: 60px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0;
}
.nav-links a {
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 15px;
  color: #555;
  cursor: pointer;
  transition: border-color 0.2s;
  width: 220px;
}
.search-bar:hover {
  border-color: var(--green);
}

.btn-outline-orange {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--orange);
  border-radius: 200px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  border-radius: 200px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 153, 51, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 190;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--green);
}

/* ===== HERO SWIPER ===== */
.hero-swiper {
  width: 100%;
  height: min(85vh, 780px);
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    88deg,
    rgba(255, 255, 255, 0.98) 15%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 75%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 620px; */
  /* margin-left: clamp(20px, 11%, 216px); */
  /* padding: 60px 0; */
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.22;
  color: var(--green);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
  max-width: 540px;
}

/* Swiper custom controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: auto;
  height: auto;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 0.5px solid white;
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  bottom: 50px;
  top: auto;
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  display: none;
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.88);
}
.hero-swiper .swiper-button-prev {
  left: clamp(20px, 4vw, 50px);
}
.hero-swiper .swiper-button-next {
  right: clamp(20px, 4vw, 50px);
}

.hero-swiper .swiper-pagination {
  bottom: 60px;
}
.hero-swiper .swiper-pagination-bullet {
  width: 44px;
  height: 4.5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background-image: url(../images/bg/bg-4351.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: var(--section-pad);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1820px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.feature-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 86, 50, 0.08);
  border-radius: 10px;
}
.feature-icon svg {
  width: 32px;
  height: 32px;
}
.feature-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--green);
  margin-bottom: 4px;
}
.feature-sub {
  font-size: 14px;
  color: #555;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1820px;
  margin: 0 auto 40px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0;
}
.explore-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
  color: var(--dark);
  transition: gap 0.2s;
}
.explore-link:hover {
  gap: 16px;
}

/* ===== PRODUCTS SWIPER ===== */
.products-section {
  padding: var(--section-pad);
}
.products-swiper {
  max-width: 1820px;
  margin: 0 auto;
  padding-bottom: 25px !important;
}
.products-swiper .swiper-pagination-bullet {
  width: 20px;
  height: 4.5px;
  border-radius: 10px;
  background: #ddd;
  opacity: 1;
}
.products-swiper .swiper-pagination-bullet-active {
  background: var(--green);
}

.swiper-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1820px;
  margin: 0 auto 30px;
}
.swiper-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.swiper-nav-btn:hover {
  color: var(--green);
}
.swiper-nav-btn svg {
  width: 20px;
  height: 20px;
}

.product-card {
  overflow: hidden;
  background: #fff;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
}
.product-card-img {
  background: var(--cream);
  height: 450px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 20px 0px;
}
.product-card-title {
  font-size: clamp(18px, 1.1vw, 18px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== GANESHA BANNER ===== */
.ganesha-banner {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  min-height: clamp(500px, 55vw, 808px);
  display: flex;
  align-items: center;
}
.ganesha-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}
.ganesha-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
  max-width: 1788px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 84px);
  width: 100%;
  flex-wrap: wrap;
}
.ganesha-text {
  flex: 0 0 clamp(260px, 35%, 500px);
}
.ganesha-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 20px;
  line-height: 1.25;
}
.ganesha-text p {
  font-size: clamp(14px, 1vw, 16px);
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-cards-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  flex: 1;
  min-width: 260px;
}
.product-card-mini {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.product-card-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
}
.product-card-mini-img {
  background: var(--cream);
  height: clamp(180px, 20vw, 280px);
  overflow: hidden;
}
.product-card-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card-mini:hover .product-card-mini-img img {
  transform: scale(1.05);
}
.product-card-mini-info {
  padding: 14px 16px 16px;
}
.pcm-title {
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.pcm-stars {
  display: flex;
  gap: 3px;
  color: var(--orange);
  font-size: 14px;
}

/* ===== CATEGORY SPLIT ===== */
.category-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  min-height: clamp(300px, 50vw, 700px);
}
.category-half {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  min-height: 400px;
}
.category-half-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.category-half:hover .category-half-bg {
  transform: scale(1.06);
}
.category-half-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.category-half-content {
  position: absolute;
  top: clamp(24px, 4vw, 50px);
  left: clamp(20px, 4vw, 50px);
  z-index: 2;
  color: #fff;
}
.category-half-content h3 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  margin-bottom: 8px;
}
.category-half-content p {
  font-size: clamp(13px, 1vw, 16px);
  opacity: 0.85;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 28px;
}
.about-content p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 18px;
}
.about-content .btn-orange {
  margin: 20px auto 0;
}

/* ===== CRAFTING SECTION ===== */
.crafting-section {
  padding: var(--section-pad);
  background-image: url(../images/bg/shiv-parvatiji-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.crafting-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--green);
  text-align: center;
  margin-bottom: 56px;
}
.crafting-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  max-width: 1620px;
  margin: 0 auto;
  align-items: center;
}
.crafting-col {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.crafting-item-num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 10px;
}
.crafting-item-title {
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.crafting-item-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.crafting-img-center {  
  overflow: hidden;
}
.crafting-img-center img {
  width: 100%;
  object-fit: cover;
}

/* ===== WHATS NEW ===== */
.whats-new-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1820px;
  margin: 0 auto;
}
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--light);
  min-height: clamp(350px, 22vw, 450px);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}
.collection-card.wide {
  grid-column: span 2;
}
.collection-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.collection-card:hover .collection-card-bg {
  transform: scale(1.04);
}
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.collection-card-info {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 16px;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.collection-card-info h3 {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 600;
  margin-bottom: 6px;
}
.collection-card-info p {
  font-size: clamp(12px, 0.9vw, 15px);
  opacity: 0.85;
}

/* ===== TESTIMONIALS SWIPER ===== */
.testimonials-section {
background-image: url(../images/bg/testimonial-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}


.testimonials-inner {
  position: relative;
  z-index: 2;
  max-width: 1420px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 400;
  color: var(--green);
}
.testimonials-header p {
  font-size: clamp(14px, 1.1vw, 18px);
  color: var(--muted);
  margin-top: 14px;
}

.reviews-swiper {
  padding-bottom: 50px !important;
}
.reviews-swiper .swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  border-radius: 4px;
  background: #ddd;
  opacity: 1;
}
.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--green);
}

.review-card {
  background: #fff;
  padding: clamp(22px, 2.5vw, 25px);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.review-stars {
  display: flex;
  gap: 4px;
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 16px;
}
.review-text {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 22px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}
.reviewer-name {
  font-size: 16px;
  font-weight: 600;
}
.reviewer-loc {
  font-size: 13px;
  color: var(--muted);
}



/* ===== FEATURED WIDE CARDS ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1820px;
  margin: 0 auto;
}

.featured-card {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 40px auto;
  background: #f1efe9;
  overflow: hidden;
  border: 1px solid #dcd8cf;
}

/* LEFT IMAGE */
.featured-card-img {
  flex: 3;
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT CONTENT */
.featured-card-body {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* HEADING */
.featured-card-body h3 {
  font-size: 36px;
  font-weight: 500;
  color: #1e1e1e;
}

/* DESCRIPTION */
.featured-card-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #5a5a5a;
  max-width: 420px;
}

/* LINK STYLE */
.featured-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 500;
  color: #385632;
  transition: all 0.3s ease;
}

.featured-card-body a svg {
  transition: transform 0.3s ease;
}

.featured-card-body a:hover svg {
  transform: translateX(5px);
}

/* ===== SERVICE STRIP ===== */
.service-strip {
    background-image: url(../images/bg/why-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: var(--section-pad);
}
.service-strip .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1620px;
  margin: 0 auto;
  text-align: center;
  margin-top: 60px;
}
.service-strip .service-item {
  padding: 24px;
  background-color: #fff;
  border: 1px solid #2a4027;

}
.service-strip .service-icon {
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-strip .service-icon svg {
  width: 32px;
  height: 32px;
}
.service-strip .service-title {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-strip .service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}



/* Ganesha Section CSS */

.ganesha-section{
  position:relative;
  width:100%;
  padding:80px 5%;
  background: url("../images/bg/ganesha-idol-bg.jpg") no-repeat center center/cover;
  overflow:hidden;
}

.ganesha-container{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  z-index:2;
}

.ganesha-content{
  max-width:400px;
}

.ganesha-content h2{
  font-size:36px;
  font-weight:500;
  color:#222;
  line-height:1.3;
}

.ganesha-btn{
  display:inline-block;
  padding:14px 28px;
  background:#4c6b3c;
  color:#fff;
  border-radius:40px;
  text-decoration:none;
  transition:0.3s;
}

.ganesha-btn:hover{
  background:#2e4425;
}

.ganesha-slider{
  width:40%;
}

.ganesha-card{
  background:#fff;
  padding:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.ganesha-card img{
  width:100%;
  margin-bottom:15px;
}

.ganesha-card h4{
  font-size:18px;
  margin-bottom:0px;
}

.stars{
  color:#f4a300;
  font-size:16px;
}

/* Responsive */

@media(max-width:1024px){

  .ganesha-container{
    flex-direction:column;
    text-align:center;
  }

  .ganesha-slider{
    width:100%;
  }

  .ganesha-content h2{
    font-size:24px;
  }
}

@media(max-width:600px){

  .ganesha-section{
    padding:60px 20px;
  }

  .ganesha-content h2{
    font-size:22px;
  }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  
  .service-strip .service-grid {
     grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ganesha-left img{
    width: 150px; margin: auto;
  }
  .crafting-img-center img{
    width: 150px; margin: auto;
  }
  .category-split .info-row {gap: 20px !important;}
  .nav-links,
  .search-bar {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .crafting-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .crafting-img-center {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-card.wide {
    grid-column: span 2;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .ganesha-banner-content {
    flex-direction: column;
  }
  .ganesha-text {
    flex: none;
  }
}

@media (max-width: 768px) {
  product-card p {
    font-size: 14px;
  }
  nav img {height: 70px !important; width: 100% !important;}
  .btn-orange {
    gap: 5px !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
  }
  .hero-swiper .swiper-slide{
    align-items: start;
    padding-top: 30px;
  }
  .hero-swiper{
    height: 650px;
  }
  .hero-overlay{
    display: none;
  }
  .category-split .info-row {gap: 20px;}
  .swiper-nav-row{
    display:block;
    text-align: center;
  }
  .explore-link  {
    justify-content: center;
    margin-top: 6px !important;
  }
  .features-bar {
    background-image: none;
    background-color: #e9e2cf;
  }
  .service-strip .service-grid {
     grid-template-columns: repeat(1, 1fr);
  }
    .featured-card {
    flex-direction: column;
  }

  .featured-card-body {
    padding: 20px;
  }
  .category-split {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .collection-grid {
    grid-template-columns: 1fr;
  }
  .collection-card.wide {
    grid-column: span 1;
  }
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    display: none;
  }
  .featured-card {
    flex-direction: column;
  }
  .featured-card-img {
    width: 100%;
    height: 220px;
  }
  .product-cards-mini {
    grid-template-columns: repeat(2, 1fr);
  }  
}

@media (max-width: 480px) {
  :root {
    --nav-h: 70px;
  }
  .btn-outline-orange {
    display: none;
  }
}


.category-split .product-info-section{
  position:relative;
  width:100%;
  height:700px;
  overflow:hidden;
}

.category-split .product-bg{
  width:100%;
  height:100%;
  object-fit:cover;
}

.category-split .product-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:100px;
  background:linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
}

.category-split .product-info-box{
  width:80%;
  max-width:900px;
  text-align:center;
  color:#fff;
}

.category-split .info-title h3{
  display:inline-block;
  padding:10px 30px;
  border:1px solid rgba(255,255,255,0.6);
  font-size:24px;
  font-weight:500;
  margin-bottom:40px;
}

.category-split .info-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
}

.category-split .info-col h4{
  font-size:22px;
  margin-bottom:10px;
  font-weight:500;
}

.category-split .info-col p{
  font-size:18px;
  opacity:0.9;
}

.category-split .info-divider{
  width:1px;
  height:60px;
  background:rgba(255,255,255,0.6);
}

.category-split .info-line{
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.6);
  margin-top:40px;
}

/* Responsive */

@media(max-width:768px){

  .category-split .product-info-section{
    height:550px;
  }

  /* .category-split .info-row{
    flex-direction:column;
    gap:30px;
  } */

  
  .category-split .info-title h3{
    font-size:22px;
  }

  .category-split .info-col h4{
    font-size:18px;
  }

  .category-split .info-col p{
    font-size:16px;
  }
}


    

    /* ── INFO + FORM GRID ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 4rem;
      align-items: start;
      padding: 5rem;
    }

    /* INFO SIDE */
    .info-side h2 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 400;
      color: var(--green);
      line-height: 1.25;
      margin-bottom: 1.2rem;
    }
    .info-side p {
      color: var(--text-mid);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .info-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .info-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      background: var(--white);
      border-radius: 14px;
      border: 1px solid var(--border);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .info-card:hover {
      box-shadow: 0 8px 30px rgba(61,90,46,0.1);
      transform: translateY(-2px);
    }
    .info-card-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--cream);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .info-card-body strong {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--orange);
      margin-bottom: 0.25rem;
    }
    .info-card-body p {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.5;
      margin: 0;
    }
    .info-card-body a {
      color: inherit;
      text-decoration: none;
    }
    .info-card-body a:hover { color: var(--green); }

    .social-row {
      margin-top: 2rem;
      display: flex;
      gap: 0.75rem;
    }
    .social-btn {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      text-decoration: none;
      color: var(--text-mid);
    }
    .social-btn:hover {
      background: var(--green);
      border-color: var(--green);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* MAP SNIPPET */
    .map-card {
      margin-top: 1.5rem;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      height: 160px;
      position: relative;
      background: linear-gradient(135deg, #d4e8c2 0%, #b5d4a0 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .map-card-overlay {
      text-align: center;
    }
    .map-card-overlay .map-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      display: block;
    }
    .map-card-overlay p {
      font-size: 0.8rem;
      color: var(--green-dark);
      font-weight: 500;
      margin: 0;
    }
    .map-card-overlay a {
      display: inline-block;
      margin-top: 0.5rem;
      font-size: 0.78rem;
      color: var(--orange-dark);
      text-decoration: underline;
    }

    /* FORM SIDE */
    .form-side {
      background: var(--white);
      border-radius: 20px;
      padding: 2.5rem 2.5rem;
      border: 1px solid var(--border);
      box-shadow: 0 10px 50px rgba(61,90,46,0.07);
    }
    .form-header {
      margin-bottom: 2rem;
    }
    .form-header .tag {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--orange);
      display: block;
      margin-bottom: 0.5rem;
    }
    .form-header .tag::before { content: '— '; }
    .form-header h3 {
      
      font-size: 1.8rem;
      font-weight: 400;
      color: var(--green);
    }
    .form-header p {
      font-size: 0.88rem;
      color: var(--text-light);
      margin-top: 0.4rem;
      line-height: 1.6;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-bottom: 1.25rem;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .form-group.full { grid-column: 1 / -1; }
    label {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-mid);
      letter-spacing: 0.02em;
    }
    label span.req { color: var(--orange); }
    input, textarea, select {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text-dark);
      background: var(--cream);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      width: 100%;
    }
    input::placeholder, textarea::placeholder { color: #b0a898; }
    input:focus, textarea:focus, select:focus {
      border-color: var(--green);
      background: var(--white);
    }
    select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a7a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
    }
    textarea { min-height: 130px; resize: vertical; }

    .preferred-time {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }
    .time-chip {
      padding: 0.4rem 1rem;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      background: var(--cream);
      font-size: 0.8rem;
      cursor: pointer;
      transition: all 0.2s;
      color: var(--text-mid);
    }
    .time-chip:hover, .time-chip.active {
      border-color: var(--green);
      background: var(--green);
      color: var(--white);
    }

    .btn-send {
      width: 100%;
      padding: 1rem;
      background: var(--orange);
      color: var(--white);
      border: none;
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      margin-top: 1.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-send:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }
    .btn-send svg { width: 18px; height: 18px; }

    .form-note {
      text-align: center;
      font-size: 0.78rem;
      color: var(--text-light);
      margin-top: 1rem;
    }

    
    

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 3rem;}
    }
    @media (max-width: 768px) {
      .nav-links, .btn-contact-nav { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: var(--white);
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--border);
        gap: 1.25rem;
      }
      .form-row { grid-template-columns: 1fr; }
      .contact-grid { padding: 1rem;}
    }
    @media (max-width: 480px) {
      .form-side { padding: 1.75rem 1.5rem; }
      .category-split .info-col p{
          font-size:16px;
        }
        .category-split .info-title h3{
          font-size: 20px; margin-bottom: 30px;
        }
        .category-split .info-line{
          margin-top: 20px;
        }
    }

    /* Entrance animation */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .contact-hero > * { position: relative; }
    .contact-hero .tag  { animation: fadeUp 0.6s ease both; }
    .contact-hero h1    { animation: fadeUp 0.7s 0.1s ease both; }
    .contact-hero p     { animation: fadeUp 0.7s 0.2s ease both; }


/* OUR CREATIVE GALLERY */


    /* ── GALLERY SECTION ── */
    .gallery-section { max-width: 1280px; margin: 0 auto; padding: 3.5rem 2rem 5rem; }
    .section-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); text-align: center; margin-bottom: 0.5rem; }
    .section-label::before { content: '— '; }
    .gallery-section .section-title {  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: var(--green); text-align: center; margin-bottom: 1.5rem }

    /* ── TAB BAR — screenshot style ── */
    .tab-bar-outer {
      position: relative;
      margin-bottom: 2.5rem;
    }
    /* Edge fade hints for horizontal scroll */
    .tab-bar-outer::after {
      content: '';
      position: absolute; top: 0; right: 0; bottom: 8px; width: 48px;
      background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
      pointer-events: none; z-index: 2;
    }
    .tab-bar {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 5px 40px;
      flex-wrap: nowrap;
    }
    .tab-bar::-webkit-scrollbar { display: none; }

    .tab-scroll-btn {
      position: absolute;
      top: 0;
      bottom: 0px;
      width: 50px;
      /* height: 100%; */
      border-radius: 5px;
      border: none;
      background: rgba(255,255,255,0.9);
      cursor: pointer;
      z-index: 3;
      font-size: 20px;
      font-weight: bold;
      transition: 0.2s;
    }

    .tab-scroll-btn:hover {
      background: #e8813a;
    }

    .tab-scroll-btn.left {
      left: 0;
    }

    .tab-scroll-btn.right {
      right: 0;
    }

    .tab-btn {
      flex: 0 0 auto;
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.52rem 1.2rem;
      border-radius: 50px;
      border: 1.5px solid #d8d4cc;
      background: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem; font-weight: 400;
      color: #3a3a3a;
      cursor: pointer; white-space: nowrap;
      transition: all 0.2s ease;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      letter-spacing: -0.01em;
    }
    .tab-btn:hover { border-color: #999; color: var(--text-dark); box-shadow: 0 2px 8px rgba(0,0,0,0.09); }
    .tab-btn.active {
      background: var(--tab-active);
      border-color: var(--tab-active);
      color: #fff;
      font-weight: 500;
      box-shadow: 0 3px 12px rgba(44,82,200,0.3);
    }
    .tab-emoji { font-size: 0.95rem; line-height: 1; }
    .tab-count {
      font-size: 0.7rem; font-weight: 400;
      background: rgba(0,0,0,0.07);
      border-radius: 50px; padding: 0.03rem 0.45rem;
      margin-left: 0.05rem; color: var(--text-light);
    }
    .tab-btn.active .tab-count { background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); }

    /* ── MASONRY GRID ── */
    .masonry-grid { columns: 4; column-gap: 1rem; }
    .gallery-item {
      break-inside: avoid; margin-bottom: 1rem;
      border-radius: 14px; overflow: hidden; position: relative;
      cursor: pointer; background: var(--cream-dark);
      border: 1px solid var(--border);
      transition: transform 0.32s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.32s;
    }
    .gallery-item:hover { transform: translateY(-5px) scale(1.012); box-shadow: 0 18px 46px rgba(61,90,46,0.17); z-index: 2; }
    .gallery-item.tall img     { aspect-ratio: 2/3; }
    .gallery-item.portrait img { aspect-ratio: 3/4; }
    .gallery-item.square img   { aspect-ratio: 1/1; }
    .gallery-item.wide img     { aspect-ratio: 4/3; }
    .gallery-item img { width: 100%; display: block; object-fit: cover; transition: transform 0.45s ease; }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(20,40,10,0.88) 0%, rgba(0,0,0,0) 55%);
      opacity: 0; transition: opacity 0.3s;
      display: flex; align-items: flex-end; padding: 1rem;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .oc-tag { display: inline-block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange-light); margin-bottom: 0.2rem; }
    .overlay-content h4 {  font-size: 0.9rem; color: white; font-weight: 400; line-height: 1.3; }
    .overlay-content p { font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 0.1rem; }
    .overlay-zoom {
      position: absolute; top: 0.7rem; right: 0.7rem;
      width: 32px; height: 32px; background: rgba(255,255,255,0.18);
      backdrop-filter: blur(6px); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 0.95rem;
      opacity: 0; transform: scale(0.7);
      transition: opacity 0.3s, transform 0.3s;
    }
    .gallery-item:hover .overlay-zoom { opacity: 1; transform: scale(1); }

    /* ── LOAD MORE ── */
    .pagination-wrap { text-align: center; margin-top: 2.5rem; }
    .page-info { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }
    .page-info span { color: var(--green); font-weight: 500; }
    .load-more-btn {
      display: inline-flex; align-items: center; gap: 0.55rem;
      padding: 0.85rem 2.5rem;
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
      color: var(--text-dark); cursor: pointer;
      transition: all 0.22s; box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    }
    .load-more-btn:hover { border-color: var(--green); color: var(--green); box-shadow: 0 4px 20px rgba(61,90,46,0.12); transform: translateY(-1px); }
    .load-more-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; border-color: var(--border); color: var(--text-light); }
    .progress-bar-wrap { max-width: 260px; margin: 1.25rem auto 0; background: var(--border); border-radius: 50px; height: 5px; overflow: hidden; }
    .progress-bar-fill { height: 100%; background: var(--orange); border-radius: 50px; transition: width 0.5s ease; }

.success-box {
  display: none;
  background: #e6f9f0;
  border: 1px solid #b7ebd3;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: #28a745;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-box h3 {
  color: #1e7e34;
  margin-bottom: 0.5rem;
}

.success-box p {
  color: #155724;
  font-size: 14px;
}

/* smooth animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== GALLERY GRID FIX ===== */
#mainGrid {
  column-count: 4;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  width: 100%;
}

@media (max-width: 992px) {
  #mainGrid {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  #mainGrid {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  #mainGrid {
    column-count: 1;
  }
}
.square { height: 250px; }
.portrait { height: 350px; }
.tall { height: 400px; }
.wide { height: 200px; }

/* Search box wrapper */
.search-bar {
    position: relative;
    width: 320px;
}


/* Dropdown */
#suggestions {
    position: absolute;
    top: 62px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
}

/* Each item */
.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover effect */
.suggestion-item:hover {
    background: #f7f7f7;
}

/* Product Image */
.suggestion-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

/* Text wrapper */
.suggestion-text {
    display: flex;
    flex-direction: column;
}

/* Product name */
.suggestion-text span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Category name (optional) */
.suggestion-text small {
    font-size: 12px;
    color: #888;
}

/* Scrollbar styling */
#suggestions::-webkit-scrollbar {
    width: 6px;
}

#suggestions::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .search-bar {
        width: 100%;
    }
}

.faq-section {
    padding: 60px 0;
    background: #fafafa;
}

.faq-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.faq-header p {
    color: #777;
    margin-bottom: 30px;
}

.faq-list {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}

.faq-question h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.faq-icon {
    font-size: 22px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 10px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

