    /* ----------------------------------------------------------
    :: Template Name: Karl - Fashion Ecommerce Template
    :: Author: Colorlib
    :: Author URL: https://colorlib.com
    :: Description: Karl is smart & elegant fashion e-commerce Template. It's suitable for all e-commerce business platform. It's super responsive for all      Desktop/Mobile layout.
    :: Version: 1.0
    :: Created: 09 January 2018
    :: Last Updated: 09 January 2018
    ---------------------------------------------------------- */

    /* -------------------------------------------------
    ============ PLACE YOUR CUSTOM CSS HERE ============
    ------------------------------------------------- */

    /* Wrapper */
.promo-section .promo-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Flyer */
.promo-section .promo-flyer {
    flex: 1 1 50%;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-section .promo-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel */
.promo-section .promo-carousel {
    flex: 1 1 50%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.promo-section .carousel-inner {
    width: 100%;
    height: 100%;
    overflow: hidden; /* ✅ prevents white flash */
}

.promo-section .carousel-item {
    width: 100%;
    height: 100%;
}

/* Slide content (two images side by side) */
.promo-section .promo-slide-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.promo-section .promo-slide-content img {
    flex: 1;                 /* ✅ ensures no gaps */
    height: 420px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-section .promo-wrapper {
        flex-direction: column;
    }

    .promo-section .promo-slide-content {
        flex-direction: column;
    }

    .promo-section .promo-slide-content img {
        width: 100%;
        height: 300px;
    }

    .promo-section .promo-flyer,
    .promo-section .promo-carousel {
        flex: 1 1 100%;
    }
}


      .promo-slider-section .promo-slider-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.promo-slider-section .promo-slider-flyer {
    flex: 1 1 50%;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-slider-section .promo-slider-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-slider-section .promo-slider-carousel {
    flex: 1 1 50%;
    background-color: #fff;
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* Carousel styles inside the unique parent */
.promo-slider-section .carousel,
.promo-slider-section .carousel-inner,
.promo-slider-section .carousel-item {
    width: 100%;
    height: 100%;
}

.promo-slider-section .carousel-inner {
    overflow: hidden;
}

.promo-slider-section .carousel-item {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.promo-slider-section .carousel-item img {
    width: 50%;
    height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .promo-slider-section .promo-slider-wrapper {
        flex-direction: column;
    }

    .promo-slider-section .carousel-item {
        flex-direction: column;
    }

    .promo-slider-section .carousel-item img {
        width: 100%;
        height: 300px;
    }

    .promo-slider-section .promo-slider-flyer,
    .promo-slider-section .promo-slider-carousel {
        flex: 1 1 100%;
    }
}

@import url(https://fonts.bunny.net/css?family=abel:400);

.carousel-container {
	display: flex;
	justify-content: center;
	padding: 1rem;
}

.easter-carousel {
	--items: 6;
	--carousel-duration: 40s;
	--carousel-width: min(80vw, 1200px);
	--carousel-item-width: 280px;
	--carousel-item-height: 450px;
	--carousel-item-gap: 2rem;
	--clr-cta: rgb(0, 132, 209);

	position: relative;
	width: var(--carousel-width);
	height: var(--carousel-item-height);
	overflow: clip;
}

@media (min-width: 600px) {
	.easter-carousel {
		--carousel-duration: 30s;
	}
}

.easter-carousel[mask] {
	mask-image: linear-gradient(to right, transparent, black 10% 90%, transparent);
}

.easter-carousel[reverse] > article {
	animation-direction: reverse;
}

.easter-carousel:hover > article {
	animation-play-state: paused;
}

.easter-carousel > article {
	position: absolute;
	top: 0;
	left: calc(100% + var(--carousel-item-gap));
	width: var(--carousel-item-width);
	height: var(--carousel-item-height);
	display: grid;
	grid-template-rows: 500px auto 1fr auto;
	gap: 0.25rem;
	border: 1px solid rgba(0, 0, 0, 0.25);
	padding-bottom: 1rem;
	border-radius: 10px;
	background: white;
	color: rgb(49, 65, 88);
	will-change: transform;
	animation-name: easter-marquee;
	animation-duration: var(--carousel-duration);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.easter-carousel > article:nth-child(1) { --i: 0; }
.easter-carousel > article:nth-child(2) { --i: 1; }
.easter-carousel > article:nth-child(3) { --i: 2; }
.easter-carousel > article:nth-child(4) { --i: 3; }
.easter-carousel > article:nth-child(5) { --i: 4; }
.easter-carousel > article:nth-child(6) { --i: 5; }
.easter-carousel > article:nth-child(7) { --i: 6; }
.easter-carousel > article:nth-child(8) { --i: 7; }

.easter-carousel > article {
	animation-delay: calc(
		var(--carousel-duration) / var(--items) * 1 * var(--i) * -1
	);
}

.easter-carousel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.easter-carousel > article > *:not(img) {
	padding: 0 1rem;
}

@keyframes easter-marquee {
	100% {
		transform: translateX(
			calc(
				(var(--items) * (var(--carousel-item-width) + var(--carousel-item-gap))) * -1
			)
		);
	}
}

.incubiq-flyer-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('../img/flyer/f2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.incubiq-flyer-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(240, 207, 220, 0.85), rgba(255,255,255,0.8)); /* your theme shades */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.incubiq-flyer-text {
    text-align: center;
    max-width: 900px;
}

.incubiq-flyer-text h1 {
    font-size: 3rem;
    color: #2d2d2d;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.incubiq-flyer-text p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .incubiq-flyer-wrapper {
        height: auto;
    }

    .incubiq-flyer-text h1 {
        font-size: 2rem;
    }

    .incubiq-flyer-text p {
        font-size: 1rem;
    }
}

    .ina-about-page {
    font-family: Arial, sans-serif;
    color: #333;
  }

  .ina-about-page .about-page-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)), url('../img/bg-img/bg-3.jpg') center/cover no-repeat;
     min-height: 250px;
  height: auto;
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .ina-about-page .about-page-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    z-index: 2;
  }

  .ina-about-page .about-animated-line {
    height: 4px;
    width: 150px;
    background-color: #fff;
    margin: 0 auto;
  }

  .ina-about-page .about-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #c72d60;
    margin: 2rem 0 1rem;
    position: relative;
    display: inline-block;
  }

  .ina-about-page .about-section-title::after {
    content: '';
    display: block;
    height: 4px;
     width: 50px;
    background: #c72d60;
    margin-top: 0.5rem;
  }

 .ina-about-page .about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff0f6;
  padding: 2rem 5%;
  gap: 2rem;
}


  .ina-about-page .about-section.reverse {
    flex-direction: row-reverse;
  }

  .ina-about-page .aboutimg,
  .ina-about-page .about-image {
    flex: 1;
    max-width: 350px;
    border-radius: 1rem;
    overflow: hidden;
  }

  .ina-about-page .aboutimg img,
  .ina-about-page .about-image img {
    width: 100%;
    display: block;
    border-radius: 1rem;
    object-fit: cover;
  }

  .ina-about-page .about-text {
    flex: 1;
    min-width: 280px;
  }

  .ina-about-page .about-text h2 {
    font-size: 2rem;
    color: #c72d60;
    margin-bottom: 1rem;
  }

  .ina-about-page .about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
  }

  .ina-about-page .about-overlay-section {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 80px 20px;
  }

  .ina-about-page .about-overlay-section h2 {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
  }

  .ina-about-page .about-overlay-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: white;
    margin: 20px auto 0;
  }

  .ina-about-page .founder-message {
    background: #fff5fa;
    border-left: 4px solid #c72d60;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
  }

  .ina-about-page .founder-name {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.4rem;
    color: #c72d60;
    display: inline-block;
    margin-top: 1rem;
  }

  .ina-about-page .fancy-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    padding-left: 80px;
  }

  .ina-about-page .fancy-box-big {
    position: absolute;
    top: -10px;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #c72d60;
    border-radius: 8px;
    z-index: 1;
  }

  .ina-about-page .fancy-box-small {
    position: absolute;
    top: -30px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: #c72d60;
    border: 2px solid white;
    border-radius: 6px;
    z-index: 2;
  }

  .ina-about-page .fancy-title {
    position: relative;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #c72d60;
    z-index: 3;
  }

  .ina-about-page .fancy-title span {
    color: #c72d60;
  }

  @media (max-width: 1024px) {
    .ina-about-page .about-section {
      padding: 2rem 4rem;
    }
  }

  @media (max-width: 768px) {
    .ina-about-page .about-section {
      flex-direction: column;
      padding: 2rem 1.2rem;
    }

    .ina-about-page .about-page-banner {
      padding: 5rem 1rem 3rem;
      height: auto;
    }

    .ina-about-page .about-page-banner h1 {
      font-size: 2rem;
    }

    .ina-about-page .about-text p {
      font-size: 1rem;
    }

    .ina-about-page .about-overlay-section h2 {
      font-size: 1.2rem;
    }
  }

  .ina-about-page .about-overlay-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
              url('../img/bg-img/bg-2.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .ina-about-page .aboutimg,
  .ina-about-page .about-image,
  .ina-about-page .about-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .ina-about-page .aboutimg img,
  .ina-about-page .about-image img {
    border-radius: 0.75rem;
    max-height: 300px;
    object-fit: cover;
  }

  .ina-about-page .fancy-title-wrapper {
    padding-left: 0;
    text-align: center;
  }

  .ina-about-page .fancy-box-big,
  .ina-about-page .fancy-box-small {
    display: none;
  }

  .ina-about-page .fancy-title {
    font-size: 1.8rem;
  }

  .ina-about-page .about-overlay-section {
    padding: 60px 15px;
  }

  .ina-about-page .about-section-title {
    font-size: 1.5rem;
  }

  .ina-about-page .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.premium-product-section {
    background: #f9f9f9;
    padding: 60px 0;
}

.premium-product-section .product-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.premium-product-section .product-img img {
    transition: transform 0.3s ease;
}

.premium-product-section .product-img:hover img {
    transform: scale(1.05);
}

.premium-product-section .product-description {
    text-align: center;
    margin-top: 15px;
}

.premium-product-section .add-to-cart-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.premium-product-section .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
}


.quantity-wrapper {
        display: inline-flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
    }
    .qty-btn {
        background: #f8f8f8;
        border: none;
        padding: 8px 14px;
        cursor: pointer;
        font-size: 16px;
        color: #c72d60;
        transition: all 0.2s ease;
    }
    .qty-btn:hover {
        background: #c72d60;
        color: #fff;
    }
    .qty-input {
        width: 60px;
        text-align: center;
        border: none;
        font-size: 16px;
        font-weight: bold;
        color: #333;
        outline: none;
    }
    .premium-section {
        background: #fff;
        padding: 10px 0;
    }
    .premium-section .section_heading h2 {
        font-weight: 700;
        color: #2d2d2d;
        font-size: 2rem;
        position: relative;
        margin-bottom: 40px;
    }
    .premium-section .section_heading h2::after {
        content: '';
        width: 60px;
        height: 4px;
        background: #2d2d2d;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        border-radius: 2px;
    }
    .product-card {
        background: rgba(255, 240, 246, 0.9);
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        position: relative;
    }
    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
    .product-image-container {
        width: 100%;
        height: 450px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }
    .product-image-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background-color: #fff;
        transition: transform 0.4s ease;
    }
    .product-card:hover .product-image-container img {
        transform: scale(1.08);
    }
    .product-info {
        padding: 20px;
        text-align: center;
    }
    .product-price {
        font-size: 18px;
        font-weight: bold;
        color: #c72d60;
        margin-bottom: 8px;
    }
    .product-name {
        font-size: 15px;
        color: #333;
        margin-bottom: 15px;
    }
    .add-to-cart-btn {
        display: block;
        width: 100%;
        padding: 10px;
        background-color: #c72d60;
        color: #fff;
        font-weight: 600;
        border-radius: 25px;
        text-decoration: none;
        transition: background 0.3s ease;
    }
    .add-to-cart-btn:hover {
        background: linear-gradient(135deg, #a33b5b, #8b2c4b);
        color: white;
    }
    .quickview-btn {
        position: absolute;
        top: 12px;
        right: 12px;
        background-color: #c72d60;
        color: #fff;
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
        opacity: 0;
        transform: translateY(-5px);
        transition: all 0.25s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }
    .product-card:hover .quickview-btn {
        opacity: 1;
        transform: translateY(0);
    }
    .quickview-btn:hover {
        background: #a33b5b;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
        color: white;
    }
    .premium-modal {
        z-index: 99999 !important;
    }
    .premium-modal .modal-dialog {
        z-index: 100000 !important;
        position: relative;
    }
    .premium-modal .modal-content {
        border-radius: 12px;
        overflow: hidden;
        border: none;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    .premium-modal .modal-body {
        padding: 25px;
        background: #fff;
    }
    .premium-modal .product-title {
        font-size: 22px;
        font-weight: bold;
        color: #c72d60;
        margin-bottom: 10px;
    }
    .premium-modal .price {
        font-size: 18px;
        font-weight: bold;
        color: #c72d60;
        margin-bottom: 15px;
    }
    .premium-modal .description {
        font-size: 14px;
        color: #444;
        margin-bottom: 20px;
    }
    .premium-modal .cart-submit {
        background-color: #c72d60;
        color: #fff;
        padding: 10px 20px;
        border-radius: 25px;
        border: none;
        font-weight: 600;
        transition: background 0.3s ease;
    }
    .premium-modal .cart-submit:hover {
        background: #a33b5b;
        color: white;
    }
    .modal-slider img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 10px;
    }
    .premium-modal .close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: #fff;
        border: 1px solid #ddd;
        color: #333;
        font-size: 28px;
        line-height: 1;
        padding: 0 10px;
        border-radius: 4px;
        cursor: pointer;
        opacity: 0.9;
        z-index: 1050;
        transition: all 0.2s ease;
    }
    .premium-modal .close:hover {
        background: #f5f5f5;
        opacity: 1;
    }

        .navbar .user-name {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 2px;
    color: #333;
    text-decoration: none;
}
.navbar .dropdown-toggle {
    text-decoration: none !important;
}
.navbar .dropdown-toggle::after {
    display: none; /* Hide default dropdown arrow */
}
.navbar .dropdown-menu {
    min-width: 150px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}
.navbar .dropdown-item, .navbar .dropdown-item-text {
    font-size: 14px;
    color: #333;
}
.navbar .dropdown-item:hover {
    background-color: #f8f8f8;
    color: #c72d60;
}



.search-dropdown {
  position: absolute;
  top: 100px; /* below navbar */
  right: 10px;
  width: 280px;
  z-index: 2000;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 8px;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .search-dropdown {
    width: 90vw;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: 100px;
  }
}

#searchResults li {
  cursor: pointer;
}
#searchResults li:hover {
  background-color: #f8f9fa;
}



.why-choose-us {
  background: linear-gradient(135deg, #fff5f7, #fdfdfd);
}

.why-choose-us .section-heading h2 {
  font-size: 2rem;
  color: #222;
}

.why-choose-us .highlight {
  color: #c72d60; /* your theme highlight color */
}

.choose-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: #ffe6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #c72d60;
}

@media (max-width: 768px) {
  .why-choose-us .section-heading h2 {
    font-size: 1.6rem;
  }
  .choose-card {
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {
  .promo-section {
    display: none !important;
  }
}
