:root {
  --primary-color: #8b2e3c;
  --secondary-color: #f5f5f5;
  --dark-color: #111;
  --gold-color: #c6a14a;
  --gap: 60px;
  --grey-color: #d9d9d99e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "JuliettaMessie";
  src: url("../fonts/Julietta-Messie-Demo.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OptimusPrinceps";
  src: url("../fonts/OptimusPrinceps.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.section-subtitle {
  font-size: 14px;
  letter-spacing: 1px;
  color: #777;
}

.about-hero,
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 15px;
  overflow: hidden;
}

.about-hero {
  background-image: url("../img/about-banner.jpg");
}

.contact-hero {
  background-image: url("../img/contact-banner.webp");
}

.about-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.555), rgba(0, 0, 0, 0.555));
  z-index: 1;
}

.about-hero .container,
.contact-hero .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .about-hero,
  .contact-hero {
    min-height: 50vh;
  }
}

@media (max-width: 768px) {
  .about-hero,
  .contact-hero {
    min-height: 45vh;
    padding: 40px 15px;
  }
}

.banner-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background-image: url("../img/saree-banner2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .banner-section {
    min-height: 50vh;
  }
}

@media (max-width: 576px) {
  .banner-section {
    min-height: 40vh;
  }
}

@media (max-width: 499px) {
  .banner-section {
    min-height: 30vh;
  }
}

.first-heading {
  font-family: "OptimusPrinceps", cursive;
  font-size: clamp(48px, 6vw, 70px);
  line-height: 1.05;
  font-weight: 400;
  color: white;
}

@media (max-width: 992px) {
  .first-heading {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .first-heading {
    font-size: 45px;
  }
}

@media (max-width: 480px) {
  .first-heading {
    font-size: 40px;
  }
}

/* ================ NAVBAR SECTION ================= */
.navbar {
  background: #fff !important;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.navbar .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.navbar .nav-item {
  position: relative;
}

.navbar .nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-color);
  transition: 0.4s ease;
}

.navbar .nav-item:hover::after {
  width: 100%;
}

.dropdown-menu {
  border-radius: 12px;
  border: none;
  padding: 10px 0;
  animation: fadeIn 0.3s ease-in-out;
}

.dropdown-item {
  padding: 8px 20px;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: var(--grey-color);
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.navbar .dropdown:hover > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.navbar i {
  font-size: 18px;
  transition: 0.3s ease;
}

.navbar a {
  text-decoration: none;
  color: var(--dark-color);
  transition: 0.3s ease;
}

.navbar a:hover i {
  color: var(--primary-color);
  transform: scale(1.15);
}

.badge {
  font-size: 10px;
}

@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }

  .navbar .navbar-nav .nav-link {
    padding: 1.2rem 0;
    font-weight: 500;
  }

  .navbar .navbar-nav .nav-item {
    margin: 0 1rem;
  }

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 8px 0;
  }

  .navbar .nav-item::after {
    display: none;
  }

  .nav-icons {
    justify-content: center;
    margin-top: 15px;
    gap: 20px;
  }

  .dropdown-menu {
    text-align: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================ FOOTER SECTION ================= */
footer {
  background: var(--grey-color);
  font-size: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer h5,
footer h6 {
  color: var(--dark-color);
}

footer p {
  text-align: left;
  line-height: 1.7;
  color: #666;
  margin-bottom: 6px;
}

footer .cont-icon i {
  color: var(--dark-color);
  font-size: 18px;
  margin-right: 12px;
}

.cont-icon a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s ease;
}

footer a {
  color: #555;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}

footer .social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

footer .social-icons a:hover {
  background: var(--primary-color);
}

footer .social-icons a:hover i {
  color: #fff;
}

footer ul li a:hover {
  color: var(--primary-color);
}

footer ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: var(--primary-color);
  transition: 0.3s ease;
}

footer ul li a:hover::after {
  width: 100%;
}

footer hr {
  opacity: 0.1;
}

footer .small {
  color: #777;
}

footer .fab {
  font-size: 16px;
  transition: 0.3s ease;
}

footer .fab:hover {
  transform: translateY(-3px);
  color: var(--primary-color);
}

@media (max-width: 991px) {
  footer {
    text-align: left;
  }

  footer .social-icons {
    justify-content: center;
  }

  footer .cont-icon {
    justify-content: flex-start !important;
  }

  footer .row > div {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  footer {
    padding-top: 40px;
  }

  footer p {
    text-align: left;
  }

  footer h5 {
    margin-top: 15px;
  }
}

/* ================ BACK TO TOP SECTION ================= */
#backToTop {
  position: fixed;
  bottom: 60px;
  right: 45px;
  background: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  background: #6d1f2a;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  #backToTop {
    width: 42px;
    height: 42px;
    bottom: 40px;
    right: 60px;
  }
}

@media (max-width: 576px) {
  #backToTop {
    width: 38px;
    height: 38px;
    bottom: 30px;
    right: 25px;
    font-size: 14px;
  }
}

/* ===============================
                            INDEX / HOME PAGE
                    ================================= */

/* ================ ANNOUNCEMENT TICKER SECTION ================= */
.announcement-ticker {
  display: flex;
  gap: var(--gap);
  overflow: hidden;
  background: var(--dark-color);
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.8px;
  user-select: none;
}

.announcement-ticker ul {
  list-style: none;
  display: flex;
  gap: var(--gap);
  flex-shrink: 0;
  width: max-content;
  animation: tickerScroll 25s linear infinite;
  margin: 0;
  padding: 0;
}

.announcement-ticker:hover ul {
  animation-play-state: paused;
}

.announcement-ticker li {
  white-space: nowrap;
  position: relative;
}

.announcement-ticker li::after {
  content: "•";
  margin-left: var(--gap);
  color: var(--secondary-color);
}

.announcement-ticker li:last-child::after {
  content: "";
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 991px) {
  .announcement-ticker {
    font-size: 13px;
    --gap: 40px;
    padding: 12px 0;
  }

  .announcement-ticker ul {
    animation: tickerScroll 35s linear infinite;
  }
}

@media (max-width: 576px) {
  .announcement-ticker {
    font-size: 12px;
    --gap: 30px;
  }
}

/* ================ HERO SECTION ================= */
.hero-section {
  position: relative;
  background: no-repeat url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s ease;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.accent-text {
  color: var(--primary-color);
}

.hero-section .main-heading {
  font-family: "JuliettaMessie", serif;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.1;
}

.lead-heading {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: serif;
  opacity: 0.9;
}

.hero-section .btn {
  background: #1f1f1f;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 93, 117, 0.35);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 80px 0;
    text-align: center;
  }

  .hero-section::before {
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-section h1,
  .hero-section p {
    color: #fff;
  }

  .hero-section .btn {
    background: #fff;
    color: #000;
    border: none;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 65vh;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 50vh;
    text-align: center;
  }

  .hero-section::before {
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-section h1,
  .hero-section p {
    color: #fff;
  }

  .hero-section .btn {
    background: #fff;
    color: #000;
    border: none;
  }
}

/* ================ CATEGORY CARD SECTION ================= */
.category-media {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 15px;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.category-actions i {
  color: var(--dark-color);
}

.category-actions i:hover {
  color: var(--primary-color);
}

.category-media:hover .category-caption {
  transform: translateY(0);
}

.category-media:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .category-media {
    height: auto;
  }

  .category-media img {
    height: 180px;
  }

  .category-media:hover .category-caption {
    transform: none;
  }

  .category-media:hover img {
    transform: none;
  }

  .category-caption {
    position: static;
    transform: none;
    background: transparent;
    padding: 10px 20px;
    margin-top: 8px;
  }

  .category-caption h5 {
    font-size: 16px;
  }

  .category-actions a {
    font-size: 14px;
    margin-left: 8px;
  }
}

@media (max-width: 576px) {
  .category-media img {
    height: 160px;
  }

  .category-caption h5 {
    font-size: 14px;
  }

  .category-actions a {
    font-size: 13px;
  }
}

/* ================ CATEGORY GRID SECTION ================= */
.category-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  text-decoration: none;
}

.category-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

.category-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.category-box.large {
  height: 520px;
}

.category-box:not(.large) {
  height: 250px;
}

.overlay-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  z-index: 2;
}

.category-box:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .category-box.large {
    height: 400px;
  }

  .category-box:not(.large) {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .category-box.large {
    height: 280px;
  }

  .category-box:not(.large) {
    height: 170px;
  }

  .overlay-title {
    font-size: 14px;
  }
}

/* ================ WATCH BUY SECTION ================= */
.watch-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
}

.watch-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s ease;
}

.watch-card:hover img {
  transform: scale(1.08);
}

.watch-content {
  padding: 20px;
}

.watch-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.watch-price {
  font-size: 16px;
  font-weight: 600;
  color: #b91c1c;
  margin-bottom: 15px;
}

.product-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.product-buttons .btn {
  font-size: 14px;
  padding: 8px 16px;
}

@media (max-width: 991px) {
  .watch-img img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .watch-img img {
    height: 230px;
  }

  .product-buttons {
    flex-direction: column;
  }

  .product-buttons .btn {
    width: 100%;
  }
}

/* ================ TESTIMONIAL SECTION ================= */
.testimonial-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.user-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  color: white;
  width: 18px;
  height: 18px;
}

.carousel-control-prev {
  left: -30px;
}

.carousel-control-next {
  right: -30px;
}

.carousel-indicators {
  bottom: -40px;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #bbb;
  display: inline-block;
  transition: all 0.3s ease;
}

.glass-indicators .active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

@media (min-width: 1200px) {
  .carousel-control-prev {
    left: -25px;
  }
  .carousel-control-next {
    right: -25px;
  }
}

@media (max-width: 1199px) {
  .testimonial-card {
    height: 280px;
  }
}

@media (max-width: 992px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .carousel-item .col-lg-3:first-child,
  .carousel-item .col-md-6:first-child,
  .carousel-item .col-sm-10:first-child {
    display: block;
    width: 100%;
  }

  .testimonial-card {
    width: 95%;
    margin: 0 auto;
    height: 250px;
  }
}

@media (max-width: 576px) {
  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }

  .testimonial-card {
    height: 240px;
  }
}

/* ================ TRENDING BANNER SECTION ================= */
.trending-banner {
  position: relative;
  background:
    linear-gradient(rgba(34, 34, 34, 0.55), rgba(0, 0, 0, 0.55)),
    url("../img/home-ad.png") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 40vh, 450px);
  text-align: center;
}

.trending-banner .content {
  position: relative;
  z-index: 2;
}

.content h2 {
  font-size: clamp(24px, 4vw, 38px);
  margin: auto;
}

.content h4 {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 2px;
  font-family: "OptimusPrinceps", cursive;
  text-transform: uppercase;
}

.content h5 {
  font-size: clamp(13px, 2.2vw, 18px);
  margin: 0 auto;
  opacity: 0.9;
}

.gharana-btn {
  background: var(--primary-color);
  color: #fff;
  padding: clamp(10px, 1.2vw, 14px) clamp(24px, 3vw, 40px);
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--gold-color);
  transition: all 0.35s ease;
  font-size: clamp(13px, 1.2vw, 15px);
}

.gharana-btn:hover {
  background: var(--gold-color);
  color: #111;
}

@media (max-width: 767px) {
  .trending-banner h5 {
    max-width: 800px;
  }
}

@media (max-width: 576px) {
  .trending-banner h5 {
    max-width: 400px;
  }
  .gharana-btn {
    padding: 10px 28px;
    font-size: 14px;
  }
}

/* ================ STORE SECTION ================= */
.store-box {
  background: #eaeaea;
  border-radius: 12px;
  padding: clamp(18px, 3vw, 24px);
  transition: 0.3s ease;
  display: flex;
  align-items: flex-start;
  min-height: 180px;
  height: 100%;
}

.store-box:hover {
  background: #e0e0e0;
  transform: translateY(-5px);
}

.store-icon {
  font-size: clamp(22px, 4vw, 35px);
  color: #111;
  margin-right: clamp(12px, 2vw, 20px);
  flex-shrink: 0;
}

.store-content h4 {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
}

.store-content p {
  font-size: clamp(13px, 1.5vw, 16px);
  color: #555;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .store-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    min-height: auto;
  }

  .store-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }
}

/* ================ SERVICE SECTION ================= */
.service-card {
  background: #d9c6c6;
  padding: 35px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: #000;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}

.service-card p {
  font-size: 14px;
  color: #444;
  margin: 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .service-card {
    padding: 25px 15px;
  }

  .service-icon {
    font-size: 26px;
  }

  .service-card h5 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 20px 12px;
  }

  .service-icon {
    font-size: 22px;
  }

  .service-card h5 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 12px;
  }
}

                    /* ===============================
                              ABOUT PAGE
                    ================================= */

/* ================ ABOUT SECTION ================= */
.about-img {
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-section p {
  color: #555;
  line-height: 1.8;
  text-align: justify;
  font-size: clamp(14px, 1.5vw, 16px);
}

@media (max-width: 992px) {
  .about-img {
    max-width: 60%;
    margin: auto;
    display: block;
  }

  .about-section {
    text-align: center;
  }

  .about-section p {
    text-align: justify;
    text-align-last: center;
  }
}

@media (max-width: 768px) {
  .about-img {
    max-width: 70%;
  }
}

@media (max-width: 448px) {
  .about-img {
    max-width: 80%;
  }
}

/* ================ JOURNEY SECTION ================= */
.journey-text {
  max-width: 950px;
  margin: auto;
  line-height: 1.9;
  color: #555;
  text-align: justify;
  font-size: clamp(14px, 1.5vw, 16px);
  text-align-last: center;
}

/* ================ FACILITIES SECTION ================= */
.facility-card {
  background: #fff;
  padding: 45px 30px;
  border: 1px solid #eee;
  transition: 0.3s ease;
  height: 100%;
  border-radius: 6px;
}

.facility-card i {
  font-size: 42px;
  margin-bottom: 20px;
  color: #000;
}

.facility-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.facility-card p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.facility-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

@media (max-width: 992px) {
  .section-title,
  .section-heading {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .facility-card {
    padding: 35px 20px;
  }
}

                    /* ===============================
                              CONTACT PAGE
                    ================================= */

/* ================ SHOP NOW SECTION ================= */
.shop-now {
  padding: 80px 0;
  background: #f3eaea;
}

.shop-now .btn.bordered {
  border: 1px solid #000;
  padding: 12px 30px;
  border-radius: 0;
  transition: 0.3s ease;
}

.shop-now .btn.bordered:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 992px) {
  .shop-now {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .shop-now {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .shop-now {
    padding: 40px 0;
  }
}

/* ================ INFO BOX SECTION ================= */
.form-heading {
  font-family: "OptimusPrinceps", serif;
}

.info-box {
  background: #fff;
  padding: 30px 20px;
  border: 1px solid #eee;
  transition: 0.3s ease;
  height: 100%;
}

.info-box i {
  font-size: 28px;
  margin-bottom: 15px;
  color: #000;
}

.info-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.info-box p {
  margin-bottom: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  color: #000;
}

/* ================ CONTACT FORM SECTION ================= */
.contact-form .form-control {
  padding: 14px;
  border-radius: 0;
  border: 1px solid #ddd;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: #000;
}

.contact-form button {
  border-radius: 0;
}

@media (max-width: 768px) {
  .info-box {
    padding: 20px;
  }
}

                    /* ===============================
                                SAREE PAGE 
                    ================================= */

/* ================ MAIN CONTENT SECTION ================= */
.collection-heading {
  font-family: "OptimusPrinceps", serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.collection-paragraph {
  font-size: 16px;
  color: var(--dark-color);
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.product-card .card-body{
  padding:18px;
}

.product-card img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transition: 0.4s ease;
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card p {
  height: 40px;
  overflow: hidden;
  font-size: 14px;
}

.badge-new,
.badge-discount {
  position: absolute;
  top: 12px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  z-index: 2;
}

.badge-new {
  left: 12px;
  background: #111;
  color: #fff;
}

.badge-discount {
  right: 12px;
  background: #e11d48;
  color: #fff;
}

.price-section {
  margin-top: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
  font-size: 14px;
}

.new-price {
  color: #e11d48;
  font-size: 20px;
  font-weight: 700;
}

.pagination .page-link {
  border-radius: 50px;
  margin: 0 5px;
  color: #000;
}

.pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.buy-btn {
  background: var(--primary-color);
  border: none;
  transition: 0.3s ease;
  width: 100%;
}

.buy-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

@media (max-width:576px){
  .new-price{
  font-size:18px;
  }

  .collection-heading{
  font-size:24px;
  }
}

/* ================ CALLBACK MODAL FORM SECTION ================= */
body.modal-open {
  overflow: hidden;
}

.callback-modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.callback-modal.active {
  display: flex;
}

.callback-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.callback-box {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  border-radius: 15px;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  transition: 0.3s;
}

.close-btn:hover {
  color: red;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.button {
  background: #111827;
  border-radius: 8px;
  transition: 0.3s;
}

.button:hover {
  background: #2563eb;
}
