html {
    user-select: none;
}



body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff8e1;
    color: #222;
    margin: 0;
}


a {
    text-decoration: none;
    color: inherit;
}


/* Sticky Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 1.5rem 2rem;
    background-color: #f8d64e;
    box-shadow: 0 3px 8px rgb(0 0 0 / 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}


.main-content {
    margin-top: 80px;
    margin-bottom: 74px;
}


.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    user-select: none;
}


nav a {
    margin-left: 1.5rem;
    font-weight: 600;
    color: #222;
    transition: color 0.3s;
}


nav a:hover {
    color: #000;
}


/* Sticky Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8d64e;
    text-align: center;
    font-size: 0.8rem;
    user-select: none;
    color: #111;
    height: 40px;
    line-height: 45px;
    z-index: 2000;
    box-shadow: 0 -2px 6px rgb(0 0 0 / 0.08);
}


/* Hero Banner */
.hero-banner {
    background: #fff;
    border-radius: 15px;
    margin: 2rem auto 3rem;
    max-width: 1140px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 2rem;
    box-shadow: 0 8px 15px rgb(212 188 56 / 0.3);
}


.hero-text {
    flex: 1 1 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
}


.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #222;
}


.hero-text h1 .highlight {
    background-color: #f8d64e;
    padding: 0 6px;
    border-radius: 2px;
}


.hero-text p {
    font-size: 1.15rem;
    color: #444;
}

.category-card {
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(253, 229, 118, 0.27);
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(253, 229, 118, 0.55);
}

.category-image {
    width: 100%;
    height: 260px;
    object-fit: contain;
    padding: 16px;
    background: #fff8e1;
}

.collage-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.category-card {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgb(253 229 118 / 0.35);
  background: white;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex: 1 1 30%;
  min-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.category-card:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 14px 46px rgb(253 229 118 / 0.75);
}

.category-content {
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  font-size: 1.28rem;
  color: #b86b04;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.explore-text {
  font-weight: 600;
  font-size: 1rem;
  color: #f8d64e;
  user-select: none;
}

/* Collage specific styles */
.image-collage {
  position: relative;
  width: 100%;
  height: 220px;
  padding: 1rem 1.3rem 0 1.3rem;
}

/* Saree collage: 3 overlapping squares */
.saree-collage img {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgb(253 229 118 / 0.25);
  width: 110px;
  height: 160px;
  object-fit: cover;
  user-select: none;
  transition: transform 0.3s ease;
}
.saree-collage img:nth-child(1) {
  top: 15px;
  left: 25px;
  transform: rotate(-10deg);
  z-index: 3;
}
.saree-collage img:nth-child(2) {
  top: 40px;
  left: 100px;
  transform: rotate(9deg);
  z-index: 2;
}
.saree-collage img:nth-child(3) {
  top: 70px;
  left: 190px;
  transform: rotate(-6deg);
  z-index: 1;
}

.polaroid-collage {
  position: relative;
  width: 200px;
  height: 170px;
  margin: 0 auto 1.2rem auto;
  padding-top: 20px;
}

.polaroid {
  position: absolute;
  width: 125px;
  height: 125px;
  background: #fff;
  border: 4px solid #fff;
  box-shadow: 0 3px 21px rgba(40,36,31,0.21), 0 1px 8px #fffbe4 inset;
  object-fit: cover;
  transition: transform 0.18s, box-shadow 0.18s;
}

.footer-contact-bar {
  background: #fff8e1;
  border-top: 2px solid #f8d64e;
  color: #4a320d;
  font-family: 'Poppins', sans-serif;
  padding: 1.3rem 1rem 1.7rem 1rem;
  box-shadow: 0 -2px 10px #f8d64e33;
}
.footer-contact-details {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1.12rem;
}
.footer-contact-details div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-contact-details a {
  color: #b86b04;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color .18s;
}
.footer-contact-details a:hover {
  color: #f8d64e;
  text-decoration: underline;
}
.footer-contact-details .footer-icon {
  font-size: 1.24rem;
  color: #ef8b0a;
}


/* Unique position, offset, and rotation for each image */
.polaroid.p1 {
  top: 15px; left: -12px; transform: rotate(-11deg);
  z-index: 2;
}
.polaroid.p2 {
  top: 10px; left: 58px; transform: rotate(6deg);
  z-index: 4;
}
.polaroid.p3 {
  top: 65px; left: 22px; transform: rotate(-7deg);
  z-index: 3;
}
.polaroid.p4 {
  top: 38px; left: 84px; transform: rotate(13deg);
  z-index: 1;
}

/* For fewer images (3 photos), leave out p4 */
/* Responsive for card resize */
@media (max-width: 800px) {
  .polaroid-collage { width: 150px; height: 110px; }
  .polaroid { width: 75px; height: 75px;}
}


/* Kurti collage: 3 vertical rectangles overlapping */
.kurti-collage img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 7px 18px rgb(253 229 118 / 0.3);
  width: 90px;
  height: 150px;
  object-fit: cover;
  user-select: none;
  transition: transform 0.3s ease;
}
.kurti-collage img:nth-child(1) {
  top: 10px;
  left: 15px;
  transform: rotate(-8deg);
  z-index: 3;
}
.kurti-collage img:nth-child(2) {
  top: 35px;
  left: 95px;
  transform: rotate(7deg);
  z-index: 2;
}
.kurti-collage img:nth-child(3) {
  top: 60px;
  left: 170px;
  transform: rotate(-5deg);
  z-index: 1;
}

/* Jewel collage: 4 circular with soft shadows and rotations */
.jewel-collage img {
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  box-shadow: 0 6px 22px rgb(253 229 118 / 0.2);
  object-fit: cover;
  user-select: none;
  transition: transform 0.3s ease;
}
.jewel-collage img:nth-child(1) {
  top: 15px;
  left: 25px;
  transform: rotate(7deg);
  z-index: 4;
}
.jewel-collage img:nth-child(2) {
  top: 0;
  left: 105px;
  transform: rotate(-9deg);
  z-index: 3;
}
.jewel-collage img:nth-child(3) {
  top: 70px;
  left: 150px;
  transform: rotate(5deg);
  z-index: 2;
}
.jewel-collage img:nth-child(4) {
  top: 60px;
  left: 40px;
  transform: rotate(-7deg);
  z-index: 1;
}

.category-card:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .collage-container {
    flex-direction: column;
    gap: 3rem;
  }
  .category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .image-collage {
    height: 180px;
    padding: 1rem;
  }
  .saree-collage img, .kurti-collage img, .jewel-collage img {
    width: 80px;
    height: 120px;
  }
  .jewel-collage img {
    border-radius: 14px;
  }
}


.category-content {
    padding: 1.2rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #b86b04;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.explore-text {
    font-weight: 600;
    font-size: 1rem;
    color: #f8d64e;
    user-select: none;
}



.shop-btn {
    margin-top: 1.5rem;
    max-width: 160px;
    padding: 0.6rem 1.7rem;
    background-color: #112;
    color: #f8d64e;
    font-weight: 700;
    border-radius: 30px;
    transition: background-color 0.3s;
    user-select: none;
    border: none;
}


.shop-btn:hover {
    background-color: #222;
    color: #fff;
}


.hero-img {
    flex: 1 1 52%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-img img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 25px rgb(248 214 78 / 0.5);
    user-select: none;
}


.partners {
    margin: 2.8rem auto;
    background-color: #f8d64e;
    padding: 1rem 0;
    max-width: 1140px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgb(212 188 56 / 0.3);
}


.partners img {
    max-height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.2s;
    user-select: none;
}


.partners img:hover {
    opacity: 1;
}


.categories-section {
    max-width: 1140px;
    margin: 3rem auto 5rem;
    padding: 0 1rem;
}


.categories-title {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1.3rem;
    border-bottom: 4px solid #f8d64e;
    width: fit-content;
    user-select: none;
}


.category-card {
    border-radius: 15px;
    box-shadow: 0 6px 15px rgb(244 208 32 / 0.4);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease;
    background: #fff;
    min-height: 320px;
    padding-top: 50px;
    margin: 10px;;
    display: flex;
    flex-direction: column;
    user-select: none;
}


.category-card:hover {
    transform: translateY(-5px);
}


.category-image {
    flex: 1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.page-title {
    color: #b86b04;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.filter-bar {
    margin-bottom: 25px;
}


.img-hover-zoom {
    position: relative;
    overflow: hidden;
}

.img-hover-zoom .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    user-select: none;
}

.img-hover-zoom:hover .zoom-icon {
    opacity: 1;
    pointer-events: auto;
}



.category-content {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.category-content .explore-text {
    color: #f8d64e;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
}


.category-content .explore-text:hover {
    text-decoration: underline;
}


@media (max-width: 992px) {
    .hero-banner {
        flex-direction: column;
    }


    .hero-text,
    .hero-img {
        flex: 1 1 100%;
    }


    .hero-text h1 {
        font-size: 2.3rem;
    }
}


@media (max-width: 576px) {
    header {
        padding: 1rem 0.5rem;
        height: 65px;
    }


    .main-content {
        margin-top: 65px;
    }


    .hero-text h1 {
        font-size: 1.8rem;
    }


    footer {
        height: 30px;
        line-height: 60px;
        font-size: 0.97rem;
    }


    .category-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }


    .categories-title {
        font-size: 1.44rem;
    }
}


.custom-navbar {
    background: #f8d64e;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.09);
    z-index: 2000;
}

.logo-text {
    font-size: 1.45rem;
    letter-spacing: 2px;
    color: #1a1a1a !important;
}