/* Swiper */
/* - Swiper Slide Arrows 1
------------------------------------------------------------- */
.icon-arrow {
  position: absolute;
  top: 50%;
  font-size: 2em;
  color: var(--dark-color);
  z-index: 8;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease-out;
}

.icon-arrow:hover {
  opacity: 1;
}

.icon-arrow.icon-arrow-left {
  left: 30px;
}

.icon-arrow.icon-arrow-right {
  right: 30px;
}

@media (max-width: 991px) {
  .icon-arrow.icon-arrow-left,
  .icon-arrow.icon-arrow-right {
    display: none;
  }
  .swiper-pagination {
    position: relative;
  }
}

/** Swiper Slide Arrows 2
--------------------------------------------------------------*/
.icon-arrow.no-outline {
  top: 40%;
  font-size: 1.7em;
  color: var(--grey-color);
  border: none;
}

.icon-arrow.no-outline:hover {
  background: none;
  color: var(--dark-color);
}

.icon-arrow.light-arrow.no-outline {
  color: var(--light-color);
  opacity: 0.7;
}

.icon-arrow.light-arrow.no-outline:hover {
  opacity: 1;
}

.swiper-button-normal {
  background: transparent;
}

.swiper-button-normal .icon {
  font-size: 1.6em;
  color: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/** Swiper Slide Arrows with background 3
--------------------------------------------------------------*/
.icon-arrow {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

/*--- Image hover Effects
-----------------------------------------------*/
.image-zoom-effect {
  display: flex;
  flex-wrap: wrap;
}

.image-zoom-effect .image-holder {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-zoom-effect:hover .image-holder {
  transform: scale(0.95);
}

.image-zoom-effect img {
  transform: scale(1);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.image-zoom-effect:hover img {
  transform: scale(1.1);
}


/* - Border Hover Effects
------------------------------------------------------------- */
.border-animation a,
.border-animation a:after,
.border-animation a:before {
  transition: all .5s;
}

.border-animation a {
  position: relative;
}

.border-animation a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  content: '.';
  color: transparent;
  background: var(--bs-primary);
  height: 2px;
}

.border-animation a:hover:after {
  width: 100%;
}

.content-light .border-animation a:hover:after,
.content-light .border-animation li.active a:after {
  background: var(--bs-primary);
}

/* - Border Hover No Effects
------------------------------------------------------------- */
.border-animation .no-effect a:after {
  background: none;
}

/* - Border Hover Effects 2
------------------------------------------------------------- */
.border-animation-left .item-anchor {
  position: relative;
  margin-bottom: 20px;
}

.border-animation-left .item-anchor:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: var(--bs-dark);
  transition: all 0.5s ease;
}

.border-animation-left.light-border .item-anchor:after,
.border-animation-left .item-anchor:after {
  background: var(--bs-dark);
}

.border-animation-left .item-anchor:hover:after,
.border-animation-left .item-anchor:focus:after {
  width: 100%;
}

/* background */
.background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 600px;
}

.background.pattern-bg {
  background: url(images/pattern-bg.png) no-repeat;
}

.background.normal-bg {
  background: url(images/newsletter-image.jpg) no-repeat;
}

/* large text */
.title-xlarge {
  font-size: calc(2rem + 10vw);
  /* 10.4em; */
  font-family: var(--heading-font);
  color: var(--bs-gray-300);
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 0;
}


/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Jost', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.main-header {
  background: #322051;
  padding: 20px;
  color: #fff;
}
.header-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.navbar-brand img {
  max-height: 60px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 600;
}
.cart-btn {
  font-size: 1.2rem;
}

/* CATEGORY CARDS STYLE */
.categories {
  position: relative;
  background-image: url('images/banner-back.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  z-index: 0;
}
.categories::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.category-grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 100%;
  margin: auto;
}
.cat-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  width: 220px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp 0.6s ease forwards;
}
.cat-card:nth-child(1) { animation-delay: 0.1s; }
.cat-card:nth-child(2) { animation-delay: 0.2s; }
.cat-card:nth-child(3) { animation-delay: 0.3s; }
.cat-card:nth-child(4) { animation-delay: 0.4s; }
.cat-card:nth-child(5) { animation-delay: 0.5s; }
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.cat-card .card-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card p {
  margin: 12px 0 20px;
  font-weight: 600;
  font-size: 1rem;
}
.card-description {
  padding: 16px;
  background-color: #fff;
}
.card-description p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
}
@keyframes slideInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* NEW COLLECTIONS */
.new-collections {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}
.collection-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  max-width: 1000px;
  margin-inline: auto;
}
.collection-card-img {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 300px;
}
.collection-card-img img {
  width: 100%;
  border-radius: 10px;
}
.collection-card-img small {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.9rem;
}
.shop-now {
  margin-top: 30px;
  background: #430569;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* OFFERS */
.offers {
  background: #fff8e1;
  text-align: center;
  padding: 60px 20px;
}
.offers-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.offer-product img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
}
.flat-offer {
  font-size: 2rem;
  font-weight: bold;
  color: #6a1b9a;
}
.flat-offer span {
  font-size: 2.5rem;
  color: #f44336;
}

/* PREMIUM */
.premium {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
.premium h2, .premium p {
  color: #110d0d;
}
.premium-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.product-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #000;
  transition: transform 0.3s;
  width: 300px;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  border-radius: 10px;
}
.product-card p {
  font-weight: bold;
  margin: 10px 0 5px;
}
.product-card span {
  color: #430569;
  font-size: 0.9rem;
}
.view-more {
  margin-top: 30px;
  padding: 12px 30px;
  background: #430569;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* NEWSLETTER */
.newsletter {
  background: #3f51b5;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.newsletter form {
  margin-top: 20px;
}
.newsletter input {
  padding: 10px;
  width: 250px;
  border-radius: 4px;
  border: none;
  margin-right: 10px;
}
.newsletter button {
  padding: 10px 20px;
  border: none;
  background-color: #00e676;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

/* FOOTER */
.footer {
  background-color: #430569;
  color: white;
  padding: 40px 20px 20px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.footer-left p,
.footer-right ul {
  font-size: 0.9rem;
}
.footer-right ul {
  list-style: none;
  padding: 0;
}
.footer-right ul li {
  margin-bottom: 6px;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #aaa;
}
.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}
.social-icons a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
.social-icons a:hover img {
  transform: scale(1.2);
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
  .category-grid,
  .collection-grid,
  .premium-grid,
  .offers-box {
    flex-direction: column;
    align-items: center;
  }

  .cat-card,
  .collection-card-img,
  .product-card {
    width: 90% !important;
    margin-bottom: 20px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .header-container,
  .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu {
    gap: 10px;
    margin-top: 10px;
  }

  .white-right-menu {
    flex-direction: column;
    align-items: center;
  }

  #search {
    width: 90% !important;
  }
}
body {
  font-family: 'Jost', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
}

.main-header {
  background-color: #322051;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

.nav-menu a {
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-menu a:hover {
  text-decoration: underline;
}

.cart-btn a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.offers-page h2 {
  font-weight: 700;
  color: #222;
}

.offer-description {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.offer-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-card img {
  width: 100%;
  height: auto;
}

.offer-info {
  padding: 15px;
  text-align: center;
}

.offer-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.offer-info p {
  font-size: 16px;
  color: #e63946;
}

.offer-info del {
  color: #888;
  margin-right: 5px;
}

.footer {
  background-color: #111;
  color: #fff;
}
/* Reset & Base */
body {
  font-family: 'Jost', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h2, h3, h5 {
  font-family: 'Marcellus', serif;
}

/* Navbar */
.navbar {
  background: linear-gradient(to right, #322051, #1a001f); /* Violet to Black */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
  max-height: 60px;
}

.navbar a,
.navbar h4 {
  color: #fff !important;
}

.navbar .btn {
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 14px;
}

/* Navbar Buttons */
.navbar .btn-outline-dark {
  border-color: #fff;
  color:#522672;
}

.navbar .btn-outline-dark:hover {
  background-color: #fff;
  color: #522672;
}

.navbar .btn-dark {
  background-color: black;
  color: #522672;
  border: none;
}

.navbar .btn-dark:hover {
  background-color: black;
  color: #522672;
}

/* Header Section */
section.bg-light {
  background-color: #f7f7f7 !important;
  text-align: center;
  padding: 40px 0;
}

section.bg-light h2 {
  font-size: 2rem;
  color: #522672;
}

/* Product Grid */
.card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  background-color: #fff;
  border: none;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.card-text {
  font-size: 1rem;
  color: #555;
}

.card-price del {
  font-size: 0.9rem;
  color: #888;
}

.badge.bg-success {
  font-size: 0.75rem;
  padding: 5px 8px;
}

/* Buttons */
.btn {
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 500;
}

.btn-outline-dark:hover,
.btn-dark:hover {
  opacity: 0.9;
}

/* Cart Count Badge */
.cart-count {
  font-weight: 600;
  color: #fff;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding-top: 40px;
}

footer h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
}

footer a {
  color: #ddd;
  transition: color 0.3s;
}

footer a:hover {
  color: #fff;
}

footer .social-links svg {
  fill: #ccc;
  transition: fill 0.3s ease;
}

footer .social-links svg:hover {
  fill: #fff;
}

footer small {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .btn {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  .card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #eee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Add slight variation with shadow colors on hover */
.card:nth-child(3n):hover {
  box-shadow: 0 12px 24px rgba(82, 38, 114, 0.15); /* violet */
}
.card:nth-child(3n+1):hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* black */
}
.card:nth-child(3n+2):hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); /* gray */
}

/* Price & Badge Styling */
.card .card-text {
  font-size: 1rem;
  color: #333;
}

.card .badge.bg-success {
  font-size: 0.75rem;
  padding: 5px 8px;
  background-color: #522672;
}

/* Add a subtle background stripe or hover gradient (optional) */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f0e6f6, transparent);
  z-index: 0;
}

  footer .row > div {
    text-align: center;
    margin-bottom: 20px;
  }
}
footer h5 {
  color: gold;
}

footer a:hover {
  color: #ffd700;
  text-decoration: underline;
}
